/* ==========================================================================
   Kasb-e-Kamaal - Core Stylesheet (Exact Design Mockup Match)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Exact Design Mockup Colors */
  --brand-forest-900: #0e2920;
  --brand-forest-800: #13382c; /* Main topbar, footer, and primary CTA green */
  --brand-forest-700: #1a4a3b;
  --brand-forest-600: #235c4a;
  --brand-forest-500: #2d735c;
  --brand-forest-100: #e2efe8;
  --brand-forest-50:  #eef6f2; /* Soft leaf background tint */

  --brand-cream:       #fbfaf6; /* Page background / focus bar background */
  --brand-cream-card:  #f6f4ee;
  --brand-cream-border:#e5dfd3;

  --brand-terracotta:  #844322; /* Explore products button color */
  --brand-terracotta-hover: #6e3519;

  --brand-gold:        #e5a024; /* Join our journey button gold */
  --brand-gold-hover:  #cc8c1a;

  --neutral-900: #1e293b;
  --neutral-800: #2d3748;
  --neutral-700: #4a5568;
  --neutral-600: #718096;
  --neutral-500: #a0aec0;
  --neutral-300: #e2e8f0;
  --neutral-200: #edf2f7;
  --neutral-100: #f7fafc;
  --white:       #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script:  'Caveat', 'Alex Brush', cursive;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions */
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-forest-800);
  line-height: 1.25;
  font-weight: 700;
}

.script-sub {
  font-family: var(--font-script);
  font-size: 1.45em;
  font-weight: 700;
  color: #3b6b55;
  display: inline-block;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

a {
  color: var(--brand-forest-800);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--brand-forest-600);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Top Notification Bar */
.top-bar {
  background-color: var(--brand-forest-800);
  color: #d1e7dc;
  font-size: 0.825rem;
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-social a {
  color: #d1e7dc;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* Main Site Header */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0.5rem 0;
}

.site-branding img {
  height: 52px;
  width: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}

.nav-menu > li > a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-800);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--brand-forest-800);
}

.nav-menu > li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-forest-800);
  border-radius: 2px;
}

.header-cta-btn {
  background-color: var(--brand-forest-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--brand-forest-800);
}

.header-cta-btn:hover {
  background-color: var(--brand-forest-700);
  color: var(--white);
}

/* Mobile Toggle & Drawer */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-forest-800);
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 1.75rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.active { right: 0; }

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--neutral-700);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-nav-menu li a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--neutral-800);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section (Home & Page Banners) */
.hero-mockup-wrap {
  background: linear-gradient(to right, #fbfaf6 0%, #f6f4ee 45%, #eef6f2 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--brand-cream-border);
}

.hero-mockup-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 480px;
  position: relative;
}

.hero-mockup-left {
  padding: 3.5rem 2.5rem 3.5rem 0;
  position: relative;
  z-index: 2;
}

.hero-mockup-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--brand-forest-800);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-mockup-left p {
  font-size: 1.05rem;
  color: var(--neutral-700);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-forest-pill {
  background-color: var(--brand-forest-800);
  color: var(--white);
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--brand-forest-800);
}

.btn-forest-pill:hover {
  background-color: var(--brand-forest-700);
  color: var(--white);
}

.btn-outline-pill {
  background-color: transparent;
  color: var(--brand-forest-800);
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--brand-forest-800);
}

.btn-outline-pill:hover {
  background-color: var(--brand-forest-800);
  color: var(--white);
}

.hero-mockup-right {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-curved-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(85% 100% at 75% 50%);
}

.hero-curved-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-round {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--brand-forest-100);
  z-index: 10;
  padding: 0.5rem;
}

.hero-badge-round span.top-txt {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--brand-forest-800);
  text-transform: uppercase;
}

.hero-badge-round span.icon {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0.2rem 0;
}

.hero-badge-round span.btm-txt {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-forest-800);
  text-transform: uppercase;
}

/* Horizontal Focus Areas Strip */
.focus-strip-section {
  background-color: var(--brand-cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--brand-cream-border);
}

.focus-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.focus-strip-item {
  text-align: center;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus-strip-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--brand-forest-50);
  border: 1.5px solid var(--brand-forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--brand-forest-800);
}

.focus-strip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--brand-forest-800);
}

.focus-strip-item p {
  font-size: 0.8rem;
  color: var(--neutral-600);
  line-height: 1.4;
}

/* Triad Section (Nature, Heritage, Change) */
.triad-mockup-section {
  padding: 4.5rem 0;
  background-color: var(--white);
}

.triad-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.triad-col {
  display: flex;
  flex-direction: column;
}

.triad-media-arched {
  height: 200px;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.triad-media-arched img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triad-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.triad-col p {
  font-size: 0.925rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-terracotta {
  background-color: var(--brand-terracotta);
  color: var(--white);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.btn-terracotta:hover {
  background-color: var(--brand-terracotta-hover);
  color: var(--white);
}

/* Pre-Footer Strip */
.pre-footer-strip {
  background-color: var(--brand-forest-800);
  color: var(--white);
  padding: 1.25rem 0;
}

.pre-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pre-footer-motto {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.pre-footer-contact {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
}

.pre-footer-contact a {
  color: #d1e7dc;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pre-footer-contact a:hover {
  color: var(--white);
}

.btn-gold-journey {
  background-color: var(--brand-gold);
  color: var(--brand-forest-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-gold-journey:hover {
  background-color: var(--brand-gold-hover);
}

/* Bottom Footer */
.bottom-footer {
  background-color: var(--white);
  padding: 1.25rem 0;
  border-top: 1px solid var(--neutral-200);
  font-size: 0.85rem;
  color: var(--neutral-600);
}

.bottom-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.bottom-footer-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #3b6b55;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .focus-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .triad-mockup-grid {
    grid-template-columns: 1fr;
  }
  .hero-mockup-inner {
    grid-template-columns: 1fr;
  }
  .hero-mockup-right {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .primary-navigation { display: none; }
  .mobile-nav-toggle { display: block; }
  .focus-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pre-footer-inner { flex-direction: column; text-align: center; }
  .pre-footer-contact { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 600px) {
  .focus-strip-grid { grid-template-columns: 1fr; }
  .bottom-footer-inner { flex-direction: column; text-align: center; }
}
