/* ============================================
   JEET BUILDING SERVICES — Master Stylesheet
   Brand: Sage Green | Cream | Gold | Charcoal
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --sage:        #6B7B69;
  --sage-light:  #8A9E87;
  --sage-dark:   #465446;
  --sage-pale:   #EFF3EE;
  --cream:       #F3EDE2;
  --cream-dark:  #E6DDCC;
  --gold:        #B8975A;
  --gold-light:  #D4B07A;
  --dark:        #1D2320;
  --dark-mid:    #3A3F38;
  --text:        #2C3229;
  --text-light:  #5A6357;
  --white:       #FFFFFF;
  --border:      rgba(107,123,105,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-pad: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 80px);
  --radius:      6px;
  --shadow:      0 4px 28px rgba(30,35,32,0.10);
  --shadow-lg:   0 12px 60px rgba(30,35,32,0.16);
  --transition:  0.3s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
p  { font-size: clamp(0.95rem, 1.3vw, 1.05rem); color: var(--text-light); }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 18px; }
.section-body  { max-width: 580px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: #a3833e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,90,0.35); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-2px); }
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* Arrow icon */
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 22px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: var(--white);
  padding: 14px clamp(20px, 5vw, 60px);
  box-shadow: 0 2px 20px rgba(30,35,32,0.10);
}
.navbar.dark-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(30,35,32,0.10);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 88px;
  width: auto;
  transition: height 0.3s;
  object-fit: contain;
}
.navbar.scrolled .logo img,
.navbar.dark-nav .logo img { height: 70px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a,
.navbar.dark-nav .nav-links a { color: var(--text); }
.nav-links .btn { padding: 10px 22px; font-size: 0.85rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span,
.navbar.dark-nav .hamburger span { background: var(--dark); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  gap: 30px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.8rem; font-family: var(--font-display); color: var(--white); font-weight: 600; }
.nav-mobile a:hover { color: var(--gold); }
.nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(29,35,32,0.92) 40%, rgba(29,35,32,0.6) 100%),
    url('https://images.unsplash.com/photo-1449844908441-8829872d2607?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--section-pad);
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,90,0.15);
  border: 1px solid rgba(184,151,90,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.72); max-width: 520px; font-size: 1.1rem; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  width: 100%;
  align-self: stretch;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat {
  padding: 36px 48px;
  text-align: center;
  background: rgba(20,26,22,0.65);
  backdrop-filter: blur(12px);
  position: relative;
  transition: background 0.3s;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.hero-stat:hover { background: rgba(20,26,22,0.82); }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-full { flex-direction: column; justify-content: space-between; align-items: stretch; }
.hero-full .hero-content { padding-bottom: 40px; max-width: 740px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--dark);
  padding: 140px clamp(20px, 6vw, 80px) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--dark) 60%);
  opacity: 0.85;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.4; }

/* === SECTIONS === */
.section { padding: var(--section-pad); }
.section-cream { background: var(--cream); }
.section-sage  { background: var(--sage-pale); }
.section-dark  { background: var(--dark); }

.container { max-width: 1180px; margin: 0 auto; }

/* === INTRO STRIP === */
.intro-strip {
  background: var(--sage);
  padding: 36px clamp(20px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  flex: 1;
  min-width: 200px;
}
.intro-strip-item svg { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.85; }
.intro-strip-item strong { display: block; font-size: 0.95rem; font-weight: 600; }
.intro-strip-item span  { font-size: 0.82rem; opacity: 0.75; }

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--sage); fill: none; stroke-width: 1.7; }
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p  { font-size: 0.92rem; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 10px; color: var(--gold); }
.service-link svg { width: 14px; height: 14px; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.why-image img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }
.why-image-badge {
  position: absolute;
  bottom: 28px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-image-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--dark); }
.why-image-badge span  { font-size: 0.82rem; color: var(--text-light); }
.why-image-badge svg   { width: 32px; height: 32px; fill: var(--gold); }

.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point { display: flex; gap: 18px; }
.why-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.why-point h4 { margin-bottom: 4px; }

/* === PORTFOLIO GRID === */
.portfolio-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 30px;
  flex-wrap: wrap;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 5; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { grid-column: span 4; }

.portfolio-item img,
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-placeholder {
  min-height: 240px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.82rem;
}
.portfolio-placeholder svg { width: 36px; height: 36px; stroke: var(--sage-light); }
.portfolio-item:hover img  { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,35,32,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content h4 { color: var(--white); font-size: 1.1rem; }
.portfolio-overlay-content span { font-size: 0.78rem; color: var(--gold-light); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.98rem; line-height: 1.75; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 600; }
.testimonial-author span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* === CTA BANNER === */
.cta-banner {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 64px clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}
.cta-banner h2 { max-width: 560px; }
.cta-banner p  { max-width: 480px; margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* === ABOUT SPLIT === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.value-item {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.value-item p  { font-size: 0.82rem; }

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--cream-dark);
  margin-bottom: 18px;
}
.team-card h4 { font-size: 1.05rem; }
.team-card span { font-size: 0.82rem; color: var(--gold); font-weight: 500; }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--border);
}
.process-step { padding: 0 20px; text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; }

