@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

.agt2-wrap *, .agt2-wrap *::before, .agt2-wrap *::after { box-sizing: border-box; }

.agt2-wrap {
  /* REFINED PREMIUM PALETTE */
  --f:       #1B3A2E;      /* Deep Forest (Dark Backgrounds) */
  --fm:      #244535;
  --fl:      #2D5A42;
  --sage:    #4A9464;
  --sagel:   #7AB893;
  --sagep:   #D4EAD9;
  --gold:    #C9A227;      /* Luxurious Warm Gold */
  --goldl:   #E8CC82;
  --goldp:   #F5ECD4;
  --cream:   #F9F7F2;      /* Cleaner, lighter warm cream (Main Body) */
  --white:   #FFFFFF;      /* Pure white (Cards) */
  --ink:     #1A2E22;      /* Deep forest charcoal (Primary Text - Perfect Contrast) */
  --inkl:    #3D5445;      /* Softer dark green (Secondary Text) */
  --muted:   #7A9482;
  --r:       4px;          /* Slightly softer corners */
  
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);        /* DEFAULT TEXT IS NOW DARK */
  background: var(--cream); /* DEFAULT BG IS NOW CLEAN CREAM */
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.agt2-wrap a { text-decoration: none; color: inherit; }
.agt2-wrap img { display: block; max-width: 100%; }
.agt2-wrap ul { list-style: none; padding: 0; margin: 0; }

.agt2-c  { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.agt2-cn { max-width: 720px;  margin: 0 auto; padding: 0 2rem; }

.agt2-eyebrow {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem;
}
.agt2-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.agt2-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: var(--ink); /* Explicitly dark */
  letter-spacing: -0.02em;
}
.agt2-h2 em { font-style: italic; color: var(--sage); }
.agt2-h2-white { color: var(--white); }
.agt2-h2-white em { color: var(--sagel); }

.agt2-rule { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--goldl)); margin: 1.4rem 0; }
.agt2-rule-c { margin: 1.4rem auto; }

.agt2-body { font-size: 1.05rem; color: var(--inkl); line-height: 1.85; font-weight: 300; }
.agt2-body-white { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.85; font-weight: 300; }

/* Buttons */
.agt2-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; border-radius: var(--r); border: none;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; position: relative; overflow: hidden;
}
.agt2-btn-gold { background: var(--gold); color: var(--f); box-shadow: 0 4px 12px rgba(201,162,39,0.2); }
.agt2-btn-gold:hover { background: var(--goldl); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); color: var(--f); }
.agt2-btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.45); }
.agt2-btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); color: white; border-color: rgba(255,255,255,0.7); }
.agt2-btn-sage { background: var(--sage); color: white; box-shadow: 0 4px 12px rgba(74,148,100,0.2); }
.agt2-btn-sage:hover { background: var(--fl); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45,90,66,0.35); color: white; }

