/*
Theme Name: ClauzePrestige
Theme URI: https://clauzeprestigehomes.com
Description: Custom theme for Clauze Prestige Home Services
Version: 1.0
Author: Clauze Prestige
*/

/* =========================================================
   CLAUZE PRESTIGE — main.css
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Variables
   --------------------------------------------------------- */
:root {
  --gold-start: #ebc883;
  --gold-end: #865b3e;
  --blush: #e1afa7;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafaf9;
  --gray-100: #f5f4f2;
  --gray-300: #d0ccc7;
  --gray-600: #000;
  --gray-800: #2c2925;
  --container: 1100px;
  --font: 'Montserrat', sans-serif;
  --gold-gradient: linear-gradient(to right, var(--gold-start), var(--gold-end));
  --radius-btn: 500px;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.16);
}

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

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


body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------------------------------------------------------
   3. Utilities
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.overline--gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overline--light { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-gold--lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--gray-800);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover { border-color: var(--gold-end); color: var(--gold-end); }

.btn-outline--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline--light:hover { border-color: var(--white); color: var(--white); }

/* ---------------------------------------------------------
   4. Header / Navbar
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

.site-logo { flex-shrink: 0; }

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Primary Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-list a:hover { color: var(--gold-end); }
.nav-list a:hover::after { transform: scaleX(1); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.social-links { display: flex; gap: 1rem; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.social-link:hover {
  opacity: 0.85;
  transform: scale(1.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   5. Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 410px;
}

.hero__bg-video {
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 410px;
  object-fit: cover;
  z-index: 0;
  object-position: center;
}

.hero__overlay {
  z-index: 99;
  display: flex;
  background: var(--blush);
}

.hero__overlay .container {
  padding-top: 87px;
  z-index: 99;
}

.hero__headline {
  z-index: 99;
  font-size: 5.125rem;
  font-weight: 500;
  line-height: 0.95;
  color: var(--black);
  letter-spacing: -0.125rem;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.hero__sub {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero__social {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  margin-top: 0.25rem;
}

.hero__social-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.hero__social-icon:hover { opacity: 0.8; }

/* ---------------------------------------------------------
   6. Intro
   --------------------------------------------------------- */
.intro { padding: 80px 0; background: var(--blush); }

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro__heading {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--black);
}

.intro__separator {
  width: 80px;
  height: 1px;
  background: rgba(225, 175, 167, 0.4);
  margin-bottom: 1.5rem;
}

.intro__body {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro__body + .btn-gold { margin-top: 1rem; }

.intro__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 
.intro__logo-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
} */

.intro__logo-img {
  width: 100%;
  height: 100%;
  max-width: 360px;
  object-fit: cover;
}

/* ---------------------------------------------------------
   7. Services Header
   --------------------------------------------------------- */
.services-header {
  padding: 5rem 0 2rem;
  background: var(--white);
}

.services-header__inner { text-align: center; }

.services-header__heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}

.services-header__sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-inline: auto;
}

/* ---------------------------------------------------------
   8. Services List
   --------------------------------------------------------- */
.services-list { background: var(--white); padding: 5rem 0; }

.service-card { padding: 1.875rem 0; }

.service-card__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 6.25rem;
  align-items: center;
}

.service-card__image-wrap {
  height: 600px;
  border-radius: 3.125rem;
  border: 4px solid var(--gold-start);
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.service-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card__number {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blush);
  line-height: normal;
}

.service-card__title {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--black);
  line-height: normal;
}

.service-card__separator {
  width: 120px;
  height: 1px;
  background: rgba(225, 175, 167, 0.4);
}

.service-card__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.7;
}

.service-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card__features--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blush);
  line-height: 1.7;
}
.service-card__content .btn-gold{
  align-self: baseline;
}
.feature-check { flex-shrink: 0; display: flex; }

/* Frequency badges */
.service-card__frequency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.375rem;
  max-width: 500px;
}

.frequency_office{
  max-width: 550px;
}