/* === CONTACT FORM === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { position: sticky; top: 100px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); margin-top: 36px; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 1.8; }
.contact-detail strong { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-detail span { font-size: 0.95rem; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,123,105,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6357' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px clamp(20px, 6vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 46px; width: auto; margin-bottom: 18px; object-fit: contain; filter: brightness(1.2); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); }
.footer-socials a:hover svg { fill: var(--white); }

/* === FLOATING CTA === */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
  font-family: var(--font-body);
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn-call { background: var(--sage); color: var(--white); }
.float-btn-whatsapp { background: #25D366; color: var(--white); }
.float-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === ACCREDITATIONS === */
.accreds {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.accred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}
.accred-item svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* === UTILITY === */
.divider { width: 60px; height: 3px; background: var(--gold); margin: 20px 0 32px; border-radius: 2px; }
.divider-center { margin: 20px auto 32px; }
.tag-chip {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* =============================================
   RESPONSIVE — FULLY OPTIMISED FOR MOBILE
   ============================================= */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
  .why-grid, .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .portfolio-item:nth-child(1) { grid-column: span 12; }
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3) { grid-column: span 6; }
  .portfolio-item:nth-child(4),
  .portfolio-item:nth-child(5),
  .portfolio-item:nth-child(6) { grid-column: span 4; }
  .why-image-badge { left: 0; }
  .about-img-accent { display: none; }
  .contact-info { position: static; }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  /* Typography scale-down */
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.65rem, 6vw, 2.2rem); }
  p  { font-size: 0.97rem; }

  /* Section padding tighter on mobile */
  :root { --section-pad: 52px 20px; }

  /* NAVBAR — bigger logo on mobile */
  .navbar { padding: 14px 20px; }
  .logo img { height: 58px; }
  .navbar.scrolled .logo img,
  .navbar.dark-nav .logo img { height: 52px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* HERO — tighten up */
  .hero-content { padding: 120px 20px 32px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-content p   { font-size: 0.97rem; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }

  /* HERO BUTTONS — side by side, not stacked */
  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.85rem;
  }

  /* HERO STATS — compact on mobile, always 3 columns */
  .hero-stats { grid-template-columns: repeat(3, 1fr) !important; }
  .hero-stat { padding: 20px 8px; }
  .hero-stat strong { font-size: 1.9rem; margin-bottom: 4px; }
  .hero-stat span   { font-size: 0.68rem; letter-spacing: 0.05em; }

  /* INTRO STRIP — vertical stack */
  .intro-strip {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .intro-strip-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-width: 100%;
  }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { padding: 28px 24px; }

  /* WHY US — image shows first on mobile */
  .why-grid { display: flex; flex-direction: column-reverse; gap: 32px; }
  .why-image img { height: 280px; }
  .why-image-badge { bottom: 16px; left: 12px; padding: 14px 18px; }
  .why-image-badge strong { font-size: 1.5rem; }
  .why-points { gap: 20px; }

  /* PORTFOLIO */
  .portfolio-grid  { display: flex; flex-direction: column; gap: 12px; }
  .portfolio-item  { grid-column: span 12 !important; }
  .portfolio-intro { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card  { padding: 26px 22px; }

  /* CTA BANNER */
  .cta-banner { flex-direction: column; padding: 40px 24px; gap: 28px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* PROCESS */
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-num   { width: 52px; height: 52px; font-size: 1.2rem; }

  /* FORM */
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  /* VALUES */
  .values-grid { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 52px 20px 24px; }

  /* PAGE HERO */
  .page-hero { padding: 110px 20px 52px; }

  /* ACCREDITATIONS */
  .accreds { gap: 12px; }
  .accred-item { padding: 10px 16px; font-size: 0.78rem; }
}

/* --- Small phones: 480px --- */
@media (max-width: 480px) {
  /* Logo on smallest screens */
  .logo img { height: 52px; }

  /* Hero headings */
  .hero-content h1 { font-size: 2rem; }

  /* Hero buttons: stack only if very narrow */
  .hero-buttons .btn { min-width: 120px; font-size: 0.82rem; padding: 12px 14px; }

  /* Hero stats: keep 3 columns but smaller */
  .hero-stats { grid-template-columns: repeat(3,1fr) !important; }
  .hero-stat { padding: 14px 6px; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span   { font-size: 0.68rem; }

  /* Floating buttons — compact circles */
  .float-btn span    { display: none; }
  .float-btn         { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-btn svg     { width: 20px; height: 20px; }
  .float-cta         { bottom: 20px; right: 16px; gap: 8px; }

  /* Process: single column on tiny screens */
  .process-steps { grid-template-columns: 1fr; }
}
