/* ===== UMRAH VISA ONLINE - MAIN STYLESHEET ===== */
/* Professional, Premium, Islamic-themed, Clean & Modern UI/UX */

/* ===== CSS VARIABLES ===== */
:root {
  /* Islamic-Premium Color System */
  --primary-green: #0d7377;     /* Deep Islamic Teal - Faith & Trust */
  --primary-gold: #d4af37;      /* Traditional Gold - Luxury & Blessing */
  --secondary-green: #14a085;   /* Vibrant Teal - Harmony */
  --accent-teal: #329d9c;
  --dark-navy: #1a2332;         /* Dark Navy - Professional Depth */
  --premium-cream: #f3efe6;     /* Premium Cream - Elegance */
  --soft-cream: #faf8f5;        /* Soft Cream - Light Base */
  --warm-white: #ffffff;        /* Warm White - Clean Base */
  --light-gray: #f8f9fa;        /* Light Gray - Borders */
  --medium-gray: #6c757d;       /* Medium Gray - Text Secondary */
  --dark-gray: #343a40;
  --success-green: #28a745;
  --warning-orange: #fd7e14;
  --danger-red: #dc3545;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Amiri', 'Times New Roman', serif;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 115, 119, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 115, 119, 0.12);
  --shadow-lg: 0 8px 40px rgba(13, 115, 119, 0.16);
  --shadow-xl: 0 16px 60px rgba(13, 115, 119, 0.20);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--soft-cream);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-green);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: var(--primary-gold);
  font-weight: 700;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== MESSAGE STRIPS ===== */
.message-strip {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--warm-white);
  padding: 8px 0;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.message-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.message-content {
  animation: scroll-text 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-text {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.umrah-visa-strip {
  background: var(--primary-gold);
  padding: 12px 0;
  text-align: center;
}

.umrah-visa-btn {
  background: var(--dark-navy);
  color: var(--warm-white);
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}

.umrah-visa-btn:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
.header {
  background: #fff8d5;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.certification-logos {
  display: flex;
  gap: 10px;
}

.cert-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.cert-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-navy);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-green);
  background: rgba(13, 115, 119, 0.05);
}

.nav-link:hover::after {
  width: 80%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-navy);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff8d5;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 20px;
  color: var(--dark-navy);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--light-gray);
  color: var(--primary-green);
  padding-left: 30px;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--warm-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--warm-white);
}

.btn-secondary {
  background: var(--primary-gold);
  color: var(--dark-navy);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--dark-navy);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--warm-white);
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.product-section, .why-choose, .reviews-section, .faq-section, .call-to-action {
  padding: var(--section-padding);
}

.why-choose, .faq-section {
  background: var(--premium-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-top: 1rem;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--warm-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-price-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gold);
  color: var(--dark-navy);
  padding: 10px 15px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.price {
  font-size: 1.25rem;
  display: block;
}

.price-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.most-popular {
  background: var(--success-green);
  color: var(--warm-white);
}

.product-badge.top-rated {
  background: var(--primary-gold);
  color: var(--dark-navy);
}

.product-badge.recommended {
  background: var(--primary-green);
  color: var(--warm-white);
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

.product-content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.product-btn.primary {
  background: var(--primary-green);
  color: var(--warm-white);
}

.product-btn.primary:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

.product-btn.secondary {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.product-btn.secondary:hover {
  background: var(--primary-green);
  color: var(--warm-white);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--warm-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(13, 115, 119, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

/* ===== REVIEWS SECTION ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary-gold);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.review-info h4 {
  margin-bottom: 0.25rem;
  color: var(--dark-navy);
}

.review-date {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.review-stars {
  margin-bottom: 1rem;
}

.star {
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-right: 2px;
}

.review-text {
  line-height: 1.6;
  font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--warm-white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(13, 115, 119, 0.05);
}

.faq-question h3 {
  margin: 0;
  color: var(--dark-navy);
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 200px;
}

/* ===== CALL TO ACTION ===== */
.call-to-action {
  position: relative;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-green) 100%);
  color: var(--warm-white);
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.875rem;
  opacity: 0.9;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-navy);
  color: var(--warm-white);
  position: relative;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-wave .shape-fill {
  fill: var(--warm-white);
}

.footer-main {
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .footer-logo {
  margin-bottom: 1.5rem;
}

.footer-about .logo-img {
  height: 60px;
  width: auto;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-title {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 0.5rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #000000;
  font-weight: 500;
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.newsletter-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--warm-white);
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  padding: 0.75rem 1rem;
  background: var(--primary-gold);
  color: var(--dark-navy);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #b8941f;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-middle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.youtube:hover { background: #ff0000; }

.cert-logos, .payment-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cert-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.cert-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.payment-logo {
  transition: var(--transition);
}

.payment-logo:hover {
  transform: scale(1.1);
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
  background: var(--premium-cream);
  padding: 4rem 0;
}

.seo-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.seo-content h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.seo-content ul {
  list-style: none;
  padding: 0;
}

.seo-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(13, 115, 119, 0.1);
}

.seo-content li:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-middle-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-stats {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .product-content {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .message-strip,
  .umrah-visa-strip,
  .mobile-menu-toggle {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-img,
  .hero-overlay {
    display: none;
  }
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-green);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== ISLAMIC DECORATIVE ELEMENTS ===== */
.islamic-pattern {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M20 0L30 10L20 20L10 10Z" fill="rgba(212,175,55,0.1)"/></svg>');
  background-size: 40px 40px;
}

.crescent-moon::before {
  content: '🌙';
  margin-right: 0.5rem;
}

.kaaba::before {
  content: '🕋';
  margin-right: 0.5rem;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-img,
.product-image img {
  will-change: transform;
}

.product-card,
.feature-card,
.review-card {
  will-change: transform, box-shadow;
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --warm-white: #1a1a1a;
    --light-gray: #2d2d2d;
    --dark-gray: #e0e0e0;
    --medium-gray: #b0b0b0;
  }
}