/* ================================================================
   index.css — Helper styles for index.html sections only
   ================================================================ */


/* === HERO === */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,14,26,0.7) 0%, rgba(13,29,51,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 160px;
  padding-bottom: 60px;
}

.caption-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.caption-text1 {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Hero Buttons */
.button-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-explore-white {
  background: var(--white);
  color: var(--brand-color);
  border: 2px solid var(--white);
}

.btn-explore-white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}

.btn-transparent-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-transparent-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-description {
  max-width: 500px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 1.4rem 0 0;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

.hero-assurances svg { color: var(--yellow); flex: none; }

/* ── Trust indicators strip ── */
.trust-strip {
  background: var(--brand-color);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.2rem 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: rgba(255,255,255,0.14);
}

.trust-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-plus { color: var(--yellow); }

.trust-icon { color: var(--yellow); margin-bottom: 0.2rem; }

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}

.trust-label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--yellow);
  font-size: 0.72rem;
}

.trust-label-strong { color: rgba(255,255,255,0.92); }

@media (max-width: 767px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .trust-item:nth-child(2)::after { display: none; }
}

.hero-portfolio-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.hero-portfolio-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}


/* Nav text on scroll */
.navbar .nav-link > a, .navbar .navbar-phone, .navbar .navbar-cta-link {
  color: var(--white);
  transition: color 0.3s ease;
}
.navbar.scrolled-half .nav-link > a,
.navbar.scrolled-full .nav-link > a,
.navbar.scrolled-half .navbar-phone,
.navbar.scrolled-full .navbar-phone,
.navbar.scrolled-half .navbar-cta-link,
.navbar.scrolled-full .navbar-cta-link { color: var(--brand-color); }

.navbar .phone-wrap svg { stroke: var(--white); transition: stroke 0.3s ease; }
.navbar.scrolled-half .phone-wrap svg,
.navbar.scrolled-full .phone-wrap svg { stroke: var(--brand-color); }

.navbar .nav-hamburger .nav-top,
.navbar .nav-hamburger .nav-middle,
.navbar .nav-hamburger .nav-bottom { background: var(--white); transition: background 0.3s ease; }
.navbar.scrolled-half .nav-hamburger .nav-top,
.navbar.scrolled-half .nav-hamburger .nav-middle,
.navbar.scrolled-half .nav-hamburger .nav-bottom,
.navbar.scrolled-full .nav-hamburger .nav-top,
.navbar.scrolled-full .nav-hamburger .nav-middle,
.navbar.scrolled-full .nav-hamburger .nav-bottom { background: var(--brand-color); }


/* === AWARDS SECTION === */

.awards-section {
  background: var(--white);
  padding: 80px 0 60px;
}

.awards-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 60px;
}

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

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

.awards-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.awards-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
}

.awards-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1.2;
}

.awards-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.awards-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.awards-total-wrap {
  text-align: right;
  border-left: 3px solid var(--yellow);
  padding-left: 1.5rem;
}

.awards-total-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.awards-total-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1.1;
}

/* === AWARDS LOGOS MARQUEE === */
.awards-logos-carousel {
  overflow: hidden;
  background:  #d6ae5c ;
  border-radius: 8px;
  padding: 1.8rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.awards-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 22s linear infinite;
}

.awards-logos-track:hover {
  animation-play-state: paused;
}

@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.awards-logo {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  margin-right: 4rem;
}

.awards-logo:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .awards-logos-track { animation: none; }
}


/* === FEATURED PROJECTS SLIDER === */

.projects-section {
  padding: 80px 0;
  background: var(--white);
}

.section-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-top-wrap h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--brand-color);
}

.heading-style-h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--brand-color);
}

.btn-transparent-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-color);
  border: 1px solid rgba(13,29,51,0.3);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-transparent-dark:hover {
  background: var(--brand-color);
  color: var(--white);
  border-color: var(--brand-color);
}

.projects-slider-wrap {
  position: relative;
  overflow: hidden;
}

.projects-slider {
  display: flex;
  gap: 20px;
  overflow: visible;
  will-change: transform;
}

.project-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
}

.project-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border-radius: 4px;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-slide:hover .project-img-wrap img { transform: scale(1.03); }

