/* ======================================
   LuxSpace Interiors - Main Stylesheet
   Color Palette: Deep Teal + Gold + Ivory
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --primary: #0a3d3d;        /* Deep Forest Teal */
  --primary-light: #0f5252;
  --secondary: #c9a84c;      /* Rich Gold */
  --secondary-light: #e2c97e;
  --accent: #d4472a;         /* Burnt Orange Accent */
  --bg-dark: #071e1e;
  --primary-dark: #071e1e;
  --bg-medium: #0d2e2e;
  --bg-light: #f7f4ef;       /* Warm Ivory */
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #3d3d3d;
  --text-light: #6b6b6b;
  --text-white: #ffffff;
  --text-ivory: #f7f4ef;
  --border: #e0d8cc;
  --shadow-sm: 0 2px 12px rgba(10,61,61,0.08);
  --shadow-md: 0 8px 30px rgba(10,61,61,0.14);
  --shadow-lg: 0 20px 60px rgba(10,61,61,0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-title span { color: var(--secondary); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  margin: 20px 0;
  border-radius: 2px;
}

.divider.center { margin: 20px auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--text-ivory);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,61,61,0.3);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 44px; font-size: 0.95rem; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.transparent { background: transparent; }

.navbar:not(.transparent) {
  background: var(--bg-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar.scrolled {
  background: var(--bg-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1280px;
  margin: 0 auto;
  transition: padding 0.3s;
}

.navbar.scrolled .navbar-inner { padding: 14px 24px; }

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-ivory);
  letter-spacing: 0.05em;
}

.navbar-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 2px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-menu a {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
  position: relative;
  padding-bottom: 4px;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--secondary);
  transition: width 0.3s;
}

.navbar-menu a:hover, .navbar-menu a.active {
  color: var(--secondary);
}

.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-ivory);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,30,30,0.88) 0%, rgba(10,61,61,0.65) 50%, rgba(7,30,30,0.75) 100%);
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px 180px;
  margin-left: 10vw;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--secondary);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--text-ivory);
  margin-bottom: 28px;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(247,244,239,0.8);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
}

.hero-stat {
  text-align: center;
  border-left: 1px solid rgba(201,168,76,0.3);
  padding-left: 30px;
}

.hero-stat:first-child { border-left: none; padding-left: 0; }

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.hero-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.7);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========== FEATURED PROJECTS ========== */
.featured-projects { background: var(--bg-light); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 4; }
.project-card:nth-child(4) { grid-column: span 4; }
.project-card:nth-child(5) { grid-column: span 4; }

.project-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:nth-child(1) .project-card-img { aspect-ratio: 16/9; }

.project-card:hover .project-card-img { transform: scale(1.08); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,30,30,0.92) 0%, rgba(7,30,30,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.project-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.project-card h3 {
  font-family: var(--font-heading);
  color: var(--text-ivory);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.project-card p {
  color: rgba(247,244,239,0.65);
  font-size: 0.85rem;
}

.project-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.project-card:hover .project-card-arrow {
  opacity: 1;
  transform: scale(1);
}

/* ========== ABOUT STUDIO ========== */
.about-studio { background: var(--bg-white); }

.about-studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-studio-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 88%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s;
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s;
}

.about-studio-images:hover .about-img-main { transform: scale(1.02); }
.about-studio-images:hover .about-img-accent { transform: scale(1.03); }

.about-badge {
  position: absolute;
  top: 42%;
  right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  z-index: 2;
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-badge .txt {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.about-studio-content .section-subtitle { max-width: 100%; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0 40px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  min-width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
}

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== SERVICES OVERVIEW ========== */
.services-section { background: var(--bg-dark); }
.services-section .section-title { color: var(--text-ivory); }
.services-section .section-subtitle { color: rgba(247,244,239,0.65); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,0.22);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-ivory);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  transition: gap 0.3s;
}

.service-link:hover { gap: 12px; }

/* ========== WHY CHOOSE US ========== */
.why-us { background: var(--bg-light); }

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.why-us-image:hover img { transform: scale(1.04); }

.why-us-image-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
}

.why-us-image-badge .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.why-us-image-badge .stat-txt {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.7);
  margin-top: 4px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 44px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.why-item-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  min-width: 48px;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== DESIGN PROCESS ========== */
.design-process { background: var(--primary); overflow: hidden; position: relative; }

.design-process::before {
  content: 'PROCESS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
}

.design-process .section-title { color: var(--text-ivory); }
.design-process .section-subtitle { color: rgba(247,244,239,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), rgba(201,168,76,0.4), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: scale(1.08);
}

.process-step h4 {
  font-family: var(--font-heading);
  color: var(--text-ivory);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.55);
  line-height: 1.7;
}

/* ========== PORTFOLIO HIGHLIGHTS ========== */
.portfolio-highlights { background: var(--bg-white); }

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}

.portfolio-masonry {
  columns: 3;
  column-gap: 20px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,30,30,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-overlay h4 {
  font-family: var(--font-heading);
  color: var(--text-ivory);
  font-size: 1.1rem;
  text-align: center;
  padding: 0 20px;
}

.portfolio-item-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--bg-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--secondary);
}

.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) { grid-column: span 1; }

.testimonial-card.featured {
  background: var(--primary);
  border-bottom-color: var(--secondary);
}

.testimonial-card.featured h4,
.testimonial-card.featured .testi-text { color: var(--text-ivory); }

.quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars span { color: var(--secondary); font-size: 1rem; }

.testi-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.testimonial-card.featured .testi-author { border-top-color: rgba(247,244,239,0.15); }

.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.testi-author h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }

