/*
Theme Name: Interior Studio
Theme URI: https://example.com
Author: ShaimraTech
Description: Luxury interior website using warm beige + terracotta + warm grey palette.
Version: 1.0
*/

/* ====== ROOT VARIABLES (USE ACROSS ALL PAGES) ====== */
:root {
  --gn-body-bg:   #F4EEE8;    /* warm beige page background */
  --gn-card-bg:   #FFFFFF;    /* cards / hero panels */

  --gn-teal:      #C05B3C;    /* primary accent (terracotta) */
  --gn-teal-dark: #8F3F28;    /* deeper terracotta */
  --gn-orange:    #E8A46A;    /* warm sandy accent */

  --gn-text-main:  #2B2622;   /* deep warm text */
  --gn-text-muted: #7A6E64;   /* warm grey text */
  --gn-border-soft:#E1D4C7;   /* soft beige border */
}

/* ====== BASE ====== */
body.interior-site {
  margin: 0;
  background: var(--gn-body-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gn-text-main);
}

a {
  color: var(--gn-teal);
  text-decoration: none;
}
a:hover {
  color: var(--gn-teal-dark);
}

/* Generic containers to reuse on other pages */
.container-wide {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 24px;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* ====== HEADER ====== */
.gn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,238,232,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gn-border-soft);
}

.gn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

/* Logo */
.gn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.gn-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #FFFFFF, var(--gn-orange));
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.gn-logo-text {
  display: flex;
  flex-direction: column;
}
.gn-logo-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gn-logo-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gn-text-muted);
}

/* Nav */
.gn-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.gn-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.gn-nav-list a {
  font-size: 14px;
  color: var(--gn-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 3px;
  position: relative;
}
.gn-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gn-teal);
  transition: width .18s ease;
}
.gn-nav-list a:hover {
  color: var(--gn-text-main);
}
.gn-nav-list a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.gn-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--gn-border-soft);
  background: #FFFFFF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.gn-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--gn-text-main);
  transition: transform .2s ease, opacity .2s ease;
}

/* Header CTAs */
.gn-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gn-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #F7D7C6;  /* light terracotta tint */
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gn-teal-dark);
}
.gn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.gn-btn-primary {
  background: var(--gn-teal);
  border-color: var(--gn-teal);
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(192,91,60,0.3);
}
.gn-btn-primary:hover {
  background: var(--gn-teal-dark);
  border-color: var(--gn-teal-dark);
}
.gn-btn-outline {
  background: #FFFFFF;
  border-color: var(--gn-border-soft);
  color: var(--gn-text-main);
}
.gn-btn-outline:hover {
  border-color: var(--gn-teal);
  color: var(--gn-teal-dark);
}






.wptitle {
  text-align: center;
  color: #d4af37; /* premium gold */
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;

  /* gradient gold effect */
  background: linear-gradient(120deg, #b8860b, #ffd700, #fff2a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* subtle glow */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}








/* ====== HERO (generic) ====== */
.gn-hero {
  padding: 60px 0 72px;
}
.gn-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}
.gn-hero-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gn-text-muted);
}
.gn-hero-heading {
  font-size: 38px;
  line-height: 1.18;
  margin: 10px 0 14px;
}
.gn-hero-heading em {
  font-style: normal;
  color: var(--gn-teal);
}
.gn-hero-subtext {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gn-text-muted);
  max-width: 480px;
  margin-bottom: 20px;
}
.gn-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 22px;
}
.gn-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--gn-text-muted);
}
.gn-hero-meta-item strong {
  display: block;
  font-size: 20px;
  color: var(--gn-text-main);
}

/* Hero right */
.gn-hero-right {
  position: relative;
}
.gn-hero-badge {
  position: absolute;
  left: -22px;
  top: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gn-teal);
  color: #FFFFFF;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gn-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #FDE2C5;
}
.gn-hero-photo-card {
  background: var(--gn-card-bg);
  border-radius: 24px;
  padding: 16px 16px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.gn-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  height: 180px;
}
.gn-photo {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.gn-hero-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gn-text-muted);
}

/* ====== CONTENT SECTIONS ====== */
.gn-section {
  padding: 0 0 80px;
}
.gn-section-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 30px 34px;
  border: 1px solid var(--gn-border-soft);
}
.gn-two-col {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1.1fr);
  gap: 40px;
}
.gn-section-title {
  font-size: 22px;
  margin-bottom: 12px;
}
.gn-section-title-teal {
  color: var(--gn-teal);
}
.gn-list {
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  color: var(--gn-text-muted);
}
.gn-divider {
  height: 1px;
  background: var(--gn-border-soft);
  margin: 26px 0;
}
.gn-subtitle {
  font-size: 16px;
  margin-bottom: 10px;
}
.gn-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.gn-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gn-border-soft);
  background: #FFFFFF;
  font-size: 13px;
  color: var(--gn-text-muted);
}

/* ====== FOOTER ====== */
.gn-footer {
  margin-top: 40px;
  background: #FFFFFF;
  border-top: 1px solid var(--gn-border-soft);
}
.gn-footer-inner {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr);
  gap: 32px;
  padding: 32px 24px 24px;
}
.gn-footer-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.gn-footer-text {
  font-size: 14px;
  color: var(--gn-text-muted);
  max-width: 360px;
  line-height: 1.6;
}
.gn-footer-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gn-text-muted);
  margin-bottom: 10px;
}
.gn-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gn-footer-menu li + li {
  margin-top: 6px;
}
.gn-footer-menu a {
  font-size: 13px;
  color: var(--gn-text-main);
}
.gn-footer-menu a:hover {
  color: var(--gn-teal);
}
.gn-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.gn-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--gn-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gn-text-muted);
}
.gn-social a:hover {
  border-color: var(--gn-teal);
  color: var(--gn-teal);
}
.gn-footer-bottom {
  border-top: 1px solid var(--gn-border-soft);
}
.gn-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 14px;
  font-size: 12px;
  color: var(--gn-text-muted);
}
.gn-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Back to top */
.gn-back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--gn-border-soft);
  background: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
  z-index: 60;
}
.gn-back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--gn-text-main);
}