.project-award-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(40,70,140,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-award-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-category {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(40,70,140,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(13,29,51,0.2);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.slider-btn:hover {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: var(--white);
}

.slider-btn svg { pointer-events: none; }


/* === SECTION STRUCTURE (shared) === */

.section-outer { width: 100%; }

.section-title-block {
  margin-bottom: 3rem;
}

.section-num-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
  opacity: 0.15;
}

.section-caption {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.title-line {
  flex: 1;
  height: 1px;
  background: rgba(13,29,51,0.12);
}

.section-title-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-title-inner { max-width: 580px; }

.section-title-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-title-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* === SERVICES SECTION === */

.services-section-new {
  padding: var(--section-pad-desktop) 0;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(13,29,51,0.06);
}

.service-item-img {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item-img:hover .service-img { transform: scale(1.03); }

.service-item-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-item-content h3 {
  font-size: 1.4rem;
  color: var(--brand-color);
  margin-bottom: 0.75rem;
}

.service-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-two-items {
  background: var(--light-bg);
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.service-item-icon {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.service-icon-wrap {
  margin-bottom: 1.5rem;
}

.service-item-icon h3 {
  font-size: 1.25rem;
  color: var(--brand-color);
  margin-bottom: 0.75rem;
}

.service-item-icon p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-transparent-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-color);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-color);
  padding-bottom: 2px;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.btn-transparent-sm:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}


/* === WORK SECTION === */

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

.projects-rows {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.projects-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.projects-row-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.projects-row-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--brand-color);
  line-height: 1.25;
}

.projects-row-content > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.btn-transparent-black {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-color);
  border: 1px solid rgba(13,29,51,0.3);
  padding: 12px 20px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-transparent-black:hover {
  background: var(--brand-color);
  color: var(--white);
  border-color: var(--brand-color);
}

.work-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.horizontal-divider {
  height: 1px;
  background: rgba(13,29,51,0.08);
}


/* === PROCESS SECTION === */

.process-section-new { }

.tq-process-timeline {
  margin-top: 3rem;
}

.tq-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  min-width: 600px;
  align-items: start;
}

/* Single straight line through all dot centers.
   num fixed height (22px) + gap (0.5rem ~8px) + half-dot (8px) = ~38px from top */
.tq-timeline-track::before {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  right: 10%;
  top: calc(22px + 0.5rem + 8px);
  height: 1px;
  background: rgba(13,29,51,0.18);
  z-index: 0;
}

/* Remove per-step arrow connectors */
.tq-timeline-step:not(:last-child)::after { display: none; }

.tq-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.tq-step-num {
  height: 22px;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
}

.tq-step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(13,29,51,0.1);
  position: relative;
}

.tq-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-color);
  line-height: 1.3;
  margin-top: 0.25rem;
}

.btn-black {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--brand-color);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-black:hover {
  background: var(--yellow);
  color: var(--white);
}


/* === CTA SECTION === */

.cta-section {
  background: var(--white);
  padding: var(--section-pad-desktop) 0;
  border-top: 1px solid rgba(13,29,51,0.06);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-icon-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.cta-tag-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.cta-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--brand-color);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-left > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-explore-dark {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--brand-color);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore-dark:hover {
  background: var(--yellow);
  color: var(--white);
}

.btn-gray {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--light-bg);
  color: var(--brand-color);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(13,29,51,0.1);
}

.btn-gray:hover {
  background: rgba(13,29,51,0.08);
}

.cta-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(13,29,51,0.1);
  background: var(--white);
  margin-bottom: -1px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cta-row:first-child { border-radius: 12px 12px 0 0; }
.cta-row:last-child  { border-radius: 0 0 12px 12px; }

.cta-row:hover {
  background: var(--light-bg);
  border-color: rgba(245,197,24,0.6);
  transform: translateX(3px);
  z-index: 1;
}

.cta-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--brand-color);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(13,29,51,0.2);
  transition: transform 0.25s ease;
}

.cta-row:hover .cta-icon-box { transform: scale(1.07); }

.cta-contact-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-color);
  margin: 0 0 3px;
}

.cta-contact-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-contact-link:hover { color: var(--brand-color); }

.cta-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-social-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-social-links {
  display: flex;
  gap: 8px;
}

