/* =============================================
   ARCGEOMET ENTERPRISES - PROFESSIONAL WEBSITE
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #1a3a6b;
  --gold:       #c9912a;
  --gold-light: #f0a832;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --gray-100:   #f7f8fa;
  --gray-200:   #eef0f4;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --text-dark:  #0d1220;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;   /* root-level clip — prevents ANY element from causing h-scroll */
  max-width: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width:100%; display:block; }
a { text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
}
.section-sub.center { margin-inline: auto; text-align:center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b07d20;
  border-color: #b07d20;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,145,42,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.transparent {
  background: transparent;
  padding: 20px 0;
}
.header.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav a::after {
  content:'';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
}
.nav-cta:hover {
  background: #b07d20 !important;
}
.nav-cta::after { display:none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 6px;
  line-height: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?auto=format&fit=crop&w=1600&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,27,62,.88) 0%,
    rgba(13,27,62,.55) 60%,
    rgba(201,145,42,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,145,42,.18);
  border: 1px solid rgba(201,145,42,.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { color: var(--gold-light); font-size: .9em; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.2rem;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll::before {
  content:'';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}

/* Trust Bar */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-item strong { color: var(--white); }

/* ---------- SECTION PADDING ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin-inline: auto; }

/* Divider line under title */
.title-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}
.title-line.left { margin-left: 0; }

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,145,42,.12), rgba(240,168,50,.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: .9rem; color: var(--gray-500); }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

/* ---------- STATS / COUNTER ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .04em;
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .8;
}

/* ---------- WHY US / FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.feature-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-text p { font-size: .88rem; color: var(--gray-500); }

/* ---------- FOUNDER SECTION ---------- */
.founder-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .4;
}
.founder-img-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.founder-img-badge small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  opacity: .85;
  margin-top: 2px;
}
.founder-content .section-label { color: var(--gold-light); }
.founder-content .section-title { color: var(--white); }
.founder-content p { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.founder-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 14px; }
.testimonial-card p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.75;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.author-role { font-size: .78rem; color: var(--gray-500); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b07d20 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content:'';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=800&q=60') center/cover;
  opacity: .08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ---------- ABOUT PAGE ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 40px;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.expertise-tag {
  background: var(--gray-100);
  border-left: 3px solid var(--gold);
  padding: 8px 16px;
  border-radius: 0 6px 6px 0;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.value-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p { font-size: .87rem; color: var(--gray-500); }

/* ---------- SERVICES DETAILED ---------- */
.services-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.cat-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.service-detail-content .section-label { text-align: left; }
.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-detail-content p { color: var(--gray-500); margin-bottom: 20px; }
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--navy);
}
.chip i { color: var(--gold); font-size: .75rem; }

/* Arch services grid */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.arch-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.arch-card::before {
  content:'';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(201,145,42,.12);
  border-radius: 50%;
}
.arch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.arch-card-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.arch-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.arch-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ---------- PORTFOLIO PAGE ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Featured real-client card */
.portfolio-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.portfolio-card.featured::after {
  content: 'Verified Project';
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.portfolio-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  position: relative;
  overflow: hidden;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.04); }
.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,27,62,.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.portfolio-category {
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.portfolio-body { padding: 22px; }
.portfolio-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.portfolio-body p { font-size: .86rem; color: var(--gray-500); line-height: 1.65; }
.portfolio-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
}
.portfolio-meta span i { color: var(--gold); font-size: .7rem; }

/* Featured section label strip */
.featured-label-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.featured-label-strip::before,
.featured-label-strip::after {
  content:'';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.featured-label-strip span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Interior Design service card accent */
.service-card.highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  border-color: transparent;
}
.service-card.highlight h3 { color: var(--white); }
.service-card.highlight p { color: rgba(255,255,255,.7); }
.service-card.highlight .service-icon {
  background: rgba(201,145,42,.25);
  color: var(--gold-light);
}
.service-card.highlight:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card.highlight .card-link { color: var(--gold-light); }
.service-card.highlight::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-info-text h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-text a, .contact-info-text p {
  color: var(--gray-500);
  font-size: .9rem;
}
.contact-info-text a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-subtitle { color: var(--gray-500); font-size: .9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,145,42,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  letter-spacing: .03em;
}
.submit-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,145,42,.35);
}
.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 14px;
  font-size: .9rem;
  margin-top: 12px;
  display: none;
}
.form-success.show { display: block; }

