@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Lexend:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Lexend:wght@300;400;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Lexend:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
  --primary-burgundy: #ae3a3a;
  --coral-red: #db413a;
  --soft-blue: #91beea;
  --deep-purple: #6b538a;
  --forest-green: #143c3c;
  --cream: #eaecda;
  --sage-green: #a8b5a0;
  --warm-grey: #8b8680;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9f5;
  --text-primary: #2d2d2d;
  --text-secondary: #5a5a5a;
  --border-color: #e0e0dc;
  --card-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.95);

  --header-height: 120px;
  --header-height-scrolled: 100px;
}

html { background-color: #143c3c; }

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--forest-green) var(--bg-secondary);
}

body {
  font-family: 'Lexend', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-burgundy), var(--forest-green));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-burgundy); }

/* ==========================================
   KEYFRAMES
   ========================================== */
@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes honeycombRipple {
  0%   { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); opacity: 0.7; transform: scale(0.3) translate(-50%, -50%); }
  40%  { clip-path: polygon(50% 5%, 97% 27%, 97% 73%, 50% 95%, 3% 73%, 3% 27%);   opacity: 0.5; transform: scale(1.1) translate(-50%, -50%); }
  70%  { clip-path: polygon(50% 8%, 95% 29%, 95% 71%, 50% 92%, 5% 71%, 5% 29%);   opacity: 0.2; transform: scale(1.6) translate(-50%, -50%); }
  100% { clip-path: polygon(50% 8%, 95% 29%, 95% 71%, 50% 92%, 5% 71%, 5% 29%);   opacity: 0;   transform: scale(2.2) translate(-50%, -50%); }
}

@keyframes honeycombShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes honeycombPulse {
  0%   { box-shadow: 0 4px 20px rgba(174,58,58,0.3), 0 0 0 0   rgba(219,65,58,0.4); }
  50%  { box-shadow: 0 4px 20px rgba(174,58,58,0.5), 0 0 0 8px rgba(219,65,58,0);   }
  100% { box-shadow: 0 4px 20px rgba(174,58,58,0.3), 0 0 0 0   rgba(219,65,58,0);   }
}

@keyframes honeycombPulseGreen {
  0%   { box-shadow: 0 4px 20px rgba(20,60,60,0.3), 0 0 0 0   rgba(20,60,60,0.4); }
  50%  { box-shadow: 0 4px 20px rgba(20,60,60,0.5), 0 0 0 8px rgba(20,60,60,0);   }
  100% { box-shadow: 0 4px 20px rgba(20,60,60,0.3), 0 0 0 0   rgba(20,60,60,0);   }
}

@keyframes heroOverlayFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: none;      }
}

@keyframes heroImageZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

@keyframes starPulse {
  0%   { opacity: 0;   transform: scale(0.3) rotate(0deg);   }
  15%  { opacity: 0;   transform: scale(0.3) rotate(0deg);   }
  40%  { opacity: 1;   transform: scale(1.2) rotate(20deg);  }
  65%  { opacity: 0.9; transform: scale(1.0) rotate(-10deg); }
  85%  { opacity: 1;   transform: scale(1.3) rotate(15deg);  }
  100% { opacity: 0;   transform: scale(0.3) rotate(0deg);   }
}

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   HEADER
   ========================================== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  padding: 0 50px;
  background: var(--forest-green);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: headerDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height    0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  height: var(--header-height-scrolled);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(20, 60, 60, 0.1);
}

/* ==========================================
   LOGO
   ========================================== */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo img {
  height: 100px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0) invert(1);
}

header.scrolled .logo img {
  height: 80px;
  filter: none;
}

.logo:hover img { transform: scale(1.06); }

/* ==========================================
   NAV — DESKTOP
   ========================================== */
.nav-left {
  display: flex;
  gap: 40px;
  align-items: center;
  position: absolute;
  left: 180px;
}

.nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
  position: absolute;
  right: 180px;
}

.nav-left a,
.nav-right a {
  font-weight: 300;
  font-size: 16px;
  color: var(--cream);
  transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
  position: relative;
  border: 1px solid rgba(234, 236, 218, 0.4);
  padding: 4px 14px;
  border-top: none;
  border-bottom: none;
  letter-spacing: 0.03em;
}

.nav-left a:hover,
.nav-right a:hover {
  color: white;
  border-color: rgba(234, 236, 218, 0.7);
  letter-spacing: 0.12em;
}