/* Footer */
.agt2-footer { background: var(--f); padding: 2.5rem 0; border-top: 1px solid rgba(201,162,39,0.14); }
.agt2-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.agt2-fb { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: white; }
.agt2-fb small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-top: 4px; }
.agt2-fc { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: center; }
.agt2-fsocial { display: flex; gap: 0.55rem; }
.agt2-fsb { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: transform 0.18s, box-shadow 0.18s; }
.agt2-fsb:hover { transform: translateY(-3px); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.agt2-fsb svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.agt2-fsb.fb { background: #1877F2; }
.agt2-fsb.ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.agt2-fsb.xb { background: #000; border: 1px solid rgba(255,255,255,0.12); }
.agt2-fsb.yt { background: #FF0000; }

/* Premium Micro-interactions */
.agt2-wrap a:not(.agt2-btn):not(.agt2-fsb) { position: relative; transition: color 0.3s ease; }
.agt2-wrap a:not(.agt2-btn):not(.agt2-fsb)::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease;
}
.agt2-wrap a:not(.agt2-btn):not(.agt2-fsb):hover::after { width: 100%; }

.agt2-exp-grid > div, .agt2-ecard { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.agt2-exp-grid > div:hover, .agt2-ecard:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 32px rgba(27,58,46,0.12); }
.agt2-exp-grid img, .agt2-ecard img { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.agt2-exp-grid > div:hover img, .agt2-ecard:hover img { transform: scale(1.05); }

.agt2-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.agt2-btn:hover::before { left: 100%; }

.agt2-intro, .agt2-why, .agt2-exp, .agt2-tailor, .agt2-cta { padding: 6rem 0; }
.hero-title, .agt2-hero-title { text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
html { scroll-behavior: smooth; }

@media (max-width: 860px) {
  .agt2-intro-grid, .agt2-why-grid, .agt2-tailor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .agt2-img-box { max-width: 480px; }
  .agt2-stat { right: 0; }
  .agt2-exp-grid { grid-template-columns: 1fr; }
  
}
@media (max-width: 560px) {
  .agt2-hero-title { font-size: 2.4rem; }
  .agt2-c, .agt2-cn { padding: 0 1.2rem; }
  .agt2-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .agt2-intro, .agt2-why, .agt2-exp, .agt2-tailor, .agt2-cta { padding: 4rem 0; }
}



  .agt2-footer-logo { width: 50px; height: 50px; }
}



  .agt2-footer-logo { width: 65px !important; height: 65px !important; }
  
}



}


/* ════════════════════════════════
   PROFESSIONAL HEADER & LOGO
════════════════════════════════ */


.agt2-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}



.agt2-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.agt2-nav-links a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none; /* REMOVED UPPERCASE */
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  text-decoration: none;
}
.agt2-nav-links a:hover { color: var(--gold, #C9A227); }
.agt2-nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold, #C9A227) !important;
  color: var(--f, #1B3A2E) !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  
  .agt2-nav-links { gap: 1.5rem; }
}
@media (max-width: 768px) {
  .agt2-nav { padding: 0.8rem 1.5rem; }
  
  
  .agt2-nav-links { gap: 1rem; }
  .agt2-nav-links a { font-size: 0.9rem; }
}
@media (max-width: 560px) {
  
   /* Hide text on very small screens to save space */
  .agt2-nav-links { gap: 0.8rem; }
  .agt2-nav-links a { font-size: 0.85rem; }
}


/* ════════════════════════════════
   HEADER COLOR MATCH (FORCED)
════════════════════════════════ */
.agt2-nav {
  background-color: #1B3A2E !important; /* Exact match to footer */
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}


/* ════════════════════════════════
   FINAL TRANSPARENT HEADER
════════════════════════════════ */
.agt2-nav {
  background-color: #1B3A2E !important; /* Exact match to footer */
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.agt2-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo LEFT, Nav RIGHT */
}
.agt2-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.agt2-nav-logo {
  width: 250px;
  height: 100px;
  object-fit: contain;
  /* TRUE TRANSPARENCY: No background, no padding, no shadow */
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.agt2-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.agt2-nav-links a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none; /* Sentence case */
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  text-decoration: none;
}
.agt2-nav-links a:hover { color: var(--gold, #C9A227); }
.agt2-nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold, #C9A227) !important;
  color: #1B3A2E !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .agt2-nav-logo { width: 200px; height: 80px; }
  .agt2-nav-links { gap: 1.5rem; }
}
@media (max-width: 768px) {
  .agt2-nav { padding: 0.8rem 1.5rem; }
  .agt2-nav-logo { width: 160px; height: 64px; }
  .agt2-nav-links { gap: 1rem; }
  .agt2-nav-links a { font-size: 0.9rem; }
}
@media (max-width: 560px) {
  .agt2-nav-logo { width: 130px; height: 52px; }
  .agt2-nav-links { gap: 0.8rem; }
  .agt2-nav-links a { font-size: 0.85rem; }
  .agt2-nav-cta { padding: 0.5rem 1rem !important; font-size: 0.85rem !important; }
}


/* ════════════════════════════════
   ABOUT PAGE STYLES (agt3-)
════════════════════════════════ */
.agt3-wrap *, .agt3-wrap *::before, .agt3-wrap *::after { box-sizing: border-box; }
.agt3-wrap { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; overflow-x: hidden; width: 100%; }
.agt3-wrap a { text-decoration: none; color: inherit; }
.agt3-wrap ul { list-style: none; padding: 0; margin: 0; }
.agt3-c { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.agt3-cn { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.agt3-eyebrow { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.agt3-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.agt3-eyebrow-c { justify-content: center; }
.agt3-eyebrow-c::before { display: none; }
.agt3-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.15; color: var(--ink); }
.agt3-h2 em { font-style: italic; color: var(--sage); }
.agt3-rule { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--goldl)); margin: 1.4rem 0; }
.agt3-rule-c { margin: 1.4rem auto; }
.agt3-body { font-size: 1.05rem; color: var(--ink); line-height: 1.8; font-weight: 400; }
.agt3-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.82rem 1.75rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; text-decoration: none; }
.agt3-btn-gold { background: var(--gold); color: var(--f); }
.agt3-btn-gold:hover { background: var(--goldl); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,0.3); color: var(--f); }
.agt3-btn-sage { background: var(--sage); color: white; }
.agt3-btn-sage:hover { background: var(--fl); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(45,90,66,0.3); color: white; }
.agt3-btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.agt3-btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); color: white; }
.agt3-fade { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.agt3-fade.agt3-vis { opacity: 1; transform: translateY(0); }
.agt3-fade:nth-child(2) { transition-delay: 0.1s; }
.agt3-fade:nth-child(3) { transition-delay: 0.2s; }
.agt3-fade:nth-child(4) { transition-delay: 0.3s; }
.agt3-fade:nth-child(5) { transition-delay: 0.4s; }

/* Hero */
.agt3-hero { min-height: 52vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.agt3-hero-body { position: relative; z-index: 2; padding: 5rem 2rem 4.5rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.agt3-hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; animation: agt3FadeDown 0.8s ease both; }
.agt3-hero-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.agt3-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; color: white; line-height: 1.1; max-width: 700px; animation: agt3FadeUp 0.9s ease 0.15s both; }
.agt3-hero-title em { font-style: italic; color: var(--goldl); display: block; }
.agt3-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300; max-width: 540px; margin: 1.2rem 0 2rem; line-height: 1.78; animation: agt3FadeUp 0.9s ease 0.3s both; }
.agt3-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: agt3FadeUp 0.9s ease 0.42s both; }
.agt3-breadcrumb { background: rgba(10,25,16,0.72); backdrop-filter: blur(8px); border-top: 1px solid rgba(201,168,76,0.15); padding: 0.7rem 2rem; }
.agt3-breadcrumb-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.agt3-breadcrumb a { color: var(--gold); transition: color 0.2s; }
.agt3-breadcrumb a:hover { color: var(--goldl); }
.agt3-breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* Intro */
.agt3-intro { background: var(--white); padding: 5.5rem 0; }
.agt3-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.agt3-intro-body { margin-bottom: 1.1rem; }
.agt3-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--sage); border-left: 3px solid var(--gold); padding-left: 1.1rem; margin: 1.8rem 0; line-height: 1.55; }
.agt3-img-box { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, #173322 0%, #244535 100%); box-shadow: 0 20px 60px rgba(0,0,0,0.25); display: flex; align-items: flex-end; justify-content: center; }
.agt3-img-label { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.58); text-align: center; z-index: 2; }
.agt3-stat-stack { position: absolute; bottom: -1rem; right: -1rem; display: flex; flex-direction: column; gap: 0.6rem; z-index: 3; }
.agt3-stat { background: var(--f); border: 1px solid rgba(201,168,76,0.22); border-radius: 3px; padding: 0.9rem 1.3rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); min-width: 130px; }
.agt3-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.agt3-stat-l { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 0.25rem; line-height: 1.4; }

