/* ============================================
   INTERIOR CHENNAI — STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2d1a0b;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --cream: #f9f5ef;
  --white: #ffffff;
  --dark: #1a1a1a;
  --text: #444444;
  --text-light: #777777;
  --border: #e8e0d5;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 6px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: #b07d20; border-color: #b07d20; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,42,0.35); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 32px;
  border-radius: 2px;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left i, .top-bar-right i { color: var(--gold); margin-right: 5px; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.sticky-bar.scrolled .site-header { padding: 10px 0; }
.sticky-bar.scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo-text span:last-child {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--gold); color: var(--white); }
.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.header-call:hover { background: var(--primary); }
.header-call i { font-size: 14px; }

/* ---- NAVIGATION ---- */
.main-nav {
  background: var(--primary);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--gold);
}
.nav-menu > li > a i {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s;
}
.nav-menu > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 500;
}
.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--gold);
  padding-left: 26px;
  background: var(--cream);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  width: 780px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 500;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nav-menu > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mega-col ul li a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mega-col ul li:last-child a { border-bottom: none; }
.mega-col ul li a:hover { color: var(--gold); padding-left: 6px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- STICKY BAR ---- */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

/* ---- HERO SLIDER ---- */
.hero {
  position: relative;
  height: calc(100vh - 140px);
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

/* ---- KEN BURNS ANIMATIONS ---- */
@keyframes kbZoomIn {
  from { transform: scale(1.14) translate(1.5%, 0.5%); }
  to   { transform: scale(1.0)  translate(0, 0); }
}
@keyframes kbZoomOut {
  from { transform: scale(1.0)  translate(-0.5%, 0); }
  to   { transform: scale(1.1)  translate(-1.5%, -0.8%); }
}
@keyframes kbZoomPan {
  from { transform: scale(1.12) translate(1%, 1.2%); }
  to   { transform: scale(1.03) translate(0, 0); }
}

.hero-slide.active img                       { animation: kbZoomIn  9s ease-out both; }
.hero-slide:nth-child(2).active img          { animation: kbZoomOut 9s ease-out both; }
.hero-slide:nth-child(3).active img          { animation: kbZoomPan 9s ease-out both; }

/* ---- HERO TEXT REVEAL ANIMATIONS ---- */
@keyframes hTagIn {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hTitleIn {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hFadeUpSm {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* All hero text starts hidden */
.hero-slide .section-tag,
.hero-slide h1,
.hero-slide p,
.hero-slide .hero-btns { opacity: 0; }

/* Staggered reveals when slide is active */
.hero-slide.active .section-tag {
  animation: hTagIn    0.8s 0.10s cubic-bezier(0.22,0.61,0.36,1) both;
}
.hero-slide.active h1 {
  animation: hTitleIn  1.0s 0.30s cubic-bezier(0.22,0.61,0.36,1) both;
}
.hero-slide.active p {
  animation: hFadeUpSm 0.9s 0.55s cubic-bezier(0.22,0.61,0.36,1) both;
}
.hero-slide.active .hero-btns {
  animation: hFadeUpSm 0.9s 0.75s cubic-bezier(0.22,0.61,0.36,1) both;
}
/* Gold line under tag */
.hero-slide.active .section-tag::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  transform-origin: left center;
  margin-top: 6px;
  animation: lineReveal 0.6s 0.55s ease both;
}

/* ---- DOT PROGRESS RING ---- */
.hero-dot {
  position: relative;
}
.hero-dot.active::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: dotSpin 5s linear both;
}
@keyframes dotSpin {
  from { transform: rotate(-90deg); }
  to   { transform: rotate(270deg); }
}

/* ---- PAGE CURTAIN / INTRO LOADER ---- */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: all;
}
.page-curtain.out {
  transform: translateY(-100%);
  pointer-events: none;
}
.curtain-logo {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: curtainLogoIn 0.7s 0.15s ease both;
}
.curtain-bar {
  height: 2px;
  width: 0;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  animation: curtainBarGrow 0.9s 0.4s ease both;
}
.curtain-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: curtainLogoIn 0.7s 0.6s ease both;
}
@keyframes curtainLogoIn {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes curtainBarGrow {
  from { width: 0; }
  to   { width: 180px; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,3,0.75) 40%, rgba(20,10,3,0.25));
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.hero-text { max-width: 600px; color: var(--white); }
.hero-text .section-tag { color: var(--gold-light); }
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-text h1 em { color: var(--gold-light); font-style: normal; }
.hero-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--primary);
  padding: 24px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--primary);
}
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- ABOUT ---- */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-img-badge .years {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .years-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-content .section-tag { display: block; }
.about-list { margin: 20px 0 32px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--white); }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ---- SERVICES ---- */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,26,11,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-card-img-overlay { opacity: 1; }
.service-card-img-overlay i { font-size: 36px; color: var(--white); }
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p { font-size: 13.5px; color: var(--text-light); margin-bottom: 18px; }
.service-card .sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sub-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--cream);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 500;
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  transition: gap 0.2s;
}
.service-card:hover .service-more { gap: 10px; }