.freq-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.freq-badge__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blush);
  color: #bd7e7b;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.freq-badge__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-600);
  font-family: monospace;
  line-height: 1.2;
  max-width: 110px;
}

/* ---------------------------------------------------------
   9. About
   --------------------------------------------------------- */
.about { background: var(--white); }

.about__row { padding: 5rem 0; }
.about__row--1 { background: var(--blush); }
/* .about__row--2 removed — replaced by .why-us section */

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text .overline{
  margin-bottom: 0;
}
.about__text{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__logo-img{
  max-width: 140px;
}
.about__heading {
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.about__body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.about__body + .btn-gold { margin-top: 1rem; }

.about__image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 600px;
}

.about-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-slider__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
  transition-timing-function: ease;
}

.about-slider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .btn-gold{
  align-self: start;
}
/* Pagination dots — about slider */
.about-slider__pagination {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.about-slider__pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
}

.about-slider__pagination .swiper-pagination-bullet-active {
  background: var(--white);
  transform: scale(1.2);
}


/* ---------------------------------------------------------
   10. Our Mission
   --------------------------------------------------------- */
.our-mission { background: var(--white); padding: 4rem 0; }

.our-mission__inner { max-width: 820px; margin: 0 auto; text-align: center; }

.our-mission__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1rem;
  color: var(--black);
}

/* ---------------------------------------------------------
   11. Who We Serve
   --------------------------------------------------------- */
.who-we-serve { background: var(--blush); padding: 4rem 0; }

.who-we-serve__inner { text-align: center; }

.who-we-serve__heading {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.who-we-serve__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 800px;
  margin: 24px auto;
}

.who-we-serve__card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  width: 225px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  text-align: center;
  padding: 0 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-we-serve__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.who-we-serve__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(to right, #ebc883, #865b3e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.who-we-serve__card svg { flex-shrink: 0; }

.who-we-serve__body {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 1.75rem;
}

/* ---------------------------------------------------------
   11b. Why Us
   --------------------------------------------------------- */
.why-us {
  background: var(--white);
  padding: 5rem 0;
  color: #000 !important;
}
.why-us .overline {
  color: #000 !important;
}
.why-us__inner {
  text-align: center;
}

.why-us__heading {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.why-us__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 3rem;
}

.why-us__grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 540px;
  margin: auto;
  justify-content: center;
  gap: 2rem;
}

.why-us__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 154px;
  transition: transform 0.25s ease;
}

.why-us__card:hover {
  transform: translateY(-4px);
}

.why-us__icon-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__icon-wrap svg {
  width: 100%;
  height: 100%;
}

.why-us__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  color: var(--black);
  white-space: normal;
  word-break: break-word;
  max-height: calc(1.35em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* follow us */
.follow-us-grid{
  display: flex;
  flex-direction: column;
}
.follow-us-grid a{
  margin: auto;
  align-self: center;
}

/* ig-frame */
.follow-us{
    padding-bottom: 50px;
}

.ig-iframe iframe{
    display: flex;
    width: 900px; 
    height: 760px;
    margin: auto;
}
@media screen and (max-width:980px) {
    .ig-iframe iframe{
        max-width: 500px; 
        height: 495px;
    }
    .follow-container{
        padding: 0 !important;
    }
}
@media screen and (max-width:580px) {
    .ig-iframe iframe{
        width:100% !important;
        width: 390px !important;
        height: 410px;
    }    
}

/* ---------------------------------------------------------
   12. Company Policies
   --------------------------------------------------------- */
.company-policies { background: var(--blush); padding: 0 0 5rem 0; }

.company-policies__inner { text-align: center; }

.company-policies__heading {
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.company-policies__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.policy-card {
  background: #ededed;
  border-radius: 12px;
  padding: 1.5rem;
  width: 340px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.policy-card__bar {
  width: 30px;
  height: 2px;
  background: var(--black);
  margin-bottom: 0.75rem;
}

.policy-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.policy-card__desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--black);
  margin: 0;
}

.company-policies__note {
  font-size: 0.875rem;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
}

.paymentpolicies{
  padding-top: 40px;
}
.payment-heading{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

@keyframes bounce-icon {
  0%   { transform: translateY(0)    scale(1);    }
  30%  { transform: translateY(-7px) scale(1.08); }
  50%  { transform: translateY(-2px)  scale(1.04); }
  70%  { transform: translateY(-5px) scale(1.06); }
  100% { transform: translateY(0)    scale(1);    }
}

.paymenticon {
  border-radius: 10px;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
  transition: filter 0.2s ease;
}

.paymenticon:hover {
  animation: bounce-icon 0.55s ease forwards;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.2));
}