/* Map */
.map-section { background: var(--gray-100); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-wrap iframe { width:100%; height:100%; border:0; }

/* Hours table */
.hours-table { width:100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  font-size: .88rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table tr:last-child td { border-bottom: none; }
.open { color: #16a34a !important; font-weight: 600 !important; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin: 16px 0 20px;
  color: rgba(255,255,255,.55);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* GST badge in footer */
.gst-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  margin-top: 16px;
  display: inline-block;
}

/* ---------- CLIENTS SECTION ---------- */
.clients-section {
  background: var(--navy);
  padding: 70px 0;
}
.clients-intro {
  text-align: center;
  margin-bottom: 48px;
}
.clients-intro .section-label { color: var(--gold-light); }
.clients-intro .section-title { color: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.client-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.client-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,145,42,.35);
  transform: translateY(-4px);
}
.client-card:hover::before { transform: scaleX(1); }

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.client-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.client-location i { color: var(--gold); font-size: .72rem; }
.client-industry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,145,42,.15);
  border: 1px solid rgba(201,145,42,.25);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.clients-note {
  text-align: center;
  margin-top: 36px;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
.whatsapp-float::before {
  content:'';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.whatsapp-float i { position: relative; z-index: 1; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- VISITOR COUNTER WIDGET ---------- */
.visitor-bar {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
  margin-bottom: 20px;
}
.visitor-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.visitor-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.visitor-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.visitor-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,145,42,.15);
  border: 1px solid rgba(201,145,42,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .85rem;
  flex-shrink: 0;
}
.visitor-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.visitor-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.visitor-stat-label {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.visitor-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
}
@keyframes livePulse {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.visitor-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 640px) {
  .visitor-stats { gap: 18px; }
  .visitor-divider { display: none; }
  .visitor-bar .container { justify-content: center; }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 2000;
  transition: width .1s linear;
}

/* ============================================================
   RESPONSIVE — comprehensive mobile fix (no h-scroll)
   ============================================================ */

/* ---- 992px: tablet landscape ---- */
@media (max-width: 992px) {
  .founder-inner          { grid-template-columns: 1fr; }
  .founder-img-wrap       { display: flex; justify-content: center; }
  .about-story            { grid-template-columns: 1fr; }
  .service-detail-card    { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .contact-grid           { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr 1fr; }

  /* Inline 2-col grids used in index.html "Why Us" and services intro */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1.3fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- 768px: tablet portrait / large phone ---- */
@media (max-width: 768px) {
  /* Header */
  .header.transparent,
  .header.scrolled { padding: 14px 0; }

  /* Fullscreen mobile nav */
  .nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 1.1rem; padding: 12px 24px; width: 220px; text-align: center; }
  .menu-toggle { display: flex; z-index: 1001; }
  .menu-toggle.open { position: fixed; right: 24px; }

  /* Hero */
  .hero-content { padding: 110px 20px 90px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* Trust bar — wrap items, drop dividers */
  .trust-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .trust-item {
    border-right: none;
    padding: 6px 14px;
    font-size: .8rem;
  }

  /* Grids → 1 column */
  .services-grid          { grid-template-columns: 1fr; }
  .features-grid          { grid-template-columns: 1fr; }
  .testimonials-grid      { grid-template-columns: 1fr; }
  .arch-grid              { grid-template-columns: 1fr; }
  .about-values           { grid-template-columns: 1fr; }
  .clients-grid           { grid-template-columns: 1fr 1fr; }
  .portfolio-grid         { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr; }
  .stats-grid             { grid-template-columns: 1fr 1fr; }
  .form-row               { grid-template-columns: 1fr; }
  .expertise-tags         { flex-wrap: wrap; }

  /* All inline 2-col grids */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.3fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-bottom   { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; }

  /* Misc */
  .contact-form-wrap { padding: 22px 18px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .page-hero { padding: 120px 0 50px; }
  .founder-img-badge { left: 0; }

  /* Visitor bar */
  .visitor-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .visitor-stats { justify-content: center; gap: 20px; flex-wrap: wrap; }
  .visitor-divider { display: none; }
  .visitor-live { justify-content: center; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.6rem; }

  /* All grids collapse to 1 col */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .arch-grid,
  .about-values,
  .clients-grid,
  .portfolio-grid { grid-template-columns: 1fr; }

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

  /* Stats numbers smaller */
  .stat-number { font-size: 2rem; }

  /* Service detail image height */
  .service-detail-img { height: 220px; }

  /* Hero */
  .hero h1 { font-size: 1.7rem; }
  .hero p  { font-size: .95rem; }
  .hero-badge { font-size: .72rem; }

  /* Trust bar — single column look */
  .trust-item { width: 45%; justify-content: center; }

  /* Visitor stats vertical on tiny screens */
  .visitor-stats { flex-direction: column; align-items: center; gap: 12px; }
  .visitor-stat  { justify-content: center; }

  /* CTA buttons full-width */
  .btn { padding: 12px 22px; font-size: .88rem; }

  /* Map */
  .map-wrap { height: 260px; }

  /* Portfolio card image */
  .portfolio-img { height: 200px; }

  /* Client card compact */
  .client-card { padding: 20px 16px; }

  /* WhatsApp button smaller */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.35rem; bottom: 20px; right: 20px; }
}