.testi-author span {
  font-size: 0.78rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== BEFORE AFTER ========== */
.before-after { background: var(--bg-dark); }
.before-after .section-title { color: var(--text-ivory); }
.before-after .section-subtitle { color: rgba(247,244,239,0.65); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-card h4 {
  font-family: var(--font-heading);
  color: var(--text-ivory);
  background: var(--primary-light);
  padding: 16px 24px;
  font-size: 1.05rem;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-side {
  position: relative;
  overflow: hidden;
}

.ba-side img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.ba-side:hover img { transform: scale(1.06); }

.ba-label {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ba-label.before { background: rgba(100,100,100,0.85); color: #fff; }
.ba-label.after { background: var(--secondary); color: var(--primary); }

/* ========== GALLERY PREVIEW ========== */
.gallery-preview { background: var(--bg-white); }

.gallery-masonry {
  columns: 4;
  column-gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,30,30,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--secondary);
  font-size: 2rem;
}

.gallery-view-more {
  text-align: center;
  margin-top: 50px;
}

/* ========== BLOG PREVIEW ========== */
.blog-preview { background: var(--bg-light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--secondary);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-body { padding: 30px 28px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 5px; }

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: color 0.3s;
  line-height: 1.35;
}

.blog-card:hover h3 { color: var(--primary); }

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  transition: gap 0.3s;
}

.blog-read-more:hover { gap: 12px; }

/* ========== FAQ ========== */
.faq-section { background: var(--bg-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.faq-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.faq-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.faq-image:hover img { transform: scale(1.04); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  background: var(--bg-white);
  transition: background 0.3s;
  gap: 16px;
}

.faq-item.open .faq-question { background: rgba(201,168,76,0.05); }

.faq-question h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-toggle {
  min-width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  transition: var(--transition);
  font-weight: 700;
}

.faq-item.open .faq-toggle {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-title { color: var(--text-ivory); }
.cta-inner .section-subtitle { color: rgba(247,244,239,0.75); margin: 0 auto 44px; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(247,244,239,0.6);
}

.cta-phone a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  min-width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-info-item a:hover { color: var(--primary); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-ivory);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.contact-form .sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 34px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ========== MAP ========== */
.map-section { background: var(--bg-white); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-ivory);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(247,244,239,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-h {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(247,244,239,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  color: var(--secondary);
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(247,244,239,0.6);
  align-items: flex-start;
}

.footer-contact-item span:first-child,
.footer-contact-item i { color: var(--secondary); font-size: 0.9rem; min-width: 20px; margin-top: 2px; }

.footer-contact-item a { color: rgba(247,244,239,0.6); }
.footer-contact-item a:hover { color: var(--secondary); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,239,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(247,244,239,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(247,244,239,0.4);
}

.footer-bottom p a { color: var(--secondary); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(247,244,239,0.4);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--secondary); }

.footer-bottom-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(247,244,239,0.5);
  transition: var(--transition);
}
.footer-bottom-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg-dark);
}

/* ========== FLOATING BUTTONS ========== */
.float-btns {
  position: fixed;
  bottom: 36px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.float-btn:hover { transform: scale(1.12) translateY(-2px); }

.float-wa { background: #25d366; color: #fff; }
.float-call { background: var(--secondary); color: var(--primary); }

.float-btn-label {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-btn-label { opacity: 1; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-ivory);
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--secondary); font-style: italic; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(247,244,239,0.6);
}

.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--secondary-light); }
.breadcrumb .sep { color: rgba(247,244,239,0.3); }

/* ========== UTILITY ========== */
.text-gold { color: var(--secondary) !important; }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-gold { background: rgba(201,168,76,0.15); color: var(--secondary); }
.tag-dark { background: var(--primary); color: var(--text-ivory); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 36px; left: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover { background: var(--secondary); color: var(--primary); }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-ivory);
}

.preloader-logo span { color: var(--secondary); }

.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(247,244,239,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px;
  animation: loadBar 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ========== TEAM CARDS ========== */
.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.team-card-img {
  position: relative;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-card-img img { transform: scale(1.08); }

.team-card-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(to top, rgba(7,30,30,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.4s;
}

.team-card:hover .team-card-social { transform: translateY(0); }

.team-card-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.team-card-body { padding: 24px; text-align: center; }

.team-card-body h4 { font-size: 1.05rem; margin-bottom: 4px; }

.team-card-body span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

/* ========== AWARDS / MILESTONES ========== */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.milestone-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.milestone-item:last-child { border-right: none; }
.milestone-item:hover { background: var(--bg-light); }

.milestone-item .num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.milestone-item .label { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .projects-grid .project-card:nth-child(1) { grid-column: span 12; }
  .projects-grid .project-card:nth-child(2) { grid-column: span 6; }
  .projects-grid .project-card:nth-child(3) { grid-column: span 6; }
  .projects-grid .project-card:nth-child(4) { grid-column: span 6; }
  .projects-grid .project-card:nth-child(5) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 1024px) {
  .about-studio-grid, .why-us-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-studio-images { height: 420px; order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { columns: 2; }
  .gallery-masonry { columns: 3; }
  .milestone-grid { grid-template-columns: 1fr 1fr; }
  .milestone-item:nth-child(2) { border-right: none; }
  .milestone-item:nth-child(1), .milestone-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

.mobile-menu { display: none; }

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .navbar-menu, .navbar-phone { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-ivory);
    font-weight: 700;
  }

  .mobile-menu a:hover { color: var(--secondary); }

  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-content { margin-left: 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { columns: 1; }
  .gallery-masonry { columns: 2; }
  .ba-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .hero-stat { padding-left: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .milestone-grid { grid-template-columns: 1fr; }
  .milestone-item { border-right: none; border-bottom: 1px solid var(--border); }
}