/* ====== RESPONSIVE (HEADER / LAYOUT) ====== */
@media (max-width: 960px) {
  .gn-header-inner {
    padding-inline: 16px;
  }
  .gn-nav {
    justify-content: flex-end;
  }
  .gn-nav-toggle {
    display: inline-flex;
  }
  .gn-nav-list {
    position: fixed;
    inset-inline: 16px;
    top: 70px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    padding: 16px 18px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .gn-nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gn-hero-inner {
    grid-template-columns: 1fr;
  }
  .gn-hero-right {
    order: -1;
  }
  .gn-two-col {
    grid-template-columns: 1fr;
  }
  .gn-footer-inner {
    grid-template-columns: minmax(0,1.4fr) minmax(0,1.2fr);
  }
}

@media (max-width: 680px) {
  .container-wide,
  .container-narrow {
    padding-inline: 16px;
  }
  .gn-hero-heading {
    font-size: 30px;
  }
  .gn-footer-inner {
    grid-template-columns: 1fr;
  }
  .gn-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================
   FULL WIDTH HERO SLIDER (EDGE TO EDGE)
   ====================================================== */

.gn-fw-hero {
  position: relative;
  width: 100vw;
  height: 90vh;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.gn-fw-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.gn-fw-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.gn-fw-slide.is-active {
  opacity: 1;
}

/* TEXT OVERLAY (if used) */
.gn-fw-hero-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 10;
}

.gn-fw-hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
}

.gn-fw-hero-content p {
  margin: 18px 0 28px;
  font-size: 18px;
}

.gn-fw-btn {
  display: inline-block;
  background: var(--gn-teal);
  padding: 14px 30px;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.gn-fw-btn:hover {
  background: var(--gn-teal-dark);
}

/* DOTS */
.gn-fw-dots {
  position: absolute;
  bottom: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.gn-fw-dot {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.gn-fw-dot.is-active {
  background: var(--gn-teal);
  transform: scale(1.2);
}

/* Clean duplicate hero block */
.gn-fw-slide.is-active {
  opacity: 1;
}

/* MOBILE HERO TWEAKS */
@media(max-width:768px) {
  .gn-fw-hero {
    height: 70vh;
  }
  .gn-fw-hero-content h1 {
    font-size: 32px;
  }
  .gn-fw-hero-content {
    left: 5%;
    right: 5%;
  }
}

/* ===== Mobile hero full image / no crop ===== */
@media (max-width: 768px) {

  .gn-fw-hero {
    height: auto;
    min-height: 60vh;
    margin-bottom: 0;
    padding-bottom: 16px;
  }

  .gn-fw-slider {
    position: relative;
    width: 100%;
    padding-top: 75%;
  }

  .gn-fw-slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .gn-fw-hero-content {
    position: static;
    transform: none;
    padding: 16px 16px 22px;
    color: var(--gn-text-main);
    text-shadow: none;
  }

  .gn-fw-dots {
    position: static;
    margin: 0 0 16px;
  }
}

/* =====================================================
   INTERIOR GALLERY
   ===================================================== */

.int-gallery {
  position: relative;
  padding: 80px 0 90px;
  background: #f5efe6;
  overflow: hidden;
}

.int-gallery::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 68%;
  height: 340px;
  background: #33302C; /* deep warm charcoal */
  z-index: 0;
}

.int-gallery::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 75%;
  background: var(--gn-orange);
  z-index: 0;
}

.int-gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.int-gallery-header {
  width: 55%;
  padding: 36px 40px 12px;
  color: #ffffff;
}
.int-gallery-header h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* SLIDER */
.int-gallery-slider-wrap {
  margin-top: -30px;
}
.int-gallery-swiper {
  padding: 40px 0;
}
.int-gallery-slide {
  width: 320px !important;
  height: 420px !important;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  flex-shrink: 0;
}
.int-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* BOTTOM BAR */
.int-gallery-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.int-gallery-more {
  background: #ffffff;
  padding: 12px 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #22231F;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  transition: background 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.15s ease;
}
.int-gallery-more:hover {
  background: var(--gn-teal);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(192,91,60,0.4);
  transform: translateY(-1px);
}

.int-gallery-arrows {
  display: flex;
  gap: 14px;
}
.int-gallery-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111827;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  transition: background 0.2s ease,
              color 0.2s ease,
              transform 0.15s ease,
              box-shadow 0.2s ease;
}
.int-gallery-arrow:hover {
  background: var(--gn-teal);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(192,91,60,0.4);
}

/* Gallery responsive */
@media (max-width: 1024px) {
  .int-gallery::before {
    width: 100%;
    height: 320px;
  }
  .int-gallery::after {
    width: 55%;
    height: 55%;
  }
  .int-gallery-header {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .int-gallery {
    padding: 60px 0 70px;
  }
  .int-gallery-header h2 {
    font-size: 30px;
  }
  .int-gallery-slide {
    width: 260px !important;
    height: 340px !important;
  }
  .int-gallery-bottom {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .int-gallery::before {
    top: 30px;
    height: 280px;
  }
  .int-gallery::after {
    width: 70%;
    height: 45%;
  }
  .int-gallery-header {
    padding: 24px 18px 10px;
  }
  .int-gallery-header h2 {
    font-size: 26px;
  }
  .int-gallery-slide {
    width: 220px !important;
    height: 290px !important;
  }
  .int-gallery-more {
    width: 80%;
    text-align: center;
  }
}

/* Ensure gallery bg layers are behind content */
.int-gallery {
  position: relative;
  z-index: 1;
}
.int-gallery::before,
.int-gallery::after {
  z-index: -1;
}

/* =====================================================
   ABOUT US
   ===================================================== */

.int-about {
  padding: 90px 0 110px;
  background: #f5efe6;
}
.int-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* LEFT */
.int-about-left {
  position: relative;
}
.int-about-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(43, 38, 34, 0.6);
  margin-bottom: 12px;
}
.int-about-heading {
  font-size: 34px;
  line-height: 1.25;
  color: var(--gn-text-main);
  margin: 0 0 18px;
}
.int-about-heading span {
  color: var(--gn-teal);
}
.int-about-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gn-text-muted);
  max-width: 540px;
  margin-bottom: 20px;
}
.int-about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.int-about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gn-text-muted);
}
.int-about-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gn-teal), var(--gn-orange));
  margin-top: 4px;
  flex-shrink: 0;
}
.int-about-signoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
}
.int-about-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(43, 38, 34, 0.55);
}
.int-about-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gn-text-main);
}
.int-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(43, 38, 34, 0.18);
  font-size: 13px;
  font-weight: 500;
  color: var(--gn-teal);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(43, 38, 34, 0.08);
  transition: background 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.15s ease;
}
.int-about-cta:hover {
  background: var(--gn-teal);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(192, 91, 60, 0.35);
  transform: translateY(-1px);
}

/* RIGHT */
.int-about-right {
  position: relative;
}
.int-about-photo-card {
  position: relative;
  border-radius: 26px;
  padding: 14px;
  background: linear-gradient(145deg, #fff8ef, #e5d5c5);
  box-shadow: 0 22px 60px rgba(43, 38, 34, 0.22);
  overflow: visible;
}
.int-about-photo-main {
  border-radius: 20px;
  height: 320px;
  overflow: hidden;
}
.int-about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.int-about-photo-float {
  position: absolute;
  right: -30px;
  bottom: 18px;
  width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(43, 38, 34, 0.96);
  color: #e5e7eb;
  box-shadow: 0 18px 46px rgba(43, 38, 34, 0.55);
}
.int-about-float-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gn-orange);
  margin-bottom: 4px;
}
.int-about-float-text {
  font-size: 13px;
  line-height: 1.6;
}

/* Stats */
.int-about-stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.int-about-stat {
  flex: 1 1 30%;
  min-width: 120px;
}
.int-about-stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--gn-text-main);
}
.int-about-stat-number::after {
  content: "+";
  margin-left: 2px;
  font-size: 18px;
  color: var(--gn-teal);
}
.int-about-stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(43, 38, 34, 0.6);
  margin-top: 4px;
}