/* What */
.agt3-what { background: var(--cream); padding: 5.5rem 0; }
.agt3-what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.agt3-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.agt3-svc { background: var(--white); border-radius: 3px; padding: 1.2rem 1.3rem; border: 1px solid var(--sagep); display: flex; align-items: flex-start; gap: 0.7rem; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.agt3-svc:hover { background: var(--sagep); border-color: var(--sage); transform: translateY(-2px); }
.agt3-svc-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.agt3-svc-text { font-size: 0.9rem; color: var(--ink); font-weight: 500; line-height: 1.6; }
.agt3-mv-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.agt3-mv-card { background: var(--white); border-radius: 3px; border: 1px solid var(--sagep); padding: 1.6rem 1.8rem; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(26,51,38,0.06); transition: box-shadow 0.2s, transform 0.2s; }
.agt3-mv-card:hover { box-shadow: 0 8px 28px rgba(26,51,38,0.1); transform: translateY(-2px); }
.agt3-mv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--sage), var(--gold)); }
.agt3-mv-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest, #1B3A2E); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.agt3-mv-label svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }
.agt3-mv-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--ink, #1A2E22); line-height: 1.65; font-weight: 600; }

/* Values */
.agt3-values { background: var(--f); padding: 5.5rem 0; position: relative; overflow: hidden; }
.agt3-values::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 50% at 95% 50%, rgba(74,148,100,0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 55% at 5% 50%, rgba(201,168,76,0.06) 0%, transparent 60%); pointer-events: none; }
.agt3-values-hdr { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; position: relative; z-index: 1; }
.agt3-values-hdr .agt3-eyebrow { justify-content: center; }
.agt3-values-hdr .agt3-eyebrow::before { display: none; }
.agt3-values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; position: relative; z-index: 1; }
.agt3-val { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 1.8rem 1.4rem; text-align: center; transition: background 0.25s, border-color 0.25s, transform 0.22s; }
.agt3-val:hover { background: rgba(74,148,100,0.12); border-color: rgba(74,148,100,0.3); transform: translateY(-4px); }
.agt3-val-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(74,148,100,0.18); border: 1px solid rgba(74,148,100,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: background 0.25s; }
.agt3-val:hover .agt3-val-icon { background: rgba(74,148,100,0.3); }
.agt3-val-icon svg { width: 20px; height: 20px; stroke: var(--sagel); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.agt3-val-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.agt3-val-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 400; line-height: 1.6; }