.cta-social-btn {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border: 1px solid rgba(13,29,51,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--brand-color);
}

.cta-social-btn:hover {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: var(--white);
}

.cta-social-btn:hover svg { stroke: var(--white); }


/* === WHY CHOOSE US === */

.why-section {
  background: var(--brand-color);
  padding: var(--section-pad-desktop) 0;
}

.why-top-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-caption {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.why-line { background: rgba(255,255,255,0.15) !important; }

.why-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.why-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--yellow);
  line-height: 1.2;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-card:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 700;
  line-height: 1.4;
}

.why-data h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.why-data p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}


/* === FOOTER === */

.footer-cta-banner {
  background: var(--pompadour-dark);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.footer-cta-text h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.footer-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-explore-white-footer {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--white);
  color: var(--brand-color);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore-white-footer:hover { background: var(--yellow); color: var(--white); }

.btn-transparent-footer {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-transparent-footer:hover { background: rgba(255,255,255,0.1); }

.footer-main {
  background: var(--pompadour-dark);
  padding: 60px 0 0;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-brand address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-phone, .footer-email {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

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

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Fade-in scroll animation — canonical rules now live in master.css (global) */


/* === RESPONSIVE === */

@media screen and (max-width: 1199px) {
  .footer-grid-new {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 991px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .awards-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .awards-right { justify-content: flex-start; }
  .awards-total-wrap { text-align: left; }

  .section-title-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .projects-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-image { order: -1; }

  .tq-timeline-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .tq-timeline-track::before { display: none; }


  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }

  .why-wrap { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media screen and (max-width: 767px) {
  .hero-content { padding-top: 120px; }

  .awards-left-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-slide {
    flex: 0 0 80%;
  }

  .tq-timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tq-timeline-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(13,29,51,0.07);
    text-align: left;
  }

  .tq-timeline-step:last-child { border-bottom: none; }

  .tq-step-num {
    min-width: 28px;
    text-align: right;
  }

  .tq-step-dot {
    flex-shrink: 0;
  }

  .tq-step-label {
    text-align: left;
    font-size: 0.9rem;
  }

  .cta-socials {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-cta-inner { flex-direction: column; align-items: flex-start; }

  .footer-cta-actions { width: 100%; }
}

@media screen and (max-width: 479px) {
  .button-group { flex-direction: column; align-items: stretch; }
  .btn-explore, .btn-transparent-white { justify-content: center; }
  .project-slide { flex: 0 0 90%; }
  .footer-grid-new { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

}


/* ================================================================
   LOCATIONS SECTION
   ================================================================ */

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

.locations-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

.locations-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.locations-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-color);
  line-height: 1.2;
}

.locations-left > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

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

.location-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover img { transform: scale(1.06); }

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(7,14,26,0.88));
  padding: 1.5rem 1rem 1rem;
}

.location-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.location-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0;
}

/* Live Google mini-map revealed on hover */
.location-card .location-overlay { z-index: 2; }

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;            /* preview only — clicks go to the card */
  transition: opacity 0.45s ease;
}

.location-card:hover .location-map,
.location-card:focus-visible .location-map { opacity: 1; }

/* "View on Google Maps" pill */
.location-map-cta {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 100px;
  background: rgba(7,14,26,0.78);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.location-map-cta svg { flex: none; }

.location-card:hover .location-map-cta,
.location-card:focus-visible .location-map-cta {
  opacity: 1;
  transform: translateY(0);
}

.location-card:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}


/* ================================================================
   INSIGHTS SECTION
   ================================================================ */

.insights-section { background: var(--light-bg); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(13,29,51,0.06);
  margin-top: 2.5rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}

.insight-card:hover { background: #f5f5f0; }

.insight-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-img-wrap img { transform: scale(1.04); }

.insight-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--brand-color);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.insight-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.insight-read-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.insight-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brand-color);
  line-height: 1.3;
}

.insight-body > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13,29,51,0.08);
}

.insight-meta > span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.insight-arrow {
  font-size: 1.1rem;
  color: var(--brand-color) !important;
  transition: transform 0.2s ease;
  font-style: normal;
}

.insight-card:hover .insight-arrow { transform: translateX(5px); }