/* ---------------------------------------------------------
   13. FAQ
   --------------------------------------------------------- */
.faq-section { background: var(--white); padding: 5rem 0; }

.faq-section__inner { max-width: 840px; margin: 0 auto; }

.faq-section__heading {
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 0.5rem;
}

.faq-section__sub {
  font-size: 0.875rem;
  color: #8c807a;
  margin-bottom: 2rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: #ededed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: #e4e4e4;
  box-shadow: 0 4px 18px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--blush);
  font-size: 1.375rem;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item__answer {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 300;
  padding: 0 1.5rem 1.375rem;
  color: #4d4542;
  margin: 0;
}

/* ---------------------------------------------------------
   14. Gallery (2-col)
   --------------------------------------------------------- */
.gallery { padding: 5rem 0; background: var(--white); }

.gallery__header { text-align: center; margin-bottom: 3rem; }

.gallery__heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.gallery__grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.gallery__item {
  border-radius: 1rem;
  overflow: hidden;
}

/* Gallery Swiper overrides */
.gallery__slider {
  position: relative;
  overflow: hidden;
}

.gallery__wrapper {
  display: flex;
  width: 100%;
  box-sizing: content-box;
  transition-property: transform;
  transition-timing-function: ease;
}

.gallery__slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  max-width: 440px;
}
.gallery__slide img{
  width: 100%;
  object-fit: cover;
}
/* Thumbnail strip */
.gallery__thumbs {
  overflow: hidden;
  margin-top: 12px;
  padding: 0 0.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.gallery__thumb-wrapper {
  display: flex;
}

.gallery__thumb-slide {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.35;
  margin: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__thumb-slide.swiper-slide-thumb-active {
  opacity: 1;
  outline-offset: 2px;
}

.gallery__thumb-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.gallery__prev,
.gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery__prev { left: 0.5rem; }
.gallery__next { right: 0.5rem; }

.gallery__prev::after,
.gallery__next::after {
  font-family: swiper-icons;
  font-size: 0.75rem;
  color: var(--gray-800);
  font-weight: 700;
}

.gallery__prev::after { content: 'prev'; }
.gallery__next::after { content: 'next'; }

.gallery__item img {
  width: 100%;
  height: auto;
  border-radius: 50px;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------------------------------------------------------
   15. Testimonials
   --------------------------------------------------------- */
.testimonials { padding: 5rem 0; background: #eeeeee; }

.testimonials__heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  padding-bottom: 20px;
}
.cont-testimonials .overline{
  padding: 0;
  margin: 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 20px;
}
.cont-testimonials{
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-card__title {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.125rem;
}

/* ---------------------------------------------------------
   16. Image Break
   --------------------------------------------------------- */
.image-break {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
}

.image-break__quote {
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  font-style: italic;
  max-width: 600px;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   17. Gallery 2 (3-col masonry)
   --------------------------------------------------------- */
.gallery2 { background: var(--white); }

.gallery2__item {
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery2__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery2__item:hover img { transform: scale(1.05); }

/* ---------------------------------------------------------
   14. How to Start
   --------------------------------------------------------- */
.how-to-start { padding: 6rem 0; background: var(--gray-50); }

.how-to-start__heading {
  font-size: 2.375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card { text-align: center; }

.step-card__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.step-card__number span {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.step-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.step-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.how-to-start__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------------------------------------------------------
   18. CTA Section
   --------------------------------------------------------- */
.cta-section { background: var(--blush); padding: 5rem 0; }
.cta-section__heading { font-size: 2.75rem; font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 1.25rem; }
.cta-section__body { font-size: 1rem; color: var(--gray-800); line-height: 1.7; margin-bottom: 0; }
.cta-form { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 1.25rem; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cta-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.cta-form__field label { font-size: 0.8125rem; font-weight: 500; color: var(--gray-800); }
.cta-form__field input,
.cta-form__field select,
.cta-form__field textarea {
  padding: 0.75rem 1rem; border: none; border-radius: 0.5rem;
  font-family: var(--font); font-size: 0.9375rem; background: var(--white);
  color: var(--gray-800); outline: none;
}
.cta-form__field--full { grid-column: 1 / -1; }
.cta-form__recaptcha { display: flex; justify-content: center; margin-top: 1rem; }
.cta-form__submit { text-align: center; margin-top: 0.75rem; }
.btn-light{
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--white); color: var(--black);
  font-family: var(--font); font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--radius-btn); border: none; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-light:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.btn-dark {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--radius-btn); border: none; cursor: pointer;
  transition: opacity var(--transition);
}
.btn-dark:hover { opacity: 0.85; }
.cta-contact-info {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.contact-item {
  display: flex; align-items: center; gap: 0.625rem;
}
.contact-item__icon {
  flex-shrink: 0;
  color: var(--gray-800);
}
.contact-item__text {
  display: flex; flex-direction: column;
}
.contact-item__label {
  font-size: 0.6875rem; font-weight: 600;
  color: var(--gray-800); line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-item__value {
  font-size: 0.875rem; color: var(--gray-800);
}

/* ---------------------------------------------------------
   19. Areas Served
   --------------------------------------------------------- */
.areas-served { padding: 0 0 6rem 0; background: var(--blush); }

.areas-served__heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.areas-served__sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.areas-served__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0 3rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-inline: auto;
  padding-left: 20px;
  margin-bottom: 3rem;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.areas-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.areas-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
  background: var(--gold-end);
}

.areas-served__map {
  border-radius: 1.25rem;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.areas-served__map iframe { display: block; }

/* ---------------------------------------------------------
   20. Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--blush);
  color: var(--gray-800);
  padding: 4rem 0 0;
}

.footer-inner {
  display: flex;
  /* display: grid;
  grid-template-columns: 3fr 1fr 1fr; */
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-logo{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logo-footer{
  width: 140px;
  height: 140px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  color: var(--gray-800);
  transition: color var(--transition);
}

.footer-nav-list a:hover { color: var(--black); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact strong { font-weight: 600; }

.footer-phone,
.footer-email {
  font-size: 0.9375rem;
  color: var(--gray-800);
  transition: color var(--transition);
}

.footer-phone:hover,
.footer-email:hover { color: var(--black); }

.social-links--footer { margin-top: 1rem; }
.social-links--footer .social-link { color: var(--gray-800); }
.social-links--footer .social-link:hover { color: var(--black); }

.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* Responsive styles moved to responsive.css */

/* ── Gallery Lightbox ───────────────────────────────────── */
#gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: lb-fade-in 0.2s ease;
}
#gallery-lightbox.is-open { display: flex; }

#gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
  z-index: 10;
}
#gallery-lightbox__close:hover { opacity: 1; }

.gallery-lb__swiper {
  position: relative;
  width: 90vw;
  max-width: 1100px;
}
.gallery-lb__wrapper {
  display: flex;
}
.gallery-lb__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
}
.gallery-lb__slide img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.gallery-lb__prev,
.gallery-lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.gallery-lb__prev:hover,
.gallery-lb__next:hover { background: rgba(255, 255, 255, 0.3); }
.gallery-lb__prev { left: -3.5rem; }
.gallery-lb__next { right: -3.5rem; }
.gallery-lb__prev::after,
.gallery-lb__next::after {
  font-family: swiper-icons;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}
.gallery-lb__prev::after { content: 'prev'; }
.gallery-lb__next::after { content: 'next'; }

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