/* Resp */
.agt3-resp { background: var(--paper); padding: 5.5rem 0; }
.agt3-resp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.agt3-resp-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.agt3-resp-card { background: var(--white); border-radius: 3px; border: 1px solid var(--sagep); padding: 1.4rem 1.6rem; display: flex; align-items: flex-start; gap: 1rem; box-shadow: 0 2px 10px rgba(26,51,38,0.06); transition: box-shadow 0.2s, transform 0.2s; }
.agt3-resp-card:hover { box-shadow: 0 6px 24px rgba(26,51,38,0.1); transform: translateY(-2px); }
.agt3-resp-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--sagep); border: 1px solid rgba(74,148,100,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.agt3-resp-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.agt3-resp-card-title { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.agt3-resp-card-text { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.55; }
.agt3-promise { background: var(--f); border-radius: 3px; padding: 1.4rem 1.6rem; border-left: 4px solid var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--goldl); line-height: 1.55; box-shadow: 0 4px 18px rgba(0,0,0,0.15); }

/* Why */
.agt3-why { background: var(--white); padding: 5.5rem 0; }
.agt3-why-hdr { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.agt3-why-hdr .agt3-eyebrow { justify-content: center; }
.agt3-why-hdr .agt3-eyebrow::before { display: none; }
.agt3-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.agt3-why-card { background: var(--cream); border-radius: 3px; border: 1px solid var(--sagep); padding: 2rem 1.8rem; position: relative; overflow: hidden; transition: box-shadow 0.25s, transform 0.22s, border-color 0.25s; }
.agt3-why-card:hover { box-shadow: 0 8px 28px rgba(26,51,38,0.1); transform: translateY(-4px); border-color: var(--sage); }
.agt3-why-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--sage), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.agt3-why-card:hover::after { transform: scaleX(1); }
.agt3-why-emoji { font-size: 2rem; margin-bottom: 0.9rem; display: block; }
.agt3-why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2; }
.agt3-why-text { font-size: 0.92rem; color: var(--ink); font-weight: 500; line-height: 1.65; }