/* About responsive */
@media (max-width: 992px) {
  .int-about-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .int-about-right {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .int-about {
    padding: 70px 0 80px;
  }
  .int-about-heading {
    font-size: 26px;
  }
  .int-about-photo-main {
    height: 260px;
  }
  .int-about-photo-float {
    right: 10px;
    bottom: 10px;
    width: 190px;
  }
  .int-about-signoff {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .int-about-inner {
      margin-top:75px;
    padding: 0 16px;
  }
  .int-about-heading {
    font-size: 24px;
  }
  .int-about-photo-main {
    height: 220px;
  }
  .int-about-photo-float {
    position: static;
    margin-top: 14px;
  }
}

/* =====================================================
   OUR SERVICES – BOUNCING BALLS
   ===================================================== */

.int-services-balls {
  padding: 70px 0 80px;
  background: #f7f1e7;
}
.int-services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.int-services-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}
.int-services-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}
.int-services-title {
  font-size: 28px;
  line-height: 1.25;
  color: #28322c;
  font-weight: 600;
  margin-bottom: 10px;
}
.int-services-title span {
  color: var(--gn-teal);
}
.int-services-sub {
  font-size: 14px;
  color: #5b625f;
}

/* balls grid */
.int-balls-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 30px;   /* horizontal spacing (same as before) */
  row-gap: 60px;      /* EXTRA vertical space for bounce */
  justify-items: center;
}

.int-ball {
  text-align: center;
  position: relative;
}

/* Bigger balls */
.int-ball-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #f0d7b4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(190, 151, 102, 0.45);
  overflow: hidden;
}
.int-ball-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.int-ball-label {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #27322d;
}



/* services responsive */
@media (max-width: 1024px) {
  .int-balls-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
  .int-ball-circle {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .int-services-balls {
    padding: 46px 0 54px;
  }
  .int-services-inner {
    padding-inline: 16px;
  }
  .int-services-title {
    font-size: 22px;
  }
  .int-balls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .int-ball-circle {
    width: 130px;
    height: 130px;
  }
  .int-ball-label {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .int-balls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .int-ball-circle {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1024px) {
  .int-balls-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 54px;
  }
}

@media (max-width: 768px) {
  .int-balls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 46px;
  }
}

@media (max-width: 480px) {
  .int-balls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 40px;
  }
}
/* ✅ MOBILE ANTI-COLLISION FIX (put this at the END) */
@media (max-width: 768px){

  /* more vertical gap between rows */
  .int-balls-grid{
    row-gap: 8px !important;    /* increase more if bounce is high */
  }

  /* add extra bottom space inside each item (so it has room to bounce down) */
  .int-ball{
    padding-bottom: 55px;        /* safety buffer */
  }

  /* keep label from getting too close */
  .int-ball-label{
    margin-top: 16px;
  }
}

@media (max-width: 480px){
  .int-balls-grid{
    row-gap: 35px !important;
  }
  .int-ball{
    padding-bottom: 65px;
  }
}

/* =====================================================
   WORK PROCESS – CIRCLE STEPS
   ===================================================== */

.wp-process {
  padding: 70px 0 80px;
  background: #ffffff;
}
.wp-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.wp-process-tag {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gn-orange);
  margin-bottom: 10px;
}
.wp-process-title {
  font-size: 36px;
  line-height: 1.2;
  color: #2d2a27;
  font-weight: 700;
  margin-bottom: 50px;
}
.wp-process-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}

/* Step circles */
.wp-step {
  flex: 0 0 auto;
  text-align: center;
}
.wp-step-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e4e0d7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}
.wp-step-circle img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.wp-step-text {
  font-size: 15px;
  color: #4c4a46;
  line-height: 1.5;
  max-width: 210px;
  margin: 0 auto;
}

/* Arrows between steps */
.wp-step-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-step-arrow span {
  position: relative;
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gn-orange);
}
.wp-step-arrow span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gn-orange);
  border-right: 2px solid var(--gn-orange);
}

/* process responsive */
@media (max-width: 992px) {
  .wp-process-title {
    font-size: 28px;
  }
  .wp-step-circle {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  .wp-process {
    padding: 50px 0 60px;
  }
  .wp-process-row {
    flex-direction: column;
    gap: 24px;
  }
  .wp-step-arrow span {
    width: 40px;
    transform: rotate(90deg);
  }
}

/* =====================================================
   FAQ
   ===================================================== */

.int-faq {
  padding: 72px 0 80px;
  background: #f7f1e7;
}
.int-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: flex-start;
}
.int-faq-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 8px;
}
.int-faq-title {
  font-size: 28px;
  line-height: 1.3;
  color: #28322c;
  font-weight: 600;
  margin-bottom: 10px;
}
.int-faq-title span {
  color: var(--gn-teal);
}
.int-faq-intro {
  font-size: 14px;
  color: #5b625f;
  margin-bottom: 18px;
}
.int-faq-highlight {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(192,91,60,0.07);
  border: 1px solid rgba(192,91,60,0.22);
  max-width: 360px;
}
.int-faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gn-teal);
  color: #fefcf7;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

/* Accordion list */
.int-faq-list {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 22px 50px rgba(15,23,42,0.15);
}
.int-faq-item + .int-faq-item {
  border-top: 1px solid #e5e0d5;
}
.int-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 4px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.int-faq-question span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #28322c;
}
.int-faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid var(--gn-teal);
  position: relative;
  flex: 0 0 auto;
}
.int-faq-icon::before,
.int-faq-icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: var(--gn-teal);
  transform: translate(-50%, -50%);
}
.int-faq-icon::before {
  width: 10px;
  height: 2px;
}
.int-faq-icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.18s ease;
}

/* Answer body */
.int-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0 4px 0;
}
.int-faq-answer p {
  font-size: 13px;
  color: #5b625f;
  padding: 0 0 12px;
}

/* Open state */
.int-faq-item.is-open .int-faq-answer {
  max-height: 200px;
  opacity: 1;
}
.int-faq-item.is-open .int-faq-icon::after {
  opacity: 0;
}

/* FAQ responsive */
@media (max-width: 900px) {
  .int-faq-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .int-faq-highlight {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .int-faq {
    padding: 52px 0 60px;
  }
  .int-faq-inner {
    padding-inline: 16px;
  }
  .int-faq-title {
    font-size: 22px;
  }
  .int-faq-list {
    padding: 14px 14px;
  }
}



/* =====================================================
   PREMIUM TESTIMONIALS (SCOPED) — WILL NOT AFFECT HEADER
   ===================================================== */

/* Safe container only inside testimonials */
.lux-testimonials .container-wide{
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}

/* Section */
.lux-testimonials{
  background:#fbf7f1;            /* your theme bg */
  padding:80px 0 86px;
  overflow:hidden;
}

/* Head */
.lux-test-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 28px;
}
.lux-test-tag{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#A17442;
  margin:0 0 8px;
}
.lux-test-title{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.25;
  color:#1f2933;
  font-weight:700;
}
.lux-test-title span{ color:#0C7466; }
.lux-test-sub{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:#6b7280;
}

/* Outer card */
.lux-test-card{
  position:relative;
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(161,116,66,0.18);
  box-shadow:0 26px 70px rgba(148,119,82,0.20);
  padding:22px 18px 18px;
  overflow:hidden;
}

/* Soft glow */
.lux-test-card::before{
  content:"";
  position:absolute;
  inset:-140px auto auto -140px;
  width:360px;
  height:360px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(12,116,102,0.12), transparent 65%);
  pointer-events:none;
}
.lux-test-card::after{
  content:"";
  position:absolute;
  inset:auto -160px -160px auto;
  width:420px;
  height:420px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(161,116,66,0.14), transparent 65%);
  pointer-events:none;
}