header.scrolled .nav-left a,
header.scrolled .nav-right a {
  color: var(--forest-green);
  border-color: rgba(20, 60, 60, 0.3);
}

header.scrolled .nav-left a:hover,
header.scrolled .nav-right a:hover {
  color: var(--forest-green);
  border-color: rgba(20, 60, 60, 0.6);
  letter-spacing: 0.12em;
}

.nav-left a.active,
.nav-right a.active {
  color: var(--coral-red);
  font-weight: 400;
  border: none;
  letter-spacing: 0.03em;
}

header.scrolled .nav-left a.active,
header.scrolled .nav-right a.active {
  color: var(--coral-red);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ==========================================
   HAMBURGER MENU (MOBILE)
   ========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 20px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s ease;
  transform-origin: center;
}

header.scrolled .hamburger span { background: var(--forest-green); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV DRAWER */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--forest-green);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(234, 236, 218, 0.2);
  padding-bottom: 8px;
  width: 70%;
  text-align: center;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--coral-red); border-color: var(--coral-red); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  padding: 8px;
}

/* ==========================================
   MOBILE SERVICES NAV
   ========================================== */
.services-mobile-nav {
  display: none;
}

@media (max-width: 1100px) {
  .services-mobile-nav {
    display: flex;
    position: sticky;
    top: var(--header-height-scrolled);
    z-index: 99;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 60, 60, 0.12);
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .services-mobile-nav::-webkit-scrollbar { display: none; }

  .services-mobile-nav a {
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 14px 18px;
    border-right: 1px solid rgba(20, 60, 60, 0.08);
    transition: color 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
  }

  .services-mobile-nav a:last-child { border-right: none; }

  .services-mobile-nav a:hover,
  .services-mobile-nav a.active {
    color: var(--primary-burgundy);
    background: rgba(174, 58, 58, 0.05);
  }
}

/* ==========================================
   CONTACT PAGE HEADER
   ========================================== */
.contact-page header {
  position: static;
  background: var(--forest-green);
  animation: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--header-height);
}

.contact-page header.scrolled {
  background: var(--forest-green);
  height: var(--header-height);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-page header .logo img,
.contact-page header.scrolled .logo img {
  filter: brightness(0) invert(1);
  height: 70px;
}

.contact-page header .nav-left a,
.contact-page header .nav-right a,
.contact-page header.scrolled .nav-left a,
.contact-page header.scrolled .nav-right a {
  color: var(--cream);
  border-color: rgba(234, 236, 218, 0.4);
}

.contact-page header .nav-left a:hover,
.contact-page header .nav-right a:hover,
.contact-page header.scrolled .nav-left a:hover,
.contact-page header.scrolled .nav-right a:hover {
  color: var(--cream);
  border-color: rgba(234, 236, 218, 0.7);
  letter-spacing: 0.12em;
}

.contact-page header .nav-left a.active,
.contact-page header .nav-right a.active,
.contact-page header.scrolled .nav-left a.active,
.contact-page header.scrolled .nav-right a.active {
  color: var(--coral-red);
  border: none;
  letter-spacing: 0.03em;
}

/* ==========================================
   SERVICES PAGE HEADER
   ========================================== */
.services-page header {
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height    0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.services-page header.scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  height: var(--header-height-scrolled) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(20, 60, 60, 0.1) !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  margin-top: 0;
  height: 70vh;
  background-image: url('herosectionimg.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-image { display: none; }

.hero-content {
  position: absolute;
  top: -40px; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  padding: 0 80px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(20, 60, 60, 0.35) 60%,
    transparent 100%);
  animation: heroOverlayFade 1.5s ease 0.1s both;
  text-align: left;
}

.hero-text {
  text-align: left;
  max-width: 600px;
  padding-top: calc(var(--header-height) + 20px);
}

.hero-text h1 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--cream);
  line-height: 1.1;
  text-align: left;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.hero-text p {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(234, 236, 218, 0.88);
  line-height: 1.9;
  margin-bottom: 35px;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
  max-width: 500px;
  margin-left: 0;
  margin-right: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
}

/* ==========================================
   HERO BUTTONS
   ========================================== */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-buttons .btn-glass {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.hero-buttons .btn-glass:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-2px) !important;
  animation: none !important;
  border-color: rgba(234, 236, 218, 0.55);
  box-shadow:
    0 0 15px rgba(219, 65, 58, 0.5),
    0 0 35px rgba(219, 65, 58, 0.25),
    0 6px 20px rgba(174, 58, 58, 0.4);
}

