/* ============================================
   ANNURYA — Premium CSS
   Aesthetic: Refined botanical luxury
   Font: Cormorant Garamond + DM Sans
   Colors: Deep forest green + warm ivory + gold
============================================ */

:root {
  --forest: #1a2e1a;
  --forest-mid: #2d4a2d;
  --sage: #5a7a5a;
  --sage-light: #8fa88f;
  --ivory: #f8f4ed;
  --ivory-warm: #f2ebe0;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --charcoal: #1c1c1c;
  --muted: #6b6b6b;
  --white: #ffffff;
  --border: rgba(26, 46, 26, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== RESET & BASE ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ======== TYPOGRAPHY ======== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--forest-mid); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--forest);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

/* ======== BUTTONS ======== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--ivory);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid var(--forest);
}

.btn-primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 26, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(26, 46, 26, 0.06);
}

.btn-large {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* ======== HEADER / NAV ======== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--forest); }

.nav-cta {
  background: var(--forest) !important;
  color: var(--ivory) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--forest-mid) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,46,26,0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======== HERO ======== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  position: relative;
}

.hero-bg-pattern {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(26, 46, 26, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 46, 26, 0.06);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-trust > span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-flags span {
  font-size: 0.82rem;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--charcoal);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatIn 0.8s ease-out both;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.25s; margin-left: 2rem; }
.card-3 { animation-delay: 0.4s; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.card-stat {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.card-label { font-size: 0.85rem; color: var(--muted); }

/* ======== WHO WE SERVE ======== */
.who-we-serve {
  background: var(--ivory-warm);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.serve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.serve-card:hover::before { transform: scaleX(1); }

.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.serve-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.serve-card h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.serve-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.serve-keyword {
  font-size: 0.7rem;
  color: var(--sage);
  background: rgba(90, 122, 90, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ======== SERVICES ======== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  background: var(--white);
  padding: 48px;
  transition: background var(--transition);
  position: relative;
}

.service-item:hover {
  background: var(--ivory);
}

.service-item.service-featured {
  background: var(--forest);
  color: var(--ivory);
}

.service-item.service-featured:hover {
  background: var(--forest-mid);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: inherit;
}

.service-item.service-featured h3 { color: var(--ivory); }
.service-item:not(.service-featured) h3 { color: var(--forest); }

.service-item p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.service-item.service-featured p { color: rgba(248, 244, 237, 0.75); }

.service-list {
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.service-item.service-featured .service-list li {
  color: rgba(248, 244, 237, 0.75);
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* ======== MARKETS ======== */
.markets {
  background: var(--ivory-warm);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.market-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.market-flag { font-size: 2.2rem; }

.market-city {
  font-size: 1.2rem;
  color: var(--forest);
}

.market-country {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.market-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.market-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kw-tag {
  font-size: 0.72rem;
  background: rgba(26, 46, 26, 0.06);
  border: 1px solid rgba(26, 46, 26, 0.1);
  color: var(--forest-mid);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ======== SEO SECTION ======== */
.seo-section {
  background: var(--white);
}

.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.seo-left .section-title { margin-bottom: 1rem; }
.seo-left > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.seo-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

.seo-checklist {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.seo-checklist h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 46, 26, 0.06);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.checklist-item:last-child { border-bottom: none; }

.check {
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ======== PROCESS ======== */
.process-section {
  background: var(--forest);
  color: var(--ivory);
}

.process-section .section-label { color: var(--gold); }
.process-section .section-title { color: var(--ivory); }
.process-section .section-title em { color: var(--gold-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}

.process-step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-connector {
  position: relative;
  height: 1px;
  margin-bottom: 1.5rem;
}

.connector-line {
  position: absolute;
  top: 0;
  left: 0;
  right: -3rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.25);
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.65);
  line-height: 1.7;
}

/* ======== FAQ ======== */
.faq-section {
  background: var(--ivory-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(26, 46, 26, 0.2);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ======== CTA SECTION ======== */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 100px 5%;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(248, 244, 237, 0.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  font-weight: 600;
}

.cta-section .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.4);
}

.cta-markets {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(248, 244, 237, 0.45);
  letter-spacing: 0.05em;
}

/* ======== FOOTER ======== */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5% 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .logo-text { color: var(--ivory); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(248, 244, 237, 0.5);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(248, 244, 237, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--forest);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(248, 244, 237, 0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(248, 244, 237, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(248, 244, 237, 0.7); }

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }

  .hero-visual {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-2 { margin-left: 0; }

  .hero-badge { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { align-items: center; }

  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .seo-split { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-container { padding: 70px 5%; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open a { font-size: 1.2rem; }

  .hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-visual { display: none; }
  .seo-split { grid-template-columns: 1fr; }
  .connector-line { display: none; }
}