/* Swiper base (do NOT override slide width) */
.lux-testimonials .lux-test-swiper{
  position:relative;
  z-index:1;
  width:100%;
  overflow:hidden;
  touch-action:pan-y; /* allow swipe on mobile */
}
.lux-testimonials .lux-test-swiper .swiper-wrapper{
  align-items:stretch;
}
.lux-testimonials .lux-test-swiper .swiper-slide{
  height:auto;
  display:flex; /* equal height */
}

/* Slide card */
.lux-testimonials .lux-test-item{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  background:#fbfaf8;
  border:1px solid rgba(31,41,51,0.06);
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow:0 16px 42px rgba(148,119,82,0.12);
  min-height:240px; /* equal feel on desktop */
  box-sizing:border-box;
}
.lux-testimonials .lux-test-item:hover{
  background:#fff;
  box-shadow:0 22px 60px rgba(148,119,82,0.16);
}

/* Top row */
.lux-testimonials .lux-test-top{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Avatar + fallback (WhatsApp-like) */
.lux-testimonials .lux-avatar{
  width:58px;
  height:58px;
  border-radius:999px;
  flex:0 0 auto;
  background:linear-gradient(180deg, #f7f3ed, #fbfaf8);
  border:1px solid rgba(148,119,82,0.18);
  box-shadow:0 12px 26px rgba(148,119,82,0.14);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.lux-testimonials .lux-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lux-testimonials .lux-avatar.is-fallback::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 35% 30%, rgba(12,116,102,0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(161,116,66,0.20), transparent 55%),
    linear-gradient(180deg, #f7f3ed, #fff);
}
.lux-testimonials .lux-avatar.is-fallback::after{
  content: attr(data-initials);
  position:absolute;
  font-weight:800;
  font-size:16px;
  letter-spacing:.06em;
  color:#0C7466;
}

/* Name/meta */
.lux-testimonials .lux-test-user{ min-width:0; }
.lux-testimonials .lux-test-name{
  margin:0;
  font-size:15px;
  font-weight:800;
  color:#111827;
}
.lux-testimonials .lux-test-meta{
  margin:2px 0 6px;
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Stars */
.lux-testimonials .lux-stars{
  display:flex;
  gap:4px;
  color:#F59E0B;
  font-size:14px;
  line-height:1;
}

/* Quote mark */
.lux-testimonials .lux-quote{
  margin-left:auto;
  font-size:44px;
  line-height:1;
  color:rgba(161,116,66,0.22);
  font-weight:900;
}

/* Text */
.lux-testimonials .lux-test-text{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#374151;
}

/* Pagination bullets */
.lux-testimonials .lux-test-pagination{
  margin-top:14px;
  text-align:center;
  position:relative;
  z-index:1;
}
.lux-testimonials .swiper-pagination-bullet{
  width:7px;
  height:7px;
  background:rgba(148,163,184,0.75);
  opacity:1;
}
.lux-testimonials .swiper-pagination-bullet-active{
  background:#0C7466;
}

/* Controls */
.lux-testimonials .lux-test-controls{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.lux-testimonials .lux-test-prev,
.lux-testimonials .lux-test-next{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(192,91,60,0.35);
  background:#fffaf3;
  color:#0C7466;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.lux-testimonials .lux-test-prev:hover,
.lux-testimonials .lux-test-next:hover{
  background:#0C7466;
  color:#FEFCE8;
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(12,116,102,0.22);
}

/* Desktop spacing */
@media (min-width: 992px){
  .lux-test-card{ padding:26px 22px 20px; }
}

/* Mobile safe */
@media (max-width: 768px){
  .lux-testimonials{ padding:68px 0 74px; }
  .lux-test-title{ font-size:24px; }
  .lux-test-card{ padding:16px 14px 14px; border-radius:22px; }
  .lux-test-item{ min-height:auto; }
  .lux-quote{ font-size:40px; }
}

/* =====================================================
   PROJECT SECTION
   ===================================================== */

.int-project {
  background: #f7f1e7;
  padding: 70px 0 80px;
}
.int-project-hero {
  width: 100%;
}
.int-project-hero-inner {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.int-project-hero-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
}

/* Label chip */
.int-project-label {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(43, 38, 34, 0.85);
  color: #fefce8;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 250, 252, 0.5);
}

/* Details card */
.int-project-details-wrap {
  max-width: 1120px;
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.int-project-details {
  background: #fefbf6;
  border-radius: 24px;
  padding: 28px 26px 24px;
  box-shadow: 0 22px 55px rgba(148, 119, 82, 0.23);
}
.int-project-heading {
  margin-bottom: 20px;
}
.int-project-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gn-orange);
  margin-bottom: 6px;
}
.int-project-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}
.int-project-title span {
  color: var(--gn-teal);
}
.int-project-intro {
  font-size: 14px;
  color: #4b5563;
}

/* meta grid */
.int-project-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 20px;
}
.int-project-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 4px;
}
.int-project-meta-value {
  font-size: 13px;
  color: #111827;
  font-weight: 500;
}

/* bottom row */
.int-project-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}
.int-project-highlight {
  flex: 1.4;
}
.int-project-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(192,91,60,0.10);
  color: var(--gn-teal);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.int-project-highlight ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.int-project-highlight li {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}
.int-project-highlight li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gn-orange);
  position: absolute;
  left: 0;
  top: 7px;
}

/* CTA */
.int-project-cta {
  flex: 0 0 auto;
  align-self: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gn-teal);
  color: #fefce8;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(192,91,60,0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  white-space: nowrap;
}
.int-project-cta:hover {
  background: var(--gn-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(192,91,60,0.45);
}

/* project responsive */
@media (max-width: 992px) {
  .int-project-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .int-project {
    padding: 56px 0 64px;
  }
  .int-project-details-wrap {
    margin-top: -26px;
    padding-inline: 16px;
  }
  .int-project-details {
    padding: 22px 18px 18px;
  }
  .int-project-title {
    font-size: 22px;
  }
  .int-project-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .int-project-cta {
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .int-project-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
  
/* =====================================================
   HEADER / MENU VISIBILITY FIX
   ===================================================== */

/* Ensure header above hero */
header,
.site-header,
.int-header {
  position: relative;
  z-index: 2000;
}

/* Desktop nav */
@media (min-width: 992px) {
  .gn-nav-list {
    display: flex !important;
    align-items: center;
    gap: 24px;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static;
    transform: none !important;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .gn-nav-toggle {
    display: none !important;
  }
  .gn-nav-list a {
    color: #2b342f;
    font-weight: 500;
    text-decoration: none;
  }
}

/* Mobile nav overlay */
@media (max-width: 991px) {
  .gn-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .gn-nav-list {
    position: fixed;
    inset-inline: 16px;
    top: 80px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 1999;
  }
  .gn-nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .gn-nav-list a {
    color: #2b342f;
  }
}

/* Desktop generic header ul alignment */
@media (min-width: 992px) {
  header {
    position: relative;
    z-index: 5000;
  }
  header nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding: 0;
    margin: 0;
  }
  header nav ul li {
    list-style: none;
    display: inline-block !important;
  }
  header nav ul li a {
    color: #2b342f;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
  }
  .tp-header-5-menu-bar,
  .gn-nav-toggle {
    display: none !important;
  }
}

/* Mobile header tightening */
@media (max-width: 768px) {
  .gn-header-inner {
    gap: 10px;
  }
  .gn-logo-title {
    font-size: 16px;
  }
  .gn-logo-sub {
    font-size: 10px;
  }
  .gn-header-cta {
    gap: 6px;
  }
  .gn-header-cta .gn-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  .gn-header-cta .gn-btn-outline {
    display: none;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .gn-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 10px;
  }
  .gn-logo-title {
    font-size: 14px;
  }
  .gn-nav-list {
    inset-inline: 12px;
    top: 64px;
  }
  .gn-footer-inner {
    padding-inline: 14px;
  }
  .gn-social a {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}
/* =========================
   OUR WORKS – 3D SLIDER
   ========================= */

/* =========================
   OUR WORKS – 3D SLIDER
   (USING ORIGINAL THEME COLORS)
   ========================= */

.int-works {
  padding: 80px 0 90px;
  background: var(--gn-body-bg);          /* warm beige */
}

.int-works-inner {
  position: relative;
}

.int-works-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.int-works-tag {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gn-orange);                /* soft terracotta accent */
  margin-bottom: 8px;
}

.int-works-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gn-text-main);
  margin-bottom: 8px;
}

.int-works-title span {
  color: var(--gn-teal);                  /* teal accent */
}

.int-works-sub {
  font-size: 14px;
  color: var(--gn-text-muted);
}

/* slider wrap */
.int-works-slider-wrap {
  position: relative;
}

/* card & image */
.int-works-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gn-card-bg);
  box-shadow: 0 22px 60px rgba(148, 119, 82, 0.28); /* warm shadow */
  transform-origin: center;
}