.hero-buttons .btn-glass:active {
  transform: translateY(0px) scale(0.97) !important;
}

/* ==========================================
   BTN-GHOST
   ========================================== */
.btn-ghost {
  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(234, 236, 218, 0.6);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.2s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: inline-block;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.btn-ghost:hover {
  background: rgba(234, 236, 218, 0.12);
  border-color: rgba(234, 236, 218, 0.9);
  transform: translateY(-2px);
  letter-spacing: 0.08em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-ghost:active {
  transform: translateY(0px) scale(0.97);
  transition: transform 0.1s ease;
}

/* ==========================================
   BTN-GLASS
   ========================================== */
.btn-glass {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--coral-red));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 236, 218, 0.25);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(174, 58, 58, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  letter-spacing: 0.02em;
  isolation: isolate;
}

.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.btn-glass:hover::before { opacity: 1; }
.btn-glass:hover::after  { opacity: 1; animation: honeycombShimmer 0.55s ease forwards; }
.btn-glass:hover {
  border-color: rgba(234, 236, 218, 0.55);
  transform: translateY(-2px);
  animation: honeycombPulse 0.6s ease forwards;
}

.btn-glass:active {
  transform: translateY(0px) scale(0.97);
  transition: transform 0.1s ease;
}

.btn-glass .hex-ripple {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
  animation: honeycombRipple 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: 0 0;
  left: 0; top: 0;
}

/* ==========================================
   BTN-PRIMARY
   ========================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), #1f5a5a);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(234, 236, 218, 0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(20, 60, 60, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after  { opacity: 1; animation: honeycombShimmer 0.55s ease forwards; }
.btn-primary:hover {
  transform: translateY(-2px);
  animation: honeycombPulseGreen 0.6s ease forwards;
}

.btn-primary:active {
  transform: translateY(0px) scale(0.97);
  transition: transform 0.1s ease;
}

.btn-primary .hex-ripple {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  z-index: 2;
  animation: honeycombRipple 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: 0 0;
  left: 0; top: 0;
}

/* ==========================================
   BTN-STAR TWINKLE
   ========================================== */
.btn-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  line-height: 1;
  opacity: 0;
  font-size: 9px;
  z-index: 10;
}

.btn-star--active { animation: starPulse 3.2s ease-in-out forwards; }

/* ==========================================
   SUBMIT BUTTONS
   ========================================== */
.submit-btn {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--coral-red));
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(234, 236, 218, 0.25);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(174, 58, 58, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  isolation: isolate;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover::after  { opacity: 1; animation: honeycombShimmer 0.55s ease forwards; }
.submit-btn:hover {
  transform: translateY(-2px);
  animation: honeycombPulse 0.6s ease forwards;
}

.submit-btn:active {
  transform: translateY(0px) scale(0.97);
  transition: transform 0.1s ease;
}

.submit-btn .hex-ripple {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
  animation: honeycombRipple 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: 0 0;
  left: 0; top: 0;
}

.submit-btn-primary {
  background: linear-gradient(135deg, var(--forest-green), #1f5a5a);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(234, 236, 218, 0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(20, 60, 60, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  isolation: isolate;
}

.submit-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.submit-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.submit-btn-primary:hover::before { opacity: 1; }
.submit-btn-primary:hover::after  { opacity: 1; animation: honeycombShimmer 0.55s ease forwards; }
.submit-btn-primary:hover {
  transform: translateY(-2px);
  animation: honeycombPulseGreen 0.6s ease forwards;
}

.submit-btn-primary:active {
  transform: translateY(0px) scale(0.97);
  transition: transform 0.1s ease;
}

.submit-btn-primary .hex-ripple {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  z-index: 2;
  animation: honeycombRipple 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: 0 0;
  left: 0; top: 0;
}


/* ==========================================
   PAGE TITLE SECTION
   ========================================== */
.page-title-section {
  padding: 180px 50px 100px;
  background: var(--bg-primary);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary-burgundy), var(--coral-red));
  border-radius: 2px;
}

.page-title-section h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-burgundy);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.page-title-section p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.page-title-section h1.is-visible,
.page-title-section p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   TWO COLUMN SECTION
   ========================================== */
.two-column-section {
  padding: 100px 50px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.two-column-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: left;
}

.column p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.9;
}

.two-column-section .btn-glass {
  padding: 10px 24px;
  font-size: 14px;
  margin-top: 30px;
}