/* ---- SERVICE MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  overflow-y: auto;
  padding: 40px 16px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  background: var(--primary);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
}
.modal-header span {
  font-size: 13px;
  color: var(--gold);
  display: block;
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--gold); }
.modal-body { padding: 32px; }
.modal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}
.modal-tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background: var(--cream);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.modal-tab.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.modal-tab-content { display: none; }
.modal-tab-content.active { display: block; }
.modal-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.modal-content-inner h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 14px;
}
.modal-content-inner p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal-content-inner ul {
  list-style: none;
}
.modal-content-inner ul li {
  font-size: 13.5px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.modal-content-inner ul li:last-child { border-bottom: none; }
.modal-content-inner ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.gallery-section-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,26,11,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 24px; }

/* ---- PROJECTS ---- */
.projects-section { background: var(--white); }
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px;
  gap: 20px;
}

/* ---- FLIP CARD ---- */
.project-item {
  perspective: 1100px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.78s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: var(--radius);
}
.project-item:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT — image */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-item:hover .flip-front img { transform: scale(1.06); }

/* BACK — info panel */
.flip-back {
  transform: rotateY(180deg);
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  border: 2px solid rgba(200,146,42,0.25);
}
.flip-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.flip-back::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.flip-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,146,42,0.12);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200,146,42,0.35);
  margin-bottom: 14px;
}
.flip-title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.flip-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}
.flip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}
.flip-btn:hover { background: #a87820; transform: translateY(-2px); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--cream); }
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(100% / 3);
  padding: 0 14px;
}
.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-bottom: 3px solid var(--gold);
}
.testimonial-quote {
  font-size: 40px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.4;
}
.testimonial-inner p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-light);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 4px;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonial-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-btn:hover { background: var(--gold); color: var(--white); }

/* ---- CLIENTS ---- */
.clients-section { background: var(--primary); padding: 60px 0; }
.clients-section .section-title { color: var(--white); }
.clients-section .divider-gold.center { margin-bottom: 40px; }
.clients-ticker-wrap {
  overflow: hidden;
  position: relative;
}
.clients-ticker-wrap::before,
.clients-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.clients-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}
.clients-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}
.clients-ticker {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.clients-ticker:hover { animation-play-state: paused; }
.client-chip {
  padding: 10px 24px;
  margin: 0 8px;
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: 30px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.client-chip:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--primary);
  transition: background 0.2s;
  gap: 12px;
}
.faq-q:hover { background: var(--cream); }
.faq-q.open { background: var(--primary); color: var(--white); }
.faq-q i {
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-q.open i { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--cream);
}
.faq-a-inner {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 13.5px;
  color: var(--text);
  display: block;
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--gold); }
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; justify-content: center; }

/* ---- FOOTER ---- */
footer {
  background: #1a0d05;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 55px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ---- WHATSAPP FLOAT ---- */
.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;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.7;
  padding: 16px;
  transition: opacity 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 94px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 560px; }
  .about-img-badge { right: 0; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { width: 600px; grid-template-columns: 1fr 1fr; }
  .modal-content-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-call span { display: none; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: var(--primary); padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; }
  .dropdown, .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    width: 100%;
    display: none;
    padding: 0;
    background: rgba(255,255,255,0.05);
  }
  .dropdown li a { color: rgba(255,255,255,0.75); padding: 10px 32px; }
  .mega-menu { grid-template-columns: 1fr; gap: 0; }
  .mega-col { padding: 12px 20px; }
  .mega-col h4 { font-size: 12px; margin-bottom: 8px; }
  .mega-col ul li a { color: rgba(255,255,255,0.7); }
  .nav-menu > li.has-dropdown:hover .dropdown,
  .nav-menu > li.has-mega:hover .mega-menu { display: block; }
  .hero-content { padding: 0 24px; }
  .hero-text h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .why-grid, .projects-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-badge { width: 110px; height: 110px; right: 8px; bottom: -16px; }
  .about-img-badge .years { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { padding: 20px; }
  .flip-desc { display: none; }
}
@media (max-width: 480px) {
  .hero { height: 88vw; min-height: 380px; }
  .hero-btns .btn:last-child { display: none; }
  .logo img { height: 44px; }
  .logo-text span:first-child { font-size: 16px; }
}

.servicetitle { font-size:25px;
	margin-top: 20px;
	font-family: var(--font-heading);
	
}
.client-chip img{
  width:200px;
  height:75px;
  object-fit:contain;
  display:block;
}