.int-works-img {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* warm glow on top of image */
.int-works-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 165, 107, 0.35), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.12), transparent 30%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* overlay text */
.int-works-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 16px 18px 18px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88),
    rgba(15, 23, 42, 0.05)
  );
}

.int-works-overlay h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: #fefcf7;
}

.int-works-overlay p {
  font-size: 13px;
  margin: 0 0 2px;
  color: var(--gn-orange);               /* subtle orange line */
}

.int-works-overlay span {
  font-size: 12px;
  color: #e5e7eb;
}

/* hover tilt + zoom */
.int-works-card:hover .int-works-img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

/* controls */
.int-works-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.int-works-pagination {
  flex: 1;
}

.int-works-arrows {
  display: flex;
  gap: 8px;
}

.int-works-prev,
.int-works-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(12, 116, 102, 0.55); /* teal border */
  background: #fff;
  color: var(--gn-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 14px 34px rgba(148, 119, 82, 0.35);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.int-works-prev:hover,
.int-works-next:hover {
  background: var(--gn-teal);
  color: #fefcf7;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(12, 116, 102, 0.45);
}

/* Swiper bullets */
.int-works .swiper-pagination-bullet {
  background: rgba(148, 163, 184, 0.7);
  opacity: 1;
}
.int-works .swiper-pagination-bullet-active {
  background: var(--gn-teal);
}

/* responsive */
@media (max-width: 1024px) {
  .int-works-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .int-works {
    padding: 60px 0 70px;
  }
  .int-works-inner {
    padding-inline: 16px;
  }
  .int-works-title {
    font-size: 24px;
  }
  .int-works-img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .int-works-img {
    height: 230px;
  }
}

/* ===================== ABOUT PAGE BASE ===================== */

.about-main {
  background: var(--gn-body-bg, #F7F3ED);
}

/* ========== HERO ========== */

.about-hero {
  padding: 80px 0 90px;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245,165,107,0.25), transparent 50%);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Left */

.about-hero-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(107,114,128,0.9);
  margin-bottom: 10px;
}

.about-hero-title {
  font-size: 38px;
  line-height: 1.18;
  color: #1f2933;
  margin: 0 0 14px;
}

.about-hero-title span {
  color: #0C7466;
}

.about-hero-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 18px;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.about-hero-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid rgba(229,216,199,0.9);
  color: #374151;
}

.about-hero-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-num-block {
  min-width: 90px;
}

.about-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1f2933;
}

.about-num-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-top: 2px;
}

/* Right – animated image collage */

.about-hero-right {
  position: relative;
  min-height: 320px;
}

.about-photo-main {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15,23,42,0.25);
  transform-origin: center;
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-photo-floating {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,23,42,0.35);
}

.about-photo-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small 1 - top right */
.about-photo-small-1 {
  width: 160px;
  height: 200px;
  right: -20px;
  top: 18%;
}

/* small 2 - bottom left */
.about-photo-small-2 {
  width: 150px;
  height: 180px;
  left: -22px;
  bottom: -18px;
}

/* Floating chip */

.about-floating-chip {
  position: absolute;
  left: 18px;
  top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12,116,102,0.92);
  color: #FEFCE8;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #F5A56B;
}

/* ========== STORY SECTION (PHILOSOPHY) ========== */

.about-story {
  padding: 40px 0 80px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.about-story-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A17442;
  margin-bottom: 8px;
}

.about-story-title {
  font-size: 26px;
  line-height: 1.4;
  color: #1f2933;
  margin: 0;
}

.about-story-right p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

.about-story-points {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-story-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0C7466, #F5A56B);
  margin-top: 5px;
}

/* ========== TEAM SECTION ========== */
/* ===============================
   TEAM SECTION – MINIMAL SLIDER
   =============================== */

.about-team {
  padding: 70px 0 80px;
  background: #fbf7f1;
}

.about-team-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.about-team-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A17442;
  margin-bottom: 8px;
}

.about-team-title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1f2933;
}

.about-team-title span {
  color: #0C7466;
}

.about-team-sub {
  font-size: 14px;
  color: #6b7280;
}

/* Swiper spacing */
.about-team-swiper {
  padding: 10px 0 20px;
}

/* Slide */
.about-team-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* Image (shorter height) */
.about-team-img {
  width: 100%;
  height: 180px;   /* 👈 smaller height */
  border-radius: 20px;
  overflow: hidden;
  background: #f3efe9;
  box-shadow: 0 16px 36px rgba(148,119,82,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover effect */
.about-team-slide:hover .about-team-img {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(148,119,82,0.28);
}

/* Text */
.about-team-text {
  margin-top: 4px;
}

.about-team-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.about-team-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 2px;
}

/* Controls */
.about-team-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-team-prev,
.about-team-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148,119,82,0.5);
  background: #fffaf3;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.15s ease;
}

.about-team-prev:hover,
.about-team-next:hover {
  background: #0C7466;
  color: #FEFCE8;
  box-shadow: 0 14px 30px rgba(12,116,102,0.4);
  transform: translateY(-1px);
}

/* Pagination */
.about-team-pagination .swiper-pagination-bullet {
  background: rgba(12,116,102,0.35);
  opacity: 1;
}

.about-team-pagination .swiper-pagination-bullet-active {
  background: #0C7466;
}

/* Responsive */
@media (max-width: 768px) {
  .about-team-img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .about-team-title {
    font-size: 24px;
  }
  .about-team-img {
    height: 150px;
  }
}

/* ========== TESTIMONIALS ========== */

.about-testimonials {
  padding: 78px 0 88px;
  background: #F7F3ED;
}