.two-column-container .column:nth-child(1) {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.two-column-container .column:nth-child(2) {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.two-column-container .column.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   DARK GREEN SECTION
   ========================================== */
.dark-green-section {
  padding: 120px 50px;
  background: var(--forest-green);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.dark-green-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(174,58,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.dark-green-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--cream);
  letter-spacing: -0.01em;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.dark-green-section p {
  font-size: 18px;
  color: rgba(234, 236, 218, 0.8);
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.dark-green-section h2.is-visible,
.dark-green-section p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   FULL IMAGE SECTION
   ========================================== */
.full-image-section {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
}

.full-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.full-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.full-image-container:hover img { transform: scale(1.02); }

/* ==========================================
   SERVICE CARDS
   ========================================== */
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(20, 60, 60, 0.1);
  text-align: center;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease,
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: stretch;
  background: var(--card-bg);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:nth-child(odd)  { transform: translateY(30px) translateX(-70px); }
.service-card:nth-child(even) { transform: translateY(30px) translateX(70px); }

.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.05s; }
.service-card:nth-child(3) { transition-delay: 0.2s;  }
.service-card:nth-child(4) { transition-delay: 0.2s;  }
.service-card:nth-child(5) { transition-delay: 0.35s; }
.service-card:nth-child(6) { transition-delay: 0.35s; }

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.service-card:hover {
  box-shadow: 0 25px 60px rgba(20, 60, 60, 0.18);
  border-color: rgba(174, 58, 58, 0.25);
}

.service-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-card:hover .service-card-image-bg { transform: scale(1.04); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,28,28,0.55) 0%,
    rgba(20,60,60,0.72) 45%,
    rgba(0,0,0,0.82) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,28,28,0.45) 0%,
    rgba(20,60,60,0.62) 45%,
    rgba(0,0,0,0.75) 100%
  );
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.service-card.has-image .service-card-content h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  font-weight: 700;
}

.service-card.has-image .service-card-content p {
  color: rgba(255,255,255,0.92);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 13px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  max-width: 340px;
}

.service-card:not(.has-image) .service-card-content {
  justify-content: center;
  padding: 24px 20px;
}