/* Responsive */
@media (max-width: 900px) {
  .agt3-intro-grid, .agt3-what-grid, .agt3-resp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .agt3-values-grid { grid-template-columns: repeat(2, 1fr); }
  .agt3-why-grid { grid-template-columns: 1fr 1fr; }
  .agt3-stat-stack { right: 0; }
  .agt3-img-box { max-width: 480px; }
}
@media (max-width: 600px) {
  .agt3-c, .agt3-cn { padding: 0 1.2rem; }
  .agt3-services { grid-template-columns: 1fr; }
  .agt3-values-grid { grid-template-columns: 1fr; }
  .agt3-why-grid { grid-template-columns: 1fr; }
  .agt3-hero-title { font-size: 2.2rem; }
}

@keyframes agt3FadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } }
@keyframes agt3FadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }


/* ════════════════════════════════
   RESPONSIVE NAVBAR
════════════════════════════════ */
.agt2-nav {
  background-color: #1B3A2E !important;
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.agt2-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agt2-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.agt2-nav-logo {
  width: 250px;
  height: 100px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.agt2-nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.agt2-nav-links-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.agt2-nav-links-desktop a:hover { color: var(--gold, #C9A227); }
.agt2-nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold, #C9A227) !important;
  color: #1B3A2E !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: none !important;
}
.agt2-nav-cta:hover { background: var(--goldl, #E8CC82) !important; }

/* Mobile Menu Button (Hidden on Desktop) */
.agt2-mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}
.agt2-mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Menu Dropdown */
.agt2-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1B3A2E;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 998;
}
.agt2-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1.2rem;
}
.agt2-mobile-menu-inner a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.agt2-mobile-menu-inner a:hover {
  color: var(--gold, #C9A227);
  padding-left: 0.5rem;
}
.agt2-nav-cta-mobile {
  display: inline-block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.8rem 1.5rem !important;
  background: var(--gold, #C9A227) !important;
  color: #1B3A2E !important;
  border-radius: 4px;
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1024px) {
  .agt2-nav { padding: 0.8rem 1.5rem; }
  .agt2-nav-logo { width: 200px; height: 80px; }
  .agt2-nav-links-desktop { gap: 1rem; }
  .agt2-nav-links-desktop a { font-size: 0.85rem; }
}

@media (max-width: 900px) {
  /* Hide desktop links, show mobile button */
  .agt2-nav-links-desktop { display: none; }
  .agt2-mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .agt2-nav-logo { width: 160px; height: 64px; }
}

@media (max-width: 480px) {
  .agt2-nav { padding: 0.6rem 1rem; }
  .agt2-nav-logo { width: 130px; height: 52px; }
  .agt2-mobile-menu-inner { padding: 1.2rem 1.5rem; }
  .agt2-mobile-menu-inner a { font-size: 1rem; }
}


/* ════════════════════════════════
   PREMIUM IMAGE ZOOM (Tours & Destinations)
════════════════════════════════ */
.agt2-zoom-wrapper {
  overflow: hidden;
  border-radius: 0.5rem; /* Matches site rounded corners */
  position: relative;
}
.agt2-zoom-wrapper img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agt2-zoom-wrapper:hover img {
  transform: scale(1.08); /* Subtle, premium 8% zoom */
  cursor: zoom-in;
}
/* Also apply to any existing tour/destination card images */
.tour-card-image, .destination-card-image {
  overflow: hidden;
}
.tour-card-image img, .destination-card-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tour-card-image:hover img, .destination-card-image:hover img {
  transform: scale(1.05);
}

/* Background Image Zoom Support */
.bg-zoom-container {
  overflow: hidden;
  border-radius: 0.5rem;
}
.bg-zoom-container > div {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bg-zoom-container:hover > div {
  transform: scale(1.05);
}