.about-test-inner {
  max-width: 960px;
  margin: 0 auto;
}

.about-test-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 32px;
}

.about-test-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A17442;
  margin-bottom: 8px;
}

.about-test-title {
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #1f2933;
}

.about-test-title span {
  color: #0C7466;
}

.about-test-sub {
  font-size: 14px;
  color: #6b7280;
}

/* slider */

.about-test-slider-wrap {
  margin-top: 10px;
}

.about-test-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 22px 18px;
  box-shadow: 0 20px 50px rgba(148,119,82,0.25);
}

.about-test-quote-mark {
  font-size: 44px;
  line-height: 1;
  color: #F5A56B;
  margin-bottom: 12px;
}

.about-test-text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 14px;
}

.about-test-meta {
  border-top: 1px solid rgba(148,119,82,0.3);
  padding-top: 8px;
}

.about-test-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.about-test-info {
  font-size: 12px;
  color: #6b7280;
}

/* controls */

.about-test-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-test-prev,
.about-test-next {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(12,116,102,0.6);
  background: #FEF9C3;
  color: #0C7466;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.15s ease;
}

.about-test-prev:hover,
.about-test-next:hover {
  background: #0C7466;
  color: #FEFCE8;
  box-shadow: 0 14px 30px rgba(12,116,102,0.4);
  transform: translateY(-1px);
}

.about-test-pagination {
  flex: 0 0 auto;
}

/* swiper bullets (optional) */
.about-testimonials .swiper-pagination-bullet {
  background: rgba(148,163,184,0.9);
  opacity: 1;
}
.about-testimonials .swiper-pagination-bullet-active {
  background: #0C7466;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
  .about-hero-right {
    order: -1;
    max-width: 460px;
    margin: 0 auto 16px;
  }
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 70px;
  }
  .about-hero-title {
    font-size: 30px;
  }
  .about-hero-numbers {
    gap: 14px;
  }

  .about-team {
    padding: 56px 0 64px;
  }
  .about-team-card {
    max-width: 260px;
  }

  .about-testimonials {
    padding: 60px 0 70px;
  }
  .about-test-card {
    padding: 18px 16px 16px;
  }
}

@media (max-width: 600px) {
  .about-hero-inner,
  .about-story-inner,
  .about-team-inner,
  .about-test-inner {
    padding-inline: 16px;
  }
  .about-photo-small-1 {
    width: 130px;
    height: 160px;
    right: -10px;
  }
  .about-photo-small-2 {
    width: 120px;
    height: 140px;
    left: -8px;
  }
}
/* ================================
   ABOUT PAGE – MOBILE FIXES ONLY
   ================================ */

/* ---------- Large phones & small tablets (≤ 768px) ---------- */
@media (max-width: 768px) {

  /* General container padding */
  .about-hero-inner,
  .about-story-inner,
  .about-team-inner,
  .about-test-inner {
    padding-inline: 16px;
  }

  /* ===== HERO ===== */
  .about-hero {
    padding: 56px 0 60px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;   /* stack */
    gap: 24px;
  }

  /* Show image first on mobile */
  .about-hero-right {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Make main photo adapt nicely */
  .about-photo-main {
    height: auto;
  }

  .about-photo-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Smaller floating images so they don’t overflow */
  .about-photo-small-1 {
    width: 130px;
    height: 160px;
    right: -6px;
    top: 18%;
  }

  .about-photo-small-2 {
    width: 120px;
    height: 140px;
    left: -4px;
    bottom: -8px;
  }

  .about-hero-title {
    font-size: 28px;
  }

  .about-hero-lead {
    font-size: 14px;
  }

  .about-hero-numbers {
    gap: 14px;
  }

  .about-num {
    font-size: 22px;
  }

  /* ===== STORY SECTION ===== */
  .about-story {
    padding: 36px 0 64px;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-story-title {
    font-size: 22px;
  }

  .about-story-right p {
    font-size: 14px;
  }

  /* ===== TEAM SECTION ===== */
  .about-team {
    padding: 52px 0 60px;
  }

  .about-team-title {
    font-size: 23px;
  }

  .about-team-swiper {
    padding: 12px 2px 22px;
  }

  /* Ensure cards don’t stretch too wide */
  .about-team-card {
    max-width: 260px;
    width: 100%;
  }

  .about-team-photo {
    height: 210px;
  }

  .about-team-controls {
    gap: 10px;
  }

  /* ===== TESTIMONIALS ===== */
  .about-testimonials {
    padding: 56px 0 64px;
  }

  .about-test-title {
    font-size: 23px;
  }

  .about-test-card {
    padding: 18px 16px 16px;
  }
}

/* ---------- Small phones (≤ 480px) ---------- */
@media (max-width: 480px) {

  .about-hero {
    padding: 46px 0 52px;
  }

  .about-hero-title {
    font-size: 24px;
  }

  .about-hero-tags {
    gap: 6px;
  }

  .about-hero-pill {
    font-size: 10px;
    padding: 5px 10px;
  }

  /* Float images even smaller so they don’t go out of screen */
  .about-photo-small-1 {
    width: 110px;
    height: 140px;
    right: -4px;
  }

  .about-photo-small-2 {
    width: 105px;
    height: 125px;
    left: -2px;
  }

  /* Team slider – one card in center */
  .about-team-card {
    max-width: 240px;
    margin: 0 auto;
  }

  .about-test-inner {
    padding-inline: 14px;
  }

  .about-test-card {
    border-radius: 16px;
  }
}
/* ============================
   OUR TEAM + TESTIMONIALS – MOBILE SLIDES
   ============================ */

/* Center slide content inside Swiper */
.about-team-swiper .swiper-slide,
.about-test-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* On mobile: one card in middle, proper width */
@media (max-width: 768px) {

  .about-team-swiper .swiper-slide,
  .about-test-swiper .swiper-slide {
    width: 100% !important;     /* full width slide */
  }

  .about-team-card,
  .about-test-card {
    max-width: 320px;           /* nice readable width */
    width: 100%;
    margin: 0 auto;             /* center card */
  }
}

@media (max-width: 480px) {

  .about-team-card,
  .about-test-card {
    max-width: 280px;
  }
}
/* =========== BASIC PAGE WRAPPER =========== */
.srv-page {
  background: #f7f3ed;
  color: #1f2933;
}

.srv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========== SECTION 1 – HERO ABOUT SERVICES =========== */

.srv-hero {
  padding: 80px 0 90px;
}

.srv-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

/* LEFT TEXT */
.srv-hero-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 10px;
}

.srv-hero-title {
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.srv-hero-title span {
  color: #0f766e;
}

.srv-hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 18px;
}

.srv-hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-hero-point {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}

.srv-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #f5a56b);
  margin-top: 5px;
  flex-shrink: 0;
}

/* RIGHT VISUALS */
.srv-hero-right {
  position: relative;
  min-height: 320px;
}

.srv-hero-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.28);
}
.srv-hero-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* floating description card */
.srv-hero-floating-card {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 230px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.6);
}

.srv-hero-floating-title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 4px;
}

.srv-hero-floating-text {
  font-size: 13px;
  line-height: 1.6;
}

/* small extra photo */
.srv-hero-small-photo {
  position: absolute;
  left: -30px;
  top: 40px;
  width: 150px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.26);
}