/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13,29,51,0.06);
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--brand-color);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-initials {
  width: 44px;
  height: 44px;
  background: var(--brand-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brand-color);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--light-bg);
}

/* Keep review cards uniform when Google text runs long */
.greview-text {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-stat-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.stat-card-inner {
  padding: 2.5rem;
  width: 100%;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}


/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section { background: var(--light-bg); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(13,29,51,0.06);
  margin-top: 2.5rem;
}

.faq-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s ease;
}

.faq-card:hover { background: #f8f8f4; }

.faq-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-card h4 {
  font-size: 1.05rem;
  color: var(--brand-color);
  line-height: 1.3;
  font-weight: 700;
}

.faq-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* ================================================================
   EVENTS & MEDIA GALLERY SECTION
   ================================================================ */

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

.events-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brand-color);
  margin: 0.75rem 0 0.5rem;
}

.events-gallery-desc {
  font-size: 1rem;
  color: rgba(13,29,51,0.6);
  margin: 0 0 2.5rem;
}

/* 4-column grid of 9:16 portrait cells (Reels / TikTok format) */
.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.eg-item {
  position: relative;
  overflow: hidden;
  background: var(--brand-color);
  aspect-ratio: 9 / 16;
}

.eg-item img,
.eg-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.eg-item:hover img,
.eg-item:hover video { transform: scale(1.04); }

/* Video play button overlay */
.eg-item--video { cursor: pointer; }

.eg-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,14,26,0.35);
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.eg-play-btn svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  width: 56px;
  height: 56px;
}

/* Fade out play button when video is playing */
.eg-item--playing .eg-play-btn { opacity: 0; }

@media (max-width: 991px) {
  .events-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .events-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 479px) {
  .events-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */

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

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}

.gallery-item { overflow: hidden; }

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item:last-child {
  grid-column: 3 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }


/* ================================================================
   FINAL CTA SECTION
   ================================================================ */

.final-cta-section {
  background: var(--brand-color);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 80px clamp(24px, 8%, 80px);
}

.final-cta-content .eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.final-cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
}

.final-cta-content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.final-cta-section .btn-explore-dark {
  border: 2px solid var(--yellow);
}

.final-cta-img {
  overflow: hidden;
}

.final-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================================================================
   RESPONSIVE — NEW SECTIONS
   ================================================================ */

@media screen and (max-width: 991px) {
  .locations-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .locations-left { position: static; }

  .locations-grid { grid-template-columns: repeat(3, 1fr); }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-item:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }
  .gallery-item:last-child { grid-column: 1 / 3; }

  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-img { height: 320px; }
  .final-cta-content { padding: 60px 24px; }
}

@media screen and (max-width: 767px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-header { flex-direction: column; align-items: flex-start; }
}

@media screen and (max-width: 479px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:last-child { grid-column: 1 / 3; }

  .final-cta-buttons { flex-direction: column; }
  .btn-outline-brand { justify-content: center; }
  .btn-explore-dark { justify-content: center; }
}

/* ================================================================
   GOOGLE REVIEWS
   ================================================================ */
.google-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid #e7e7e3;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 18px 40px -28px rgba(20,30,50,0.3);
}
.grs-left { display: flex; align-items: center; gap: 1rem; }
.grs-google { flex: none; }
.grs-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
}
.grs-stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 0.08em; }
.grs-sub { margin: 0.3rem 0 0; font-size: 0.85rem; color: #777; }
.grs-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.grs-actions .btn-explore-dark { color: var(--white); }

.greview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.greview-g { flex: none; }

.greview-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  background: var(--brand-color);
  border-radius: 10px;
  padding: 2rem;
  text-decoration: none;
  transition: background 0.25s ease;
}
.greview-cta-card:hover { background: #0a1626; }
.greview-cta-card .greview-g { background: var(--white); border-radius: 50%; padding: 6px; box-sizing: content-box; }
.greview-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.greview-cta-arrow { color: var(--yellow); font-size: 1.4rem; font-weight: 700; }

@media (max-width: 600px) {
  .google-reviews-summary { padding: 1.2rem 1.3rem; }
  .grs-actions { width: 100%; }
  .grs-actions a { flex: 1; justify-content: center; text-align: center; }
}