.service-card:not(.has-image) .service-card-content h3 {
  font-size: 1.2rem;
  color: var(--primary-burgundy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card:not(.has-image) .service-card-content p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ==========================================
   STEP ITEMS
   ========================================== */
.step-item {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item.is-visible { opacity: 1; transform: translateY(0); }

.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.25s; }
.step-item:nth-child(3) { transition-delay: 0.4s; }

.step-item a { text-decoration: none; color: inherit; }
.step-item a:hover h3 { color: var(--coral-red); transition: color 0.3s ease; }

.step-number {
  width: 70px; height: 70px;
  background: var(--forest-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.step-number svg { width: 30px; height: 30px; stroke: white; }

.step-item:hover .step-number {
  transform: scale(1.15);
  background: var(--primary-burgundy);
  box-shadow: 0 0 20px rgba(174, 58, 58, 0.4);
}

/* ==========================================
   SERVICES SIDEBAR NAV
   ========================================== */
.services-sidebar {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 100;
}

.services-sidebar-link {
  font-family: 'Lexend', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  padding-left: 16px;
}

.services-sidebar-link::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-secondary);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.services-sidebar-link:hover { color: var(--primary-burgundy); }
.services-sidebar-link:hover::before {
  background: var(--primary-burgundy);
  transform: translateY(-50%) scale(1.4);
}

.services-sidebar-link.active { color: var(--primary-burgundy); font-weight: 600; }
.services-sidebar-link.active::before {
  background: var(--primary-burgundy);
  transform: translateY(-50%) scale(1.4);
  box-shadow: 0 0 8px rgba(174, 58, 58, 0.4);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 130px 50px;
  background-image: url('Londonnight.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,60,60,0.75) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-container h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.contact-container p {
  font-size: 18px;
  color: rgba(234, 236, 218, 0.75);
  margin-bottom: 40px;
  line-height: 1.9;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 55px;
}

.contact-item {
  background: rgba(234, 236, 218, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 236, 218, 0.12);
  padding: 35px 25px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.contact-item.is-visible { opacity: 1; transform: translateY(0); }

.contact-item:hover {
  background: rgba(234, 236, 218, 0.12);
  border-color: rgba(234, 236, 218, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-item p  { font-size: 16px; color: rgba(234,236,218,0.7); margin-bottom: 0; }
.contact-item a  { color: var(--coral-red); font-weight: 600; transition: color 0.3s ease; }
.contact-item a:hover { color: var(--cream); }

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================
   BOOKING FORM SECTION
   ========================================== */
.booking-form-section {
  padding: 100px 50px;
  background-image: url('Londonnight.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.booking-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.booking-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.booking-info-side {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.booking-info-side.is-visible { opacity: 1; transform: translateX(0); }

.booking-info-side h2 {
  font-size: 2rem;
  font-family: 'Lora', serif;
  color: var(--primary-burgundy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.booking-info-side .info-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 60, 60, 0.12);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #ffffff;
  border-color: rgba(174, 58, 58, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 60, 60, 0.12);
}

.info-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-green);
  margin-bottom: 6px;
}

.info-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.info-card a { color: var(--primary-burgundy); font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
.info-card a:hover { color: var(--coral-red); }

.reassurance-block {
  background: linear-gradient(135deg, rgba(20,60,60,0.06), rgba(174,58,58,0.05));
  border: 1px solid rgba(20, 60, 60, 0.1);
  border-radius: 14px;
  padding: 22px 20px;
  margin-top: 24px;
}

.reassurance-block p { font-size: 13px; color: var(--text-secondary); line-height: 1.75; margin: 0; }
.reassurance-block strong { color: var(--forest-green); }

.booking-form-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(20, 60, 60, 0.1);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.booking-form-card.is-visible { opacity: 1; transform: translateX(0); }

.booking-form-card h3 {
  font-size: 1.5rem;
  font-family: 'Lora', serif;
  color: var(--primary-burgundy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.booking-form-card .form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==========================================
   FORM GROUPS
   ========================================== */
.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  font-family: 'Lexend', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lexend', sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-burgundy);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(174, 58, 58, 0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select   { cursor: pointer; }

.booking-form-card .submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px 30px;
  font-size: 15px;
}

/* ==========================================
   FORM MESSAGE
   ========================================== */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-message.success {
  display: block;
  background: rgba(20, 60, 60, 0.08);
  border: 1.5px solid rgba(20, 60, 60, 0.25);
  color: var(--forest-green);
}

.form-message.error {
  display: block;
  background: rgba(219, 65, 58, 0.08);
  border: 1.5px solid rgba(219, 65, 58, 0.25);
  color: var(--coral-red);
}

/* ==========================================
   CONTACT HERO BANNER
   ========================================== */
.contact-hero-banner {
  background: var(--forest-green);
  padding: 60px 50px;
  padding-top: calc(var(--header-height) + 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 236, 218, 0.1);
}

.contact-hero-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(219,65,58,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary-burgundy), var(--coral-red));
  border-radius: 2px;
}

.contact-hero-banner h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  position: relative;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.contact-hero-banner p {
  font-size: 18px;
  color: rgba(234, 236, 218, 0.78);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

.contact-hero-banner h1.is-visible,
.contact-hero-banner p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-rotate,
.reveal-blur {
  opacity: 0;
  will-change: transform, opacity;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 0.9s;
  transition-property: opacity, transform, filter;
}

.reveal        { transform: translateY(50px); }
.reveal-left   { transform: translateX(-70px); }
.reveal-right  { transform: translateX(70px); }
.reveal-scale  { transform: scale(0.85); }
.reveal-rotate { transform: translateY(40px) rotate(-3deg); }
.reveal-blur   { transform: translateY(30px); filter: blur(12px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-rotate.is-visible,
.reveal-blur.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ==========================================
   STAGGER DELAYS
   ========================================== */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.55s; }

.delay-1 { transition-delay: 0.1s  !important; }
.delay-2 { transition-delay: 0.2s  !important; }
.delay-3 { transition-delay: 0.3s  !important; }
.delay-4 { transition-delay: 0.45s !important; }
.delay-5 { transition-delay: 0.6s  !important; }

.reveal-slow { transition-duration: 1.4s !important; }
.reveal-fast { transition-duration: 0.5s !important; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: linear-gradient(135deg, #0f2e2e, #0a1f1f);
  color: var(--cream);
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('WoodPat.png');
  background-size: 500px 500px;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234,236,218,0.2), transparent);
  z-index: 1;
}

footer > * { position: relative; z-index: 2; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(234, 236, 218, 0.1);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(234, 236, 218, 0.45);
  margin-bottom: 6px;
}

.footer-links-col a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(234, 236, 218, 0.65);
  letter-spacing: 0.02em;
  transition: color 0.25s ease, letter-spacing 0.25s ease, border-color 0.25s ease;
  display: inline-block;
  border-bottom: 1px solid rgba(234, 236, 218, 0.2);
  padding-bottom: 4px;
}

.footer-links-col a:hover {
  color: var(--coral-red);
  letter-spacing: 0.06em;
  border-color: var(--coral-red);
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo-col .footer-logo {
  display: flex;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-col .footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-logo-col .footer-logo img {
  height: 140px;
  width: auto;
  display: block;
  filter: invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-social-col h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(234, 236, 218, 0.45);
  margin-bottom: 6px;
}

.footer-social-col a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(234, 236, 218, 0.65);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-col a:hover { color: var(--coral-red); }

.footer-social-col a svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(234, 236, 218, 0.4);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.footer-bottom p.is-visible { opacity: 1; transform: translateY(0); }

.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
  text-decoration: none;
}

.footer-credit.is-visible { opacity: 0.7; transform: translateY(0); }
.footer-credit:hover { opacity: 1 !important; }

.footer-credit img {
  height: 28px;
  width: auto;
  display: block;
  filter: invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.footer-credit:hover img { 
    transform: scale(1.08); 
    filter: invert(31%) sepia(64%) saturate(1200%) hue-rotate(323deg) brightness(95%) contrast(95%);
}

.footer-credit span {
  font-family: 'Lexend', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(234, 236, 218, 0.65);
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.footer-credit:hover span { color: var(--coral-red); }

/* ==========================================
   SOCIAL LINKS
   ========================================== */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
}

.instagram-link:hover {
  color: var(--coral-red);
  transform: translateY(-3px);
}

.instagram-link svg {
  width: 50px;
  height: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-link:hover svg {
  stroke: var(--coral-red);
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 0 8px rgba(219,65,58,0.4));
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-burgundy), var(--coral-red));
  border: 1px solid rgba(234, 236, 218, 0.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(174, 58, 58, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  box-shadow: 0 8px 28px rgba(174, 58, 58, 0.5);
  transform: translateY(-3px);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================
   TESTIMONIAL TRACK
   ========================================== */
.hero-testimonials {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(
    to right,
    rgba(10,28,28,0.80) 0%,
    rgba(20,60,60,0.65) 50%,
    rgba(10,28,28,0.80) 100%
  );
  border-top: 1px solid rgba(234, 236, 218, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-testimonials::before,
.hero-testimonials::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.hero-testimonials::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,28,28,0.95), transparent);
}

.hero-testimonials::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,28,28,0.95), transparent);
}

.testimonial-track-wrapper {
  display: flex;
  width: max-content;
  animation: testimonialScroll 80s linear infinite;
}

.testimonial-track-wrapper:hover { animation-play-state: paused; }

.testimonial-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 44px;
  border-right: 1px solid rgba(234, 236, 218, 0.13);
  flex-shrink: 0;
}

.testimonial-stars { display: flex; gap: 2px; flex-shrink: 0; }
.testimonial-stars span { color: #f5c518; font-size: 12px; line-height: 1; }

.testimonial-quote {
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(234, 236, 218, 0.90);
  font-style: italic;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.testimonial-divider {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(234, 236, 218, 0.3);
  flex-shrink: 0;
}

.testimonial-author {
  font-family: 'Lexend', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(234, 236, 218, 0.50);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.testimonial-reviews-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  flex-shrink: 0;
  border-right: 1px solid rgba(234, 236, 218, 0.13);
}

.testimonial-reviews-link a {
  font-family: 'Lexend', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(234, 236, 218, 0.70);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(234, 236, 218, 0.28);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.testimonial-reviews-link a:hover {
  color: var(--coral-red);
  border-color: var(--coral-red);
}

.testimonial-google-icon { display: flex; align-items: center; flex-shrink: 0; }
.testimonial-google-icon svg { width: 15px; height: 15px; }

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.section { padding: 100px 50px; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.about-section img { height: auto; max-width: 100%; }
.about-intro { padding-top: calc(var(--header-height) + 60px); }

/* ==========================================
   RESPONSIVE — LARGE TABLET (max 1100px)
   ========================================== */
@media (max-width: 1100px) {
  .services-sidebar { display: none; }
  .nav-left  { left: 120px; gap: 20px; }
  .nav-right { right: 120px; gap: 20px; }
  .nav-left a,
  .nav-right a { font-size: 14px; padding: 4px 10px; }
}

/* ==========================================
   RESPONSIVE — TABLET (max 900px)
   ========================================== */
@media (max-width: 900px) {

  :root {
    --header-height: 70px;
    --header-height-scrolled: 60px;
  }

  .nav-left,
  .nav-right { display: none; }

  .hamburger { display: flex; right: 16px; }
  .mobile-nav { display: flex; }

  header { padding: 0 24px; }

  .logo img { height: 58px; }
  header.scrolled .logo img { height: 46px; }

  .contact-page header,
  .contact-page header.scrolled { height: var(--header-height); }
  .contact-page header .logo img,
  .contact-page header.scrolled .logo img { height: 58px; }

  .hero { background-attachment: scroll; height: 100svh; }
  .hero-content { padding: 0 30px; }
  .hero-text    { padding-top: calc(var(--header-height) + 16px); }
  .hero-text h1 { font-size: clamp(20px, 4.5vw, 32px); }
  .hero-text p  { font-size: clamp(14px, 2.5vw, 17px); }

  .page-title-section  { padding: 150px 40px 80px; }
  .two-column-section  { padding: 80px 40px; }
  .dark-green-section  { padding: 100px 40px; }
  .contact-section     { padding: 100px 40px; background-attachment: scroll; }
  .booking-form-section{ padding: 80px 40px; background-attachment: scroll; }
  .contact-hero-banner { padding: 60px 40px; padding-top: calc(var(--header-height) + 50px); }

  .two-column-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .two-column-container .column:nth-child(1),
  .two-column-container .column:nth-child(2) { transform: translateY(30px); }

  .booking-form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .booking-info-side  { transform: translateY(30px); }
  .booking-form-card  { padding: 40px 30px; transform: translateY(30px); }
  .form-row-2         { grid-template-columns: 1fr 1fr; }

  .services-grid { padding: 60px 30px; gap: 20px; grid-template-columns: repeat(2, 1fr); }
  .contact-info  { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-links-col  { align-items: center; }
  .footer-social-col { align-items: center; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .scroll-top-btn { bottom: 28px; right: 28px; }

  .hero-testimonials { padding: 13px 0; }
  .hero-testimonials::before,
  .hero-testimonials::after { width: 80px; }
  .testimonial-item  { padding: 0 30px; gap: 10px; }
  .testimonial-quote { font-size: 12.5px; }
  .testimonial-track-wrapper { animation-duration: 60s; }

  .section { padding: 80px 40px; }
}

/* ==========================================
   RESPONSIVE — MOBILE (max 600px)
   ========================================== */
@media (max-width: 600px) {

  :root {
    --header-height: 68px;
    --header-height-scrolled: 58px;
  }

  header { padding: 0 16px; }

  .logo img { height: 54px; }
  header.scrolled .logo img { height: 42px; }

  .hamburger { right: 14px; width: 44px; height: 44px; }

  .contact-page header,
  .contact-page header.scrolled { height: var(--header-height); }
  .contact-page header .logo img,
  .contact-page header.scrolled .logo img { height: 54px; }

  .about-intro { padding-top: calc(var(--header-height) + 30px); }

  .hero { background-attachment: scroll; min-height: 560px; height: 100svh; }

  .hero-content {
    padding: 0 20px;
    align-items: flex-start;
    justify-content: flex-start;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(20, 60, 60, 0.45) 55%,
      rgba(0, 0, 0, 0.25) 100%
    );
  }

  .hero-text {
    padding-top: calc(var(--header-height) + 28px);
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .hero-text h1 {
    font-size: clamp(22px, 6.5vw, 30px);
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: left;
  }

  .hero-text p {
    font-size: clamp(13px, 3.8vw, 15px);
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
    margin: 0;
    justify-content: flex-start;
  }

  .hero-buttons .btn-glass,
  .hero-buttons .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 9px 14px;
    font-size: 12px;
    display: block;
    min-height: unset;
  }

  .btn-glass  { padding: 8px 14px; font-size: 12px; }
  .btn-ghost  { padding: 8px 14px; font-size: 12px; }
  .btn-primary,
  .submit-btn,
  .submit-btn-primary { padding: 10px 18px; font-size: 13px; }

  .page-title-section   { padding: 120px 20px 60px; }
  .page-title-section h1{ font-size: clamp(26px, 7vw, 36px); }
  .two-column-section   { padding: 60px 20px; }
  .dark-green-section   { padding: 70px 20px; }
  .contact-section      { padding: 70px 20px; background-attachment: scroll; }
  .booking-form-section { padding: 60px 20px; background-attachment: scroll; }
  .contact-hero-banner  { padding: 50px 20px; padding-top: calc(var(--header-height) + 30px); }

  .two-column-container { gap: 30px; margin-bottom: 35px; }
  .booking-form-wrapper { gap: 28px; }
  .booking-form-card    { padding: 28px 20px; }
  .form-row-2           { grid-template-columns: 1fr; }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 18px;
  }

  .service-card:nth-child(odd),
  .service-card:nth-child(even) { transform: translateY(30px); }

  .service-card         { min-height: 220px; }
  .service-card-content { padding: 20px 16px; min-height: 220px; }
  .service-card.has-image .service-card-content h3 { font-size: 1rem; }
  .service-card.has-image .service-card-content p  { font-size: 12px; margin-bottom: 10px; }

  .steps-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  .form-group           { margin-bottom: 18px; }
  .form-group input,
  .form-group textarea,
  .form-group select    { padding: 13px 16px; font-size: 16px; }
  .form-group label     { font-size: 11px; }

  .contact-info  { gap: 16px; }
  .contact-item  { padding: 28px 20px; }

  footer         { padding: 40px 20px 28px; }
  .footer-inner  { gap: 24px; padding-bottom: 24px; }
  .footer-logo-col .footer-logo img { height: 44px; }
  .footer-credit img { height: 22px; }
  .footer-credit span { font-size: 10px; }

  .social-links  { gap: 8px; }
  .instagram-link svg { width: 40px; height: 40px; }

  .scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  .hero-testimonials { padding: 11px 0; }
  .hero-testimonials::before,
  .hero-testimonials::after { width: 50px; }
  .testimonial-item         { padding: 0 20px; gap: 8px; }
  .testimonial-quote        { font-size: 11.5px; }
  .testimonial-author       { display: none; }
  .testimonial-divider      { display: none; }
  .testimonial-reviews-link { padding: 0 20px; }
  .testimonial-track-wrapper{ animation-duration: 42s; }

  .section { padding: 55px 20px; }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (max 380px)
   ========================================== */
@media (max-width: 380px) {

  :root {
    --header-height: 60px;
    --header-height-scrolled: 52px;
  }

  .logo img { height: 46px; }
  header.scrolled .logo img { height: 36px; }

  .hamburger { right: 12px; width: 40px; height: 40px; }

  .hero-content { padding: 0 16px; }

  .hero-text { padding-top: calc(var(--header-height) + 20px); }

  .hero-text h1 { font-size: clamp(18px, 6.5vw, 24px); }
  .hero-text p  { font-size: 12.5px; }

  .hero-buttons {
    max-width: 240px;
    gap: 8px;
  }

  .hero-buttons .btn-glass,
  .hero-buttons .btn-ghost {
    padding: 9px 12px;
    font-size: 11.5px;
  }

  .service-card         { min-height: 200px; }
  .service-card-content { padding: 18px 14px; min-height: 200px; }

  .mobile-nav a { font-size: clamp(20px, 7vw, 26px); width: 80%; }

  .btn-glass,
  .btn-primary,
  .btn-ghost,
  .submit-btn,
  .submit-btn-primary { padding: 8px 14px; font-size: 11.5px; }
}

/* ==========================================
   HAMBURGER — SCROLLED STATE OVERRIDES
   ========================================== */
@media (max-width: 900px) {
  header.scrolled .hamburger span { background: var(--forest-green); }
  .contact-page header.scrolled .hamburger span { background: var(--cream); }
}

/* ==========================================
   TOUCH DEVICE IMPROVEMENTS
   ========================================== */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover .service-card-image-bg { transform: none; }
  .full-image-container:hover img            { transform: none; }
  .logo:hover img                            { transform: none; }

  .nav-left a,
  .nav-right a { min-height: 44px; display: flex; align-items: center; }

  .btn-primary,
  .submit-btn,
  .submit-btn-primary { min-height: 44px; }

  .scroll-top-btn { width: 52px; height: 52px; }
  .hamburger      { width: 44px; height: 44px; }

  .testimonial-track-wrapper { animation-play-state: running; }

  .contact-section,
  .booking-form-section { background-attachment: scroll; }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  header, footer, .scroll-top-btn,
  .hero-testimonials, .hamburger,
  .mobile-nav { display: none !important; }

  body { background: white; color: black; }

  .hero-content { position: static; background: none; }
  .hero-text h1, .hero-text p { color: black; text-shadow: none; }

  .service-card { break-inside: avoid; opacity: 1; transform: none; }
  .btn-glass, .btn-primary, .btn-ghost { display: none; }
}