/* ============================================
   G2Market Design System v2
   Premium NRI Shopping & Parcel Forwarding
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; overflow-x: hidden; line-height: 1.6; }
::selection { background: #F47F20; color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF9F3; }
::-webkit-scrollbar-thumb { background: #F47F20; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #E06B10; }

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* === HEADER === */
#site-header {
  background: rgba(255, 253, 251, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 40, 66, 0.06);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06); }

.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}

.logo-area { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo-img {
  height: 52px; width: auto; object-fit: contain;
  transition: transform 0.2s ease;
}
.logo-img:hover { transform: scale(1.04); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #1A2842; letter-spacing: -0.01em; }
.logo-text span { color: #F47F20; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.875rem; font-size: 0.9rem; font-weight: 500; color: #273C63;
  text-decoration: none; border-radius: 8px; transition: all 0.2s ease; position: relative;
}
.nav-link:hover { color: #F47F20; background: rgba(244, 127, 32, 0.06); }
.nav-link.active { color: #F47F20; font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: #F47F20; border-radius: 1px;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.social-icons { display: flex; align-items: center; gap: 0.25rem; }
.social-icon {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: #6783B7; transition: all 0.2s ease; text-decoration: none;
}
.social-icon:hover { color: #F47F20; background: rgba(244, 127, 32, 0.08); }
.social-icon svg { width: 18px; height: 18px; }

.social-more-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: #6783B7; cursor: pointer; border: none; background: none;
  transition: all 0.2s ease; position: relative;
}
.social-more-btn:hover { color: #F47F20; background: rgba(244, 127, 32, 0.08); }

.social-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 0.5rem;
  background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 0.5rem; display: none; min-width: 160px; z-index: 100;
}
.social-dropdown.open { display: flex; flex-direction: column; gap: 0.125rem; }
.social-dropdown a {
  display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem 0.75rem;
  border-radius: 8px; color: #273C63; text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: all 0.15s ease;
}
.social-dropdown a:hover { background: rgba(244, 127, 32, 0.06); color: #F47F20; }
.social-dropdown a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: none; background: none; cursor: pointer; border-radius: 10px; transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(244, 127, 32, 0.06); }
.hamburger { width: 22px; height: 16px; position: relative; }
.hamburger span {
  display: block; position: absolute; height: 2px; width: 100%; background: #1A2842;
  border-radius: 1px; transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.mobile-menu-btn.open .hamburger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.mobile-menu-btn.open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open .hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(255, 253, 251, 0.98); backdrop-filter: blur(20px);
  z-index: 45; padding: 2rem 1.5rem; overflow-y: auto;
}
.mobile-nav.open { display: block; animation: slideDown 0.3s ease; }
.mobile-nav .nav-link {
  display: block; padding: 0.875rem 0; font-size: 1.1rem;
  border-bottom: 1px solid rgba(26, 40, 66, 0.06);
}

@media (max-width: 1024px) {
  .main-nav, .header-actions .social-icons, .header-actions .btn { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 600; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #F47F20 0%, #E06B10 100%);
  color: white; box-shadow: 0 4px 14px rgba(244, 127, 32, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244, 127, 32, 0.45); }
.btn-secondary {
  background: white; color: #1A2842; border: 1.5px solid rgba(26, 40, 66, 0.15);
}
.btn-secondary:hover { border-color: #F47F20; color: #F47F20; background: rgba(244, 127, 32, 0.04); }
.btn-outline-white {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.825rem; }
.btn svg { width: 16px; height: 16px; }

/* === HERO === */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 76px;
  background: linear-gradient(165deg, #FFF9F3 0%, #FFF3E6 35%, #FFEDD5 100%);
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(244, 127, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%; width: 40%; height: 50%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1320px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: white; border-radius: 100px; font-size: 0.825rem; font-weight: 600;
  color: #F47F20; box-shadow: 0 2px 12px rgba(244, 127, 32, 0.12); margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 24px; height: 24px; background: linear-gradient(135deg, #F47F20, #E06B10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #0D1421; margin-bottom: 1.25rem; line-height: 1.1; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #F47F20, #E06B10);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.15rem; color: #4164A5; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.trust-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 400px; }
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem;
  background: white; border-radius: 10px; font-size: 0.8rem; font-weight: 500;
  color: #273C63; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-badge-icon {
  width: 32px; height: 32px; background: rgba(244, 127, 32, 0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #F47F20;
}
.trust-badge-icon svg { width: 18px; height: 18px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: white; border-radius: 24px; padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); position: relative; width: 100%; max-width: 440px;
}
.hero-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-card-avatar {
  width: 44px; height: 44px; background: linear-gradient(135deg, #F47F20, #E06B10);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.hero-card-title { font-weight: 600; font-size: 0.95rem; color: #0D1421; }
.hero-card-sub { font-size: 0.8rem; color: #6783B7; }

.hero-route {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: #FFF9F3; border-radius: 16px; margin-bottom: 1.25rem;
}
.hero-route-point { text-align: center; flex: 1; }
.hero-route-flag { font-size: 2rem; }
.hero-route-label { font-size: 0.75rem; color: #6783B7; font-weight: 500; }
.hero-route-name { font-size: 0.9rem; font-weight: 600; color: #1A2842; }
.hero-route-arrow { color: #F47F20; font-size: 1.5rem; animation: pulseRight 1.5s ease-in-out infinite; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero-stat { text-align: center; padding: 0.75rem; background: #F0F3F8; border-radius: 12px; }
.hero-stat-value { font-size: 1.25rem; font-weight: 700; color: #F47F20; font-family: 'Playfair Display', serif; }
.hero-stat-label { font-size: 0.7rem; color: #6783B7; margin-top: 0.125rem; }

.hero-float {
  position: absolute; background: white; border-radius: 14px; padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); display: flex; align-items: center;
  gap: 0.5rem; font-size: 0.8rem; font-weight: 600; animation: float 3s ease-in-out infinite; z-index: 2;
}
.hero-float-1 { top: 10%; right: -20px; }
.hero-float-2 { bottom: 15%; left: -30px; animation-delay: 1s; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .trust-badges { margin: 0 auto; }
  .hero-visual { display: none; }
}

/* === SECTIONS === */
.section { padding: 5rem 1.5rem; }
.section-container { max-width: 1320px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: #F47F20; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: #F47F20; border-radius: 1px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; color: #0D1421; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: #4164A5; max-width: 600px; line-height: 1.7; }

/* === BENEFITS === */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.benefit-card {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(26, 40, 66, 0.06); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #F47F20, #E06B10); opacity: 0; transition: opacity 0.3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, rgba(244, 127, 32, 0.1), rgba(244, 127, 32, 0.05));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #F47F20; margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.625rem; color: #0D1421; }
.benefit-card p { font-size: 0.9rem; color: #4164A5; line-height: 1.65; }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }

/* === STORES === */
.stores-section { background: white; }
.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.store-card {
  background: #FFF9F3; border-radius: 16px; padding: 1.25rem 1rem; text-align: center;
  border: 1px solid rgba(244, 127, 32, 0.08); transition: all 0.25s ease;
  cursor: pointer; text-decoration: none; color: inherit;
}
.store-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(244, 127, 32, 0.12); border-color: rgba(244, 127, 32, 0.2); }
.store-card-img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; margin: 0 auto 0.75rem; display: block; }
.store-card h4 { font-size: 0.9rem; font-weight: 600; color: #1A2842; margin-bottom: 0.25rem; }
.store-card p { font-size: 0.75rem; color: #6783B7; }

/* === HOW IT WORKS === */
.how-it-works { background: #FFF9F3; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, #F47F20, #E06B10, #F47F20, #E06B10); opacity: 0.2;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px; background: linear-gradient(135deg, #F47F20, #E06B10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 1.25rem; box-shadow: 0 6px 20px rgba(244, 127, 32, 0.3); position: relative; z-index: 1;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #0D1421; }
.step-card p { font-size: 0.85rem; color: #4164A5; line-height: 1.6; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } .steps-grid::before { display: none; } }

/* === CALCULATOR === */
.calculator-section {
  background: linear-gradient(165deg, #0D1421 0%, #1A2842 100%);
  color: white; position: relative; overflow: hidden;
}
.calculator-section::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(244, 127, 32, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.calc-info h2 { color: white; }
.calc-info .section-subtitle { color: rgba(255,255,255,0.7); }
.calc-features { list-style: none; padding: 0; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.calc-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.calc-features li .check-icon {
  width: 24px; height: 24px; background: rgba(16, 185, 129, 0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #10B981; flex-shrink: 0;
}
.calc-features li .check-icon svg { width: 14px; height: 14px; }

.calc-form {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 2rem;
  position: relative; z-index: 1;
}
.calc-form h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: white; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.825rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 0.375rem; }
.form-input, .form-select {
  width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; transition: all 0.2s ease; outline: none;
}
.form-input:focus, .form-select:focus {
  border-color: #F47F20; background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(244, 127, 32, 0.15);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-select option { background: #1A2842; color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.calc-result {
  margin-top: 1.5rem; padding: 1.25rem; background: rgba(244, 127, 32, 0.12);
  border: 1px solid rgba(244, 127, 32, 0.25); border-radius: 14px; display: none;
}
.calc-result.visible { display: block; animation: fadeIn 0.3s ease; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 0; font-size: 0.9rem; }
.calc-result-row.total { border-top: 1px solid rgba(244, 127, 32, 0.3); margin-top: 0.5rem; padding-top: 0.75rem; font-weight: 700; font-size: 1.05rem; }
.calc-result-label { color: rgba(255,255,255,0.7); }
.calc-result-value { color: white; font-weight: 600; }
.calc-result-value.highlight { color: #F47F20; font-size: 1.25rem; }

@media (max-width: 768px) { .calc-grid { grid-template-columns: 1fr; } }

/* === COUNTRY CARDS === */
.country-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.country-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(26, 40, 66, 0.06); transition: all 0.3s ease;
  text-decoration: none; color: inherit;
}
.country-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.country-card-banner { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.country-card-body { padding: 1.5rem; }
.country-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #0D1421; }
.country-card-body p { font-size: 0.85rem; color: #4164A5; line-height: 1.6; margin-bottom: 1rem; }
.country-card-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: #6783B7; }
.country-card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.country-card-meta svg { width: 14px; height: 14px; }
@media (max-width: 768px) { .country-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .country-cards { grid-template-columns: 1fr; } }

/* === TESTIMONIALS === */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #FFF9F3; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(244, 127, 32, 0.08); position: relative;
}
.testimonial-stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; color: #F47F20; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote { font-size: 0.925rem; color: #273C63; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; background: linear-gradient(135deg, #F47F20, #E06B10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: #0D1421; }
.testimonial-location { font-size: 0.775rem; color: #6783B7; }
.review-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, #F47F20 0%, #E06B10 50%, #B8520E 100%);
  color: white; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2, .cta-section p, .cta-section .btn { position: relative; z-index: 1; }
.cta-btn-white {
  background: white; color: #E06B10; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item {
  border: 1px solid rgba(26, 40, 66, 0.08); border-radius: 14px;
  margin-bottom: 0.75rem; background: white; overflow: hidden; transition: all 0.2s ease;
}
.faq-item:hover { border-color: rgba(244, 127, 32, 0.2); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center;
  justify-content: space-between; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: #0D1421; text-align: left; gap: 1rem;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(244, 127, 32, 0.1);
  display: flex; align-items: center; justify-content: center; color: #F47F20;
  flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: #4164A5; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* === PAGE HERO === */
.page-hero {
  padding: 8rem 1.5rem 3rem; background: linear-gradient(165deg, #FFF9F3 0%, #FFEDD5 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #0D1421; margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; color: #4164A5; max-width: 600px; margin: 0 auto; }
.breadcrumbs {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem;
  color: #6783B7; margin-bottom: 1rem; justify-content: center;
}
.breadcrumbs a { color: #F47F20; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* === SHOP PAGE === */
.shopping-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3rem 0; }
.shopping-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.shopping-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.shopping-feature-icon {
  width: 40px; height: 40px; background: rgba(244, 127, 32, 0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #F47F20; flex-shrink: 0;
}
.shopping-feature-icon svg { width: 20px; height: 20px; }
.shopping-feature h4 { font-size: 0.9rem; font-weight: 600; color: #0D1421; margin-bottom: 0.125rem; font-family: 'DM Sans', sans-serif; }
.shopping-feature p { font-size: 0.8rem; color: #6783B7; }
@media (max-width: 768px) { .shopping-hero { grid-template-columns: 1fr; } .shopping-features { grid-template-columns: 1fr; } }

/* === SHOPPER BENEFITS === */
.shopper-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.shopper-benefit {
  background: white; border-radius: 16px; padding: 1.75rem;
  border: 1px solid rgba(26, 40, 66, 0.06); display: flex; gap: 1rem; align-items: flex-start;
}
.shopper-benefit-icon {
  width: 48px; height: 48px; background: rgba(244, 127, 32, 0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #F47F20; flex-shrink: 0;
}
.shopper-benefit-icon svg { width: 24px; height: 24px; }
.shopper-benefit h4 { font-size: 1rem; font-weight: 600; color: #0D1421; margin-bottom: 0.375rem; }
.shopper-benefit p { font-size: 0.85rem; color: #4164A5; line-height: 1.6; }
@media (max-width: 768px) { .shopper-benefits { grid-template-columns: 1fr; } }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(26, 40, 66, 0.06); transition: all 0.3s ease;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-card-image {
  height: 200px; background: linear-gradient(135deg, #FFEDD5, #FFD9A8);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-category {
  display: inline-block; padding: 0.2rem 0.625rem; background: rgba(244, 127, 32, 0.1);
  color: #F47F20; border-radius: 100px; font-size: 0.725rem; font-weight: 600; margin-bottom: 0.75rem;
}
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #0D1421; line-height: 1.3; }
.blog-card-body p { font-size: 0.85rem; color: #4164A5; line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; font-size: 0.775rem; color: #8DA2C9; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* === AUTH === */
.auth-container {
  min-height: calc(100vh - 76px); display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 3rem; background: linear-gradient(165deg, #FFF9F3, #FFEDD5);
}
.auth-card {
  background: white; border-radius: 24px; padding: 2.5rem; max-width: 440px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.auth-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #0D1421; }
.auth-card .subtitle { color: #4164A5; font-size: 0.9rem; margin-bottom: 2rem; }
.auth-form .form-group { margin-bottom: 1rem; }
.auth-form .form-label { color: #273C63; font-weight: 500; }
.auth-form .form-input {
  background: #F0F3F8; border: 1.5px solid transparent; color: #1A2842;
}
.auth-form .form-input:focus { border-color: #F47F20; background: white; }
.auth-form .form-input::placeholder { color: #8DA2C9; }
.auth-link { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: #4164A5; }
.auth-link a { color: #F47F20; font-weight: 600; text-decoration: none; }
.auth-link a:hover { text-decoration: underline; }

/* === DASHBOARD === */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 76px); margin-top: 76px; }
.dashboard-sidebar {
  background: white; border-right: 1px solid rgba(26, 40, 66, 0.06); padding: 2rem 0;
}
.dash-user { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(26, 40, 66, 0.06); margin-bottom: 1rem; }
.dash-user-name { font-weight: 600; font-size: 1rem; color: #0D1421; }
.dash-user-email { font-size: 0.8rem; color: #6783B7; }
.dash-user-badge {
  display: inline-block; padding: 0.2rem 0.625rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; margin-top: 0.5rem;
}
.dash-user-badge.normal { background: #D9E0ED; color: #273C63; }
.dash-user-badge.premium { background: linear-gradient(135deg, #F47F20, #E06B10); color: white; }

.dash-nav { list-style: none; padding: 0; }
.dash-nav li a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 1.5rem;
  color: #4164A5; text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s ease; border-left: 3px solid transparent;
}
.dash-nav li a:hover, .dash-nav li a.active {
  color: #F47F20; background: rgba(244, 127, 32, 0.04); border-left-color: #F47F20;
}
.dash-nav li a svg { width: 18px; height: 18px; }

.dashboard-content { padding: 2rem; background: #F8FAFC; overflow-y: auto; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.dash-stat-card {
  background: white; border-radius: 16px; padding: 1.5rem;
  border: 1px solid rgba(26, 40, 66, 0.06);
}
.dash-stat-label { font-size: 0.8rem; color: #6783B7; margin-bottom: 0.375rem; }
.dash-stat-value { font-size: 1.75rem; font-weight: 700; color: #0D1421; font-family: 'Playfair Display', serif; }
.dash-stat-change { font-size: 0.75rem; color: #10B981; margin-top: 0.25rem; }
@media (max-width: 768px) { .dashboard-layout { grid-template-columns: 1fr; } .dashboard-sidebar { display: none; } .dash-stats { grid-template-columns: 1fr 1fr; } }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem;
  background: white; border-radius: 14px; border: 1px solid rgba(26, 40, 66, 0.06); margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(244, 127, 32, 0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #F47F20; flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-card h4 { font-size: 0.9rem; font-weight: 600; color: #0D1421; margin-bottom: 0.25rem; font-family: 'DM Sans', sans-serif; }
.contact-info-card p { font-size: 0.85rem; color: #4164A5; }
.contact-info-card a { color: #F47F20; text-decoration: none; }
.contact-form {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(26, 40, 66, 0.06);
}
.contact-form .form-input, .contact-form .form-select {
  background: #F0F3F8; border: 1.5px solid transparent; color: #1A2842;
}
.contact-form .form-input:focus, .contact-form .form-select:focus { border-color: #F47F20; background: white; }
.contact-form .form-label { color: #273C63; font-weight: 500; }
.contact-form .form-select option { background: white; }
.contact-form textarea.form-input { min-height: 120px; resize: vertical; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
#site-footer { padding-top: 4rem; }
.footer-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #F47F20; }

.footer-newsletter p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; padding: 0.625rem 1rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: #F47F20; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  transition: all 0.2s ease; text-decoration: none;
}
.footer-social a:hover { background: #F47F20; color: white; }
.footer-social a svg { width: 18px; height: 18px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; text-align: center; }
.footer-bottom p { max-width: 1320px; margin: 0 auto; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* === WHATSAPP FLOAT === */
#whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 50; transition: all 0.3s ease; text-decoration: none;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
#whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-tooltip {
  position: absolute; right: 72px; background: white; color: #1A2842;
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 500;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* === ANIMATIONS === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseRight { 0%, 100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(5px); opacity: 0.7; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === STATS BAR === */
.stats-bar {
  background: white; border-bottom: 1px solid rgba(26,40,66,0.06);
  padding: 1.5rem;
}
.stats-bar-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.stat-item-value { font-size: 1.75rem; font-weight: 700; color: #F47F20; font-family: 'Playfair Display', serif; }
.stat-item-label { font-size: 0.8rem; color: #6783B7; margin-top: 0.25rem; }
@media (max-width: 768px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* === CATEGORY IMAGE CARDS === */
.category-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.category-card {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; color: inherit;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 1.5rem 1rem 1rem; color: white;
}
.category-card-overlay h4 { font-size: 0.95rem; font-weight: 600; }
.category-card-overlay p { font-size: 0.75rem; opacity: 0.8; }
@media (max-width: 768px) { .category-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-showcase { grid-template-columns: 1fr 1fr; } }