.srv-hero-small-photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* =========== SECTION 2 – OUR SERVICES (CPT UI) =========== */

.srv-services {
  padding: 70px 0 80px;
  background: #fdf8f1;
}

.srv-services-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.srv-services-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-services-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
}
.srv-services-title span {
  color: #0f766e;
}
.srv-services-sub {
  font-size: 14px;
  color: #6b7280;
}

/* grid */
.srv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* card */
.srv-service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(148, 119, 82, 0.22);
  transform: translateY(40px);
  opacity: 0;
}

.srv-service-link {
  display: block;
  color: inherit;
}

/* image */
.srv-service-image {
  height: 210px;
  background-size: cover;
  background-position: center;
}

/* body */
.srv-service-body {
  padding: 18px 18px 16px;
}

.srv-service-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.srv-service-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.srv-service-cta {
  font-size: 13px;
  font-weight: 500;
  color: #0f766e;
}

/* empty state */
.srv-no-services {
  grid-column: 1/-1;
  text-align: center;
  color: #6b7280;
}

/* =========== SECTION 3 – FAQ =========== */

.srv-faq {
  padding: 76px 0 86px;
  background: #f7f3ed;
}

.srv-faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}

.srv-faq-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-faq-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
}
.srv-faq-title span {
  color: #0f766e;
}

.srv-faq-sub {
  font-size: 14px;
  color: #6b7280;
}

/* list */
.srv-faq-list {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  padding: 10px 20px 14px;
}

.srv-faq-item + .srv-faq-item {
  border-top: 1px solid #e5e0d5;
}

/* question row */
.srv-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.srv-faq-question span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #28322c;
}

/* plus / minus icon */
.srv-faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #0f766e;
  position: relative;
  flex: 0 0 auto;
}

.srv-faq-icon::before,
.srv-faq-icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: #0f766e;
  transform: translate(-50%, -50%);
}

.srv-faq-icon::before {
  width: 10px;
  height: 2px;
}

.srv-faq-icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.18s ease;
}

/* answer */
.srv-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.srv-faq-answer p {
  font-size: 13px;
  color: #5b625f;
  padding: 0 4px 14px;
}

/* open state */
.srv-faq-item.is-open .srv-faq-answer {
  max-height: 200px;
  opacity: 1;
}

.srv-faq-item.is-open .srv-faq-icon::after {
  opacity: 0;  /* turn plus into minus */
}

/* =========== RESPONSIVE =========== */

@media (max-width: 992px) {
  .srv-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .srv-hero {
    padding: 60px 0 66px;
  }

  .srv-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .srv-hero-left {
    text-align: left;
  }

  .srv-hero-title {
    font-size: 28px;
  }

  .srv-hero-sub {
    font-size: 14px;
  }

  .srv-hero-right {
    max-width: 420px;
    margin: 0 auto;
  }

  .srv-hero-main img {
    height: 260px;
  }

  .srv-hero-small-photo {
    left: 12px;
    top: 24px;
    width: 130px;
  }

  .srv-hero-floating-card {
    right: 10px;
    bottom: 12px;
    width: 200px;
  }

  .srv-services {
    padding: 60px 0 70px;
  }

  .srv-faq {
    padding: 60px 0 70px;
  }

  .srv-faq-list {
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .srv-container {
    padding-inline: 16px;
  }

  .srv-hero-title {
    font-size: 24px;
  }

  .srv-hero-main img {
    height: 220px;
  }

  .srv-hero-small-photo {
    position: static;
    margin-top: 10px;
  }

  .srv-hero-floating-card {
    position: static;
    margin-top: 12px;
  }
}
.srv-services {
  padding: 72px 0 84px;
  background: #f7f1e7;
}

.srv-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-services-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.srv-services-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-services-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #28322c;
  margin-bottom: 8px;
}

.srv-services-title span {
  color: #0f766e;
}

.srv-services-sub {
  font-size: 14px;
  color: #5b625f;
}

/* Grid of cards */
.srv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.srv-service-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fefcf7;
  border: 1px solid rgba(190, 151, 102, 0.28);
  box-shadow: 0 18px 40px rgba(148, 119, 82, 0.18);
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.srv-service-card.srv-in-view {
  transform: translateY(0);
  opacity: 1;
}

.srv-service-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

/* Image */
.srv-service-image {
  height: 190px;
  background-size: cover;
  background-position: center;
}

/* Body */
.srv-service-body {
  padding: 16px 16px 18px;
}

.srv-service-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.srv-service-text {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.srv-service-cta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f766e;
}

/* Hover */
.srv-service-card:hover {
  box-shadow: 0 22px 55px rgba(148, 119, 82, 0.28);
  border-color: #f97316;
}

/* Responsive */
@media (max-width: 992px) {
  .srv-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .srv-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ============= SINGLE SERVICE PAGE ============= */

.srv-single-hero {
  position: relative;
  min-height: 68vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: #111827;
}

.srv-single-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.srv-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
}

.srv-single-hero-content {
  position: relative;
  padding: 90px 20px 70px;
  color: #fefce8;
}

.srv-single-tag {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.srv-single-title {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.srv-single-sub {
  font-size: 15px;
  max-width: 520px;
  color: rgba(249,250,251,0.85);
  margin-bottom: 20px;
}

.srv-single-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.srv-hero-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,118,110,0.16);
  border: 1px solid rgba(248,250,252,0.26);
}

.srv-pill-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  opacity: 0.8;
}

.srv-pill-value {
  font-size: 13px;
  font-weight: 500;
}

/* ---- OVERVIEW ---- */

.srv-single-overview {
  padding: 64px 0 70px;
  background: #f7f1e7;
}

.srv-overview-grid {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 40px;
}

.srv-overview-title {
  font-size: 26px;
  margin: 0 0 10px;
  color: #1f2933;
}

.srv-overview-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 14px;
}

.srv-overview-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
  color: #4b5563;
}

.srv-overview-points li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.srv-overview-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f97316;
  position: absolute;
  left: 0;
  top: 7px;
}

.srv-highlight-card {
  background: #fefcf7;
  border-radius: 20px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(190,151,102,0.26);
  box-shadow: 0 18px 45px rgba(148,119,82,0.24);
}

.srv-highlight-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 14px;
}

.srv-highlight-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.srv-highlight-number {
  font-size: 26px;
  font-weight: 700;
  color: #0f766e;
  display: block;
}

.srv-highlight-label {
  font-size: 12px;
  color: #4b5563;
}

.srv-highlight-note {
  font-size: 13px;
  color: #4b5563;
}

/* ---- PROCESS ---- */

.srv-process {
  padding: 64px 0 72px;
  background: #ffffff;
}

.srv-process-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.srv-process-tag {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 8px;
}

.srv-process-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: #1f2933;
}

.srv-process-sub {
  font-size: 14px;
  color: #6b7280;
}

.srv-process-timeline {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
}

.srv-process-step {
  background: #fefcf7;
  border-radius: 20px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(229,216,199,0.9);
  box-shadow: 0 18px 40px rgba(148,119,82,0.16);
}

.srv-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.6);
  background: #0f766e;
  color: #fefce8;
  font-size: 13px;
  margin-bottom: 8px;
}

.srv-step-title {
  font-size: 15px;
  margin: 0 0 6px;
}

