/* =======================
   Brand Palette & Fonts
======================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --olive-900: #1F3328;  /* deep olive */
  --olive-700: #2E4A3F;  /* secondary olive */
  --olive-100: #EEF2ED;  /* light sage */
  --gold-500: #C8A85A;   /* primary gold */
  --gold-400: #D6BA72;   /* hover gold */
  --ivory: #FAF8F1;      /* page background */
  --white: #FFFFFF;

  --text-900: #161616;
  --text-700: #3C3C3C;
  --shadow: 0 12px 28px rgba(31, 51, 40, 0.18);
}

/* =======================
   Base Styles
======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--ivory);
  color: var(--text-900);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(92%, 1120px);
  margin-inline: auto;
}

/* =======================
   Header / Navigation
======================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--olive-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(140%) blur(6px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  color: var(--gold-500);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
  text-decoration: none;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop a {
  color: var(--white);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--gold-400);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-desktop a:hover::after {
  width: 80%;
}

/* Hamburger (hidden by default, shown on mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Floating Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 16px; /* leave space from top */
  right: 16px; /* leave space from right */
  width: min(40%, 320px); /* smaller floating card style */
  height: auto;
  background: rgba(30, 40, 20, 0.6); /* transparent olive tone */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  border-radius: 16px; /* rounded corners */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* soft shadow */
  z-index: 1000;

  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.mobile-menu.active {
  transform: translateX(0);
}



.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold-400);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--white);
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  cursor: pointer;
}

/* =======================
   Buttons
======================= */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--gold-500);
  color: var(--olive-900);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--white);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(200, 168, 90, 0.15);
}

.btn--light {
  background: var(--white);
  color: var(--olive-900);
  box-shadow: var(--shadow);
}

.btn--sm {
  padding: 8px 14px;
  border-radius: 8px;
}

/* =======================
   Hero
======================= */
.hero {
  background: linear-gradient(135deg, var(--olive-900), var(--olive-700));
  color: var(--white);
  text-align: center;
  padding: clamp(64px, 8vw, 96px) 0;
}

.hero__inner {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--gold-500);
}

.hero p {
  max-width: 720px;
  margin: 14px auto 26px;
  opacity: 0.95;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badges {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.95;
}

.hero__badges span {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
}

/* =======================
   Sections
======================= */
.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--olive-100);
}

.section-title {
  color: var(--olive-900);
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-intro {
  color: var(--text-700);
  margin-bottom: 22px;
}

/* =======================
   Grid & Cards
======================= */
.grid {
  display: grid;
  gap: 22px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid rgba(46, 74, 63, 0.12);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 168, 90, 0.18);
  display: grid;
  place-items: center;
  color: var(--olive-900);
  margin-bottom: 10px;
}

/* =======================
   Gallery
======================= */
.gallery .shot {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(46, 74, 63, 0.12);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.gallery img {
  width: 100%;
  transition: transform 0.35s ease;
}

.gallery .shot:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  padding: 10px 12px;
  color: var(--text-700);
  font-size: 0.95rem;
}

/* =======================
   Testimonials
======================= */
.quote p {
  font-size: 1rem;
}

.quote__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.quote__meta img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

/* =======================
   CTA Band
======================= */
.cta {
  background: linear-gradient(135deg, var(--olive-700), var(--olive-900));
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}

.cta h2 {
  font-weight: 800;
  margin-bottom: 6px;
}

.cta p {
  opacity: 0.95;
  margin-bottom: 16px;
}

/* =======================
   Forms
======================= */
.form {
  max-width: 560px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__row {
  display: flex;
  gap: 14px;
}

.form__row input {
  flex: 1;
}

input,
textarea {
  background: var(--white);
  border: 1px solid rgba(46, 74, 63, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 168, 90, 0.25);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.micro-note {
  margin-top: 12px;
  color: var(--text-700);
  text-align: center;
}

.micro-note a {
  color: var(--olive-900);
  font-weight: 600;
}

/* =======================
   Footer
======================= */
.footer {
  background: var(--olive-900);
  color: var(--white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}

.socials a {
  color: var(--white);
  opacity: 0.9;
  margin-left: 12px;
}

.socials a:hover {
  opacity: 1;
}

/* =======================
   Responsive Breakpoints
======================= */
@media (max-width: 1024px) {
  .section {
    padding: 56px 0;
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .form__row {
    flex-direction: column;
  }
  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .btn {
    padding: 11px 18px;
    border-radius: 9px;
  }
  .section {
    padding: 50px 0;
  }
  .hero {
    padding: 56px 0;
  }
  .hero__badges span {
    font-size: 0.9rem;
  }
}
/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--olive-900);
}

.faq-item {
  border-bottom: 1px solid var(--olive-100);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--olive-900);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-500);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--olive-700);
  line-height: 1.6;
}
/* About Section */
.about-section {
  padding: 3rem 1rem;
  text-align: center;
  background: var(--olive-100, #EEF2ED);
}

.about-section h1 {
  margin-bottom: 1rem;
  color: var(--gold-500, #C8A85A);
}

.about-section p {
  max-width: 700px;
  margin: 0.5rem auto;
  line-height: 1.7;
  color: var(--olive-900, #1F3328);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.mission-vision .card {
  flex: 1 1 300px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Founder Section */
.founder {
  padding: 3rem 1rem;
  background: #fff;
}

.founder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-500, #C8A85A);
}

.founder-info {
  max-width: 500px;
}

.founder-info h2 {
  color: var(--gold-500, #C8A85A);
  margin-bottom: 0.5rem;
}

.founder-info h3 {
  margin-bottom: 1rem;
  color: var(--olive-900, #1F3328);
}

.founder-info p {
  margin-bottom: 1.5rem;
  color: #444;
}

.founder-social a {
  font-size: 1.3rem;
  margin: 0 0.5rem;
  color: var(--olive-900, #1F3328);
  transition: color 0.3s ease;
}

.founder-social a:hover {
  color: var(--gold-500, #C8A85A);
}
/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--olive-100);
  color: var(--olive-900);
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--olive-900);
  color: #fff;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav a {
  color: #fff;
  margin: 0 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
}
.nav a:hover,
.nav .active {
  color: var(--gold-500);
}

/* ===== Hero ===== */
.contact-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--olive-700);
  color: #fff;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}

/* ===== Contact Info ===== */
.contact-info {
  padding: 2rem 1rem;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}
.contact-card {
  background: var(--olive-100);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card i {
  font-size: 2rem;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

/* ===== Contact Form ===== */
.contact-form-section {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--olive-900);
}
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form button {
  padding: 0.9rem;
  border: none;
  border-radius: 5px;
  background: var(--gold-500);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: var(--gold-400);
}

/* ===== Map ===== */
.map {
  padding: 2rem 1rem;
  background: var(--olive-100);
  text-align: center;
}
.map-container {
  max-width: 800px;
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== FAQ Teaser ===== */
.faq-teaser {
  padding: 1.5rem;
  text-align: center;
  background: #fff;
}
.faq-teaser a {
  color: var(--gold-500);
  font-weight: bold;
  text-decoration: none;
}
.faq-teaser a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--olive-900);
  color: #fff;
  text-align: center;
  padding: 1rem;
}
