/* ========================================
   Edelweiss Estate Coffee — Global Styles
   ======================================== */

/* --- Custom Properties --- */
:root {
  --color-forest: #2D4A22;
  --color-forest-dark: #1E3516;
  --color-cream: #F5F0E8;
  --color-tan: #C4A882;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-text-secondary: #5A5550;
  --color-border: #E0D8CE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 80px;
  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

section {
  scroll-margin-top: var(--nav-height);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* --- Container --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 74, 34, 0.3);
}

.btn-outline {
  border: 2px solid var(--color-forest);
  color: var(--color-forest);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-forest);
}

.btn-white:hover {
  background-color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.solid {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-forest);
  white-space: nowrap;
}

.navbar.transparent .nav-logo {
  color: var(--color-white);
}

.navbar.solid .nav-logo {
  color: var(--color-forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.navbar.transparent .nav-links a {
  color: var(--color-white);
}

.navbar.solid .nav-links a {
  color: var(--color-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-forest);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar.transparent .nav-links a::after {
  background-color: var(--color-white);
}

.nav-links .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.nav-links .btn::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all var(--transition);
}

.navbar.transparent .hamburger span {
  background-color: var(--color-white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Internal Page Nav (always solid) --- */
.navbar.internal {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.internal .nav-logo {
  color: var(--color-forest);
}

.navbar.internal .nav-links a {
  color: var(--color-dark);
}

.navbar.internal .nav-links a::after {
  background-color: var(--color-forest);
}

.navbar.internal .hamburger span {
  background-color: var(--color-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-forest-dark);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 53, 22, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

/* --- Page Hero (internal pages) --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  z-index: 0;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-forest-dark);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 53, 22, 0.65) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Credentials Strip --- */
.credentials {
  background-color: var(--color-forest);
  padding: 24px 0;
}

.credentials-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.credentials-list li {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.credentials-list li:not(:last-child)::after {
  content: '·';
  margin-left: 40px;
  opacity: 0.5;
}

/* --- Section Styles --- */
.section {
  padding: var(--section-padding);
  scroll-margin-top: var(--nav-height);
}

.section-light {
  background-color: var(--color-cream);
}

.section-white {
  background-color: var(--color-white);
}

.section-dark {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* --- About Snippet --- */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-snippet-image {
  aspect-ratio: 4 / 3;
  background-color: var(--color-tan);
  border-radius: 8px;
  overflow: hidden;
}

.about-snippet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-snippet-text h2 {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-forest);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
}

.text-link:hover {
  gap: 12px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  padding: 40px 28px;
  border-radius: 8px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-forest);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card .text-link {
  margin-top: 16px;
  font-size: 0.85rem;
}

/* --- Certifications --- */
.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cert-badge-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
}

.cert-badge-icon svg {
  width: 36px;
  height: 36px;
}

.cert-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* --- Content Sections (story, farm, etc.) --- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-image {
  aspect-ratio: 4 / 3;
  background-color: var(--color-tan);
  border-radius: 8px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}

/* --- Timeline (story page) --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-tan);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-forest);
  border: 3px solid var(--color-cream);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-forest);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

/* --- Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  padding: 32px 24px;
  background-color: var(--color-white);
  border-radius: 8px;
  text-align: center;
}

.feature-item svg {
  width: 40px;
  height: 40px;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.9rem;
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  margin-top: 60px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-forest);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Export Companies --- */
.export-companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.export-company {
  background: var(--color-cream);
  padding: 40px;
  border-radius: 12px;
  text-align: left;
}

.export-company svg {
  width: 36px;
  height: 36px;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.export-company h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.export-company p {
  margin-bottom: 12px;
  color: var(--color-text-secondary);
}

.export-contact a {
  color: var(--color-forest);
  font-weight: 600;
}

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

/* --- Stay Page Cards --- */
.stay-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stay-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stay-card-image {
  aspect-ratio: 16 / 10;
  background-color: var(--color-tan);
  overflow: hidden;
}

.stay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-card-body {
  padding: 24px;
}

.stay-card-body h3 {
  margin-bottom: 8px;
}

.stay-card-body p {
  font-size: 0.9rem;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 24px;
}

.contact-details {
  margin-top: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-forest);
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.contact-form {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: var(--color-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(45, 74, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error-message {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #c0392b;
}

.form-group.error .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: var(--color-white);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-snippet {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stay-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--color-dark) !important;
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .btn {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .credentials-list li:not(:last-child)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stay-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-banner {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .cert-grid {
    gap: 30px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile menu overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--color-forest);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 900;
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background-color: var(--color-forest-dark);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Sticky Mobile Enquiry Bar --- */
.mobile-enquiry-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-enquiry-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background-color: var(--color-white);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    gap: 12px;
  }

  .mobile-enquiry-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
  }

  .mobile-enquiry-bar .enquiry-wa {
    background-color: #25D366;
    color: #fff;
  }

  .mobile-enquiry-bar .enquiry-contact {
    background-color: var(--color-forest);
    color: #fff;
  }

  .mobile-enquiry-bar svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .whatsapp-float {
    bottom: 88px !important;
  }

  .back-to-top {
    bottom: 88px !important;
  }

  .footer {
    padding-bottom: 80px;
  }
}

/* --- Hero Slideshow --- */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition);
  padding: 0;
}

.slideshow-dot.active {
  background-color: var(--color-white);
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.slideshow-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slideshow-arrow.prev {
  left: 24px;
}

.slideshow-arrow.next {
  right: 24px;
}

.slideshow-arrow svg {
  width: 20px;
  height: 20px;
}

/* --- Testimonial Section --- */
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* --- Google Map --- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Mailto Contact Form --- */
.mailto-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.mailto-form h3 {
  margin-bottom: 16px;
}