.srv-step-text {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.srv-step-duration {
  font-size: 12px;
  color: #a17a4a;
}

/* ---- PRICING ---- */

.srv-pricing {
  padding: 70px 0 80px;
  background: #f7f1e7;
}

.srv-pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.srv-pricing-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-pricing-title {
  font-size: 26px;
  margin-bottom: 8px;
}

.srv-pricing-sub {
  font-size: 14px;
  color: #5b625f;
}

.srv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.srv-price-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(229,216,199,0.9);
  box-shadow: 0 18px 40px rgba(148,119,82,0.16);
}

.srv-price-featured {
  border-color: #0f766e;
  box-shadow: 0 20px 48px rgba(15,118,110,0.32);
  position: relative;
}

.srv-feature-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0f766e;
  color: #fefce8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.srv-price-type {
  font-size: 16px;
  margin: 0 0 4px;
}

.srv-price-range {
  font-size: 18px;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 4px;
}

.srv-price-note {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.srv-price-list {
  font-size: 13px;
  color: #4b5563;
  padding-left: 18px;
  margin: 0 0 8px;
}

.srv-price-footnote {
  font-size: 11px;
  color: #9ca3af;
}

/* ---- VISUAL ---- */

.srv-visual {
  padding: 64px 0 72px;
  background: #ffffff;
}

.srv-visual-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 28px;
}

.srv-visual-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-visual-title {
  font-size: 26px;
}

.srv-visual-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.srv-visual-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
  background: #000;
}

.srv-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.srv-visual-item:hover img {
  transform: scale(1.06);
}

/* ---- PROJECTS ---- */

.srv-projects {
  padding: 70px 0 80px;
  background: #f7f1e7;
}

.srv-projects-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 30px;
}

.srv-projects-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a17a4a;
  margin-bottom: 6px;
}

.srv-projects-title {
  font-size: 26px;
}

.srv-projects-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.srv-project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(229,216,199,0.9);
  box-shadow: 0 18px 40px rgba(148,119,82,0.16);
}

.srv-project-img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.srv-project-body {
  padding: 14px 14px 16px;
}

.srv-project-name {
  font-size: 15px;
  margin: 0 0 4px;
}

.srv-project-meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.srv-project-text {
  font-size: 13px;
  color: #4b5563;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 992px) {
  .srv-overview-grid {
    grid-template-columns: 1fr;
  }
  .srv-process-timeline {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .srv-pricing-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .srv-visual-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .srv-projects-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 768px) {
  .srv-single-hero-content {
    padding: 70px 16px 40px;
  }
  .srv-single-title {
    font-size: 30px;
  }
  .srv-single-hero-meta {
    flex-direction: column;
  }

  .srv-overview-grid,
  .srv-process-timeline,
  .srv-pricing-grid,
  .srv-visual-grid,
  .srv-projects-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .srv-process-step,
  .srv-price-card,
  .srv-project-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .srv-single-title {
    font-size: 24px;
  }
}
/* =========================================================
   GLOBAL FONT SIZE BOOST (SMALL + PREMIUM LOOK)
   Add at the very bottom of your CSS file
   ========================================================= */

html {
  font-size: 17px; /* previously ~16px → now slightly bigger */
}

/* Generic text improvements */
body,
p,
li,
span {
  font-size: 1.03rem; /* +3% increase */
}

/* Headings */
h1, .gn-hero-heading, .about-hero-title, .srv-hero-title, .srv-single-title {
  font-size: 1.14em; /* +14% increased relative size */
}

h2, .int-blog-title, .srv-overview-title, .srv-process-title {
  font-size: 1.12em;
}

h3, h4 {
  font-size: 1.08em;
}

/* Buttons / Pills / Chips */
.gn-btn,
.int-blog-chip,
.srv-hero-pill,
.srv-service-cta,
.srv-pill-label {
  font-size: 0.92rem; /* +2px approx */
}

/* Navigation menu */
.gn-nav-list a {
  font-size: 0.95rem !important; /* more readable */
}

/* Section subtitles */
.int-test-sub,
.int-services-sub,
.about-test-sub,
.srv-faq-sub,
.srv-services-sub {
  font-size: 0.98rem;
}

/* Cards / Testimonials / Blog excerpts */
.int-blog-excerpt,
.int-test-text,
.about-test-text,
.srv-service-text,
.srv-overview-text {
  font-size: 1.04rem;
}

/* Small labels (UPPERCASE meta text) */
.gn-chip,
.int-blog-cat,
.int-project-meta-label,
.srv-price-note,
.srv-step-duration {
  font-size: 0.78rem;
}

/* Mobile font boost (make more readable on small screens) */
@media (max-width: 480px) {
  body {
    font-size: 1.06rem;
  }
  h1, .gn-hero-heading {
    font-size: 1.22em;
  }
  .gn-nav-list a {
    font-size: 1rem !important;
  }
}
/* ===============================
   FULL WIDTH PREMIUM CTA BAR
   =============================== */
.lux-cta-full{
  width:100%;
  background:
    linear-gradient(
      90deg,
      #fbf7f1 0%,
      #eef6f4 35%,
      #e6f3ef 65%,
      #fbf7f1 100%
    );
  padding:36px 0;
}

/* inner alignment */
.lux-cta-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* text */
.lux-cta-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.lux-cta-line1{
  margin:0;
  font-size:45px;
  font-weight:600;
  color:#1f2933;
}

.lux-cta-line2{
  margin:0;
  font-size:22px;
  font-weight:700;
  color:#0C7466;
}

.lux-cta-line2 span{
  color:#A17442;
  font-weight:800;
}

/* button */
.lux-cta-btn{
  border:none;
  border-radius:999px;
  padding:14px 22px;
  font-size:26px;
  font-weight:700;
  cursor:pointer;
  color:#ffffff;

  background:
    linear-gradient(
      90deg,
      #0C7466,
      #A17442
    );

  box-shadow:
    0 18px 40px rgba(12,116,102,0.35);

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.lux-cta-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 50px rgba(12,116,102,0.45);
  filter:brightness(1.05);
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width:768px){
  .lux-cta-inner{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }

  .lux-cta-btn{
    width:100%;
  }

  .lux-cta-line1{
    font-size:14px;
  }

  .lux-cta-line2{
    font-size:15px;
  }
}
/* ===============================
   FLOATING ICON CONTACT (LUXURY)
   =============================== */

.lux-float-icons{
  position:fixed;
  right:20px;
  bottom:226px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}

/* Icon button */
.lux-float-icon{
  width:52px;
  height:52px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,0.25);
  animation:lux-bounce 3.6s ease-in-out infinite;
  transition:transform .2s ease, box-shadow .2s ease;
}

.lux-float-icon:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 60px rgba(0,0,0,0.32);
}

/* WhatsApp */
.lux-wa{
  background:linear-gradient(135deg, #0C7466, #16a34a);
  animation-delay:0s;
}

/* Call */
.lux-call{
  background:linear-gradient(135deg, #A17442, #c89b63);
  animation-delay:1.6s;
}

/* Luxury subtle bounce */
@keyframes lux-bounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

/* Mobile tuning */
@media (max-width:768px){
  .lux-float-icons{
    right:14px;
    bottom:318px;
  }
  .lux-float-icon{
    width:48px;
    height:48px;
  }
}
