:root {
  --header-footer-height: 64px; 
}
html, body {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

/* ================= HEADER ================= */
.header {
  height: var(--header-footer-height);
  background: #ffffff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

/* ================= STICKY HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body.scrolled .header {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


/* ================= NAV GRID ================= */
.nav {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 48px;
}

/* ================= LOGO (LEFT) ================= */
.logo {
  height: 10%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 62px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  
}



/* ================= CENTER MENU (ALL 4 ITEMS) ================= */
.nav-center {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ================= RIGHT BUTTON ================= */
.nav-actions {
  display: flex;
  justify-content: flex-end;
}
/* ================= MENU TEXT ================= */
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c75a3a;
  white-space: nowrap;
}

.nav a:hover {
  color: #9e3f27;
}

/* ================= BUTTON ================= */
.nav .btn-primary {
  background: #e85c3b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.nav .btn-primary:hover {
  background: #cf4e2f;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 340px;
  padding: 0 80px;
  background: #f3e6d4;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #c75a3a;
  line-height: 1.25;
  margin-bottom: 26px;
}

.hero-image {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-left: 40px;
}

/* ================= SERVICES ================= */
.services {
  padding: 60px 80px;
}

.services-group {
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= BOOKING ================= */
.booking-section {
  min-height: 100vh;             
  display: flex;
  flex-direction: column;
  justify-content: center;       
  align-items: center;            
  padding: 60px 20px;             
  background: #fdf8f2;
            
}

.booking-header,
.booking-form {
  width: 100%;
  max-width: 1100px;
}


.booking-header h2 {
  font-size: 42px;
  color: #a14f3c;
  font-family: 'Playfair Display', serif;
}

.booking-header p {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}

.booking-form {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  padding-bottom: 56px;
  border-radius: 20px;
    box-shadow: 0 120px 30px rgba(0,0,0,0.06);
}


.soft-divider {
  height: 1px;
  width: 100vh;
  max-width: 1100px;
  margin: 15px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.12),
    transparent
  );
}

/* ================= INSTAGRAM / TRANSFORMATION ================= */
.transform-section {
  width: 100%;
  padding: 100px 60px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #a14f3c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 70px;
}

/* MAIN GRID */
.transform-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

/* LEFT TEXT */
.transform-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* RIGHT VIDEO GRID */
.transform-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* VIDEO CARD */
.video-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .transform-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .transform-videos {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .transform-videos {
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT ================= */
.contact-section {
  background: linear-gradient(180deg, #f7ead9, #f5f3ef);
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  padding: 90px 60px 0;
}

.contact-header {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 42px;
  color: #a14f3c;
  font-family: 'Playfair Display', serif;
}

.contact-header p {
  margin-top: 8px;
}

.contact-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-map {
  width: 100%;
  margin-top: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 14px;
}

/* ================= GOOGLE REVIEWS ================= */
.reviews-section {
  background: #f5f9fc;             
  width: 100vw;                     
  margin-left: calc(-50vw + 50%);   
  padding: 80px 0;                  
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.reviews-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b7280;
}

.reviews-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #c75a3a;
  margin: 12px 0 24px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-rating img {
  height: 28px;
}

.stars {
  color: #c75a3a;
  font-size: 16px;
}

/* Cards */
.reviews-cards {
  display: flex;
  gap: 24px;
}

.review-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  width: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-header .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-header h4 {
  font-size: 14px;
  margin: 0;
}

.review-header span {
  color: #6b7280;
  font-weight: normal;
}

.google-icon {
  margin-left: auto;
  height: 20px;
}

.review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ================= CAROUSEL ================= */
.reviews-carousel {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
}

.review-card {
  min-width: 420px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ================= REVIEW NAV BUTTONS ================= */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

/* Navigation buttons */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #c75a3a;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 20;               
}

/* Place INSIDE container */
.review-nav.prev {
  left: 10px;                 
}

.review-nav.next {
  right: 10px;                 
}

.review-nav:hover {
  background: #c75a3a;
  color: #fff;
}


/* ================= FOOTER ================= */
.footer {
  height: var(--header-footer-height);
  background: linear-gradient(90deg, #d85b3f, #e46b4f);
  display: flex;
  align-items: center;         
  padding: 0 80px;              
  color: #fff;
}
.footer-left {
  display: flex;
  align-items: center;         
}

.footer-left img {
  height: 0px;
  width: auto;
}


.footer-content {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
