:root {
  --red: #C0181A;
  --red-dark: #8B0000;
  --red-light: #E03032;
  --red-pale: #FFF0F0;
  --red-muted: rgba(192,24,26,0.08);
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #F2F2F2;
  --mid-gray: #E0E0E0;
  --gray: #888888;
  --dark-gray: #444444;
  --dark: #1A1A1A;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

.page { min-height: 100vh; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.header-top {
  background: var(--red);
  padding: 7px 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--white);
}
.header-top a { color: var(--white); text-decoration: none; margin: 0 12px; opacity: 0.9; }
.header-top a:hover { opacity: 1; }
.header-main {
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
}
.logo {
  display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: var(--dark-gray); text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 3px;
  transition: all 0.25s; cursor: pointer;
  border: none; background: none;
}
nav a:hover, nav a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 4px; font-weight: 700 !important;
  letter-spacing: 0.8px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,24,26,0.35) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--red); transition: all 0.3s; }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--dark-gray); text-decoration: none;
  font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 40px; cursor: pointer;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav a:hover { color: var(--red); background: var(--red-pale); }

/* ===== SECTION BASE ===== */
section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 40px; width: 100%; }

.section-label {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; line-height: 1.15; color: var(--dark);
}
.section-title span { color: var(--red); }
.section-subtitle {
  margin-top: 16px; font-size: 16px; font-weight: 400;
  color: var(--gray); line-height: 1.75; max-width: 600px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 110px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(26,26,26,0.93) 0%, rgba(26,26,26,0.75) 55%, rgba(192,24,26,0.55) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px
  );
}
.hero-content { position: relative; z-index: 2}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); border-radius: 2px;
  padding: 9px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 30px;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { color: var(--red-light); font-style: normal; display: block; }
.hero p {
  margin-top: 24px; font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.8;
  max-width: 540px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,24,26,0.4); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-red {
  background: transparent; color: var(--red);
  padding: 14px 32px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--red); cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat { border-left: 3px solid var(--red); padding-left: 20px; }
.hero-stat .num {
  font-family: var(--font-cond); font-size: 44px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat .num span { color: var(--red-light); }
.hero-stat .label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px;
}

.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 56px; background: var(--red); margin: 0 auto; animation: scrollAnim 1.5s ease-in-out infinite; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--red); padding: 44px 0; }
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; }
.stat-item .n { font-family: var(--font-cond); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .l { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; margin-top: 60px; background: var(--mid-gray); border: 1px solid var(--mid-gray); }
.service-card {
  background: var(--white); padding: 40px 36px;
  transition: all 0.35s; position: relative; overflow: hidden; cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--red); transition: width 0.4s;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--red-pale); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(192,24,26,0.1); }
.service-icon {
  width: 58px; height: 58px;
  background: var(--red-pale);
  border-radius: 12px; border: 1px solid rgba(192,24,26,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--red); margin-bottom: 22px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.service-arrow { margin-top: 22px; color: var(--red); font-size: 16px; transition: transform 0.3s; }
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; height: 520px; object-fit: cover; border-radius: 4px; }
.why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); padding: 30px 36px; text-align: center; border-radius: 4px;
}
.why-badge .n { font-family: var(--font-cond); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.why-badge .l { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 2px; }
.why-points { margin-top: 36px; }
.why-point { display: flex; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--mid-gray); }
.why-point:last-child { border-bottom: none; margin-bottom: 0; }
.why-num { font-family: var(--font-cond); font-size: 38px; font-weight: 800; color: rgba(192,24,26,0.18); line-height: 1; min-width: 50px; }
.why-point h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-point p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ===== PROJECTS PREVIEW ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.project-card { position: relative; overflow: hidden; border-radius: 4px; height: 320px; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card:hover img { transform: scale(1.07); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.project-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red-light); margin-bottom: 6px; }
.project-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.project-card p { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card {
  background: var(--white); padding: 36px; border-radius: 4px;
  border: 1px solid var(--mid-gray); position: relative; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,24,26,0.1); }
.quote-mark { font-family: var(--font-display); font-size: 80px; line-height: 0.5; color: rgba(192,24,26,0.12); margin-bottom: 20px; display: block; }
.testimonial-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white); }
.author-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.author-loc { font-size: 12px; color: var(--gray); margin-top: 2px; }
.stars { color: var(--red); font-size: 13px; margin-bottom: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--red); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--red); padding: 16px 40px; border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.btn-white-outline { background: transparent; color: var(--white); padding: 16px 40px; border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: 150px; padding-bottom: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #2d0a0a 100%);
  border-bottom: 4px solid var(--red);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80') center/cover;
  opacity: 0.12;
}
.page-hero-label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--red-light); text-transform: uppercase; margin-bottom: 16px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(38px, 5vw, 62px); font-weight: 700; color: var(--white); line-height: 1.1; }
.page-hero-title span { color: var(--red-light); }
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 17px; margin-top: 16px; max-width: 580px; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.about-story h3 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.about-story p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.value-card { background: var(--white); padding: 40px 28px; text-align: center; border-radius: 4px; border: 1px solid var(--mid-gray); transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.value-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,24,26,0.1); }
.value-icon { font-size: 36px; color: var(--red); margin-bottom: 20px; }
.value-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.team-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--mid-gray); transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.team-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 16px 48px rgba(192,24,26,0.12); }
.team-photo { height: 240px; overflow: hidden; background: var(--red-pale); display: flex; align-items: center; justify-content: center; font-size: 64px; color: var(--red); border-bottom: 3px solid var(--red); }
.team-info { padding: 24px; }
.team-info h4 { font-size: 18px; font-weight: 700; color: var(--dark); }
.team-info .role { font-size: 13px; color: var(--red); font-weight: 700; margin: 4px 0 8px; letter-spacing: 0.5px; }
.team-info p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.milestones { position: relative; margin-top: 40px; padding-left: 40px; border-left: 2px solid var(--mid-gray); }
.milestone { position: relative; margin-bottom: 40px; }
.milestone::before { content: ''; position: absolute; left: -49px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--red); }
.milestone-year { font-family: var(--font-cond); font-size: 28px; font-weight: 800; color: var(--red); margin-bottom: 4px; }
.milestone h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.milestone p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== SERVICES ===== */
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.service-full-card {
  background: var(--white); padding: 44px 40px;
  border: 1px solid var(--mid-gray); border-radius: 4px;
  display: flex; gap: 28px; transition: all 0.35s; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-full-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--red); transition: height 0.4s; }
.service-full-card:hover::before { height: 100%; }
.service-full-card:hover { border-color: rgba(192,24,26,0.3); box-shadow: 0 12px 40px rgba(192,24,26,0.1); transform: translateY(-3px); }
.sfc-icon { width: 64px; height: 64px; min-width: 64px; background: var(--red-pale); border-radius: 14px; border: 1px solid rgba(192,24,26,0.15); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--red); transition: all 0.3s; }
.service-full-card:hover .sfc-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.sfc-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.sfc-content p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.sfc-list { list-style: none; }
.sfc-list li { font-size: 13px; color: var(--dark-gray); padding: 4px 0; display: flex; align-items: center; gap: 10px; }
.sfc-list li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.process-steps { display: flex; gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: var(--mid-gray); z-index: 0; }
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 56px; height: 56px; background: var(--white); border: 2px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-cond); font-size: 20px; font-weight: 800; color: var(--red); }
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--mid-gray); }
.faq-question { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
.faq-question h4 { font-size: 16px; font-weight: 600; color: var(--dark); }
.faq-question i { color: var(--red); font-size: 14px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-item.open .faq-question h4 { color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { font-size: 14px; color: var(--gray); line-height: 1.75; padding-bottom: 20px; }

/* ===== PROJECTS ===== */
.filter-tabs { display: flex; gap: 10px; margin: 40px 0; flex-wrap: wrap; }
.filter-tab { padding: 10px 24px; border-radius: 30px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border: 1.5px solid var(--mid-gray); background: var(--white); color: var(--dark-gray); }
.filter-tab.active, .filter-tab:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.projects-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-full-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--mid-gray); transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.project-full-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 16px 48px rgba(192,24,26,0.12); }
.project-img { height: 220px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-full-card:hover .project-img img { transform: scale(1.06); }
.project-details { padding: 24px; }
.project-details .tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
.project-details h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.project-details p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.project-meta { display: flex; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--light-gray); }
.project-meta span { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.project-meta i { color: var(--red); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 50px; }
.gallery-item { overflow: hidden; border-radius: 4px; cursor: pointer; position: relative; }
.gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(192,24,26,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 28px; color: white; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.pricing-card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: 4px; overflow: hidden; transition: all 0.3s; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.pricing-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pricing-card.featured { border: 2px solid var(--red); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.featured .pricing-header { background: var(--red); }
.pricing-card.featured .pricing-header h3 { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-header .price { color: var(--white); }
.pricing-card.featured .pricing-header p { color: rgba(255,255,255,0.7); }
.pricing-badge { position: absolute; top: -1px; right: 20px; background: var(--dark); color: white; font-size: 11px; font-weight: 700; padding: 6px 14px; letter-spacing: 1px; text-transform: uppercase; }
.pricing-header { background: var(--light-gray); padding: 36px 32px; text-align: center; }
.pricing-header h3 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.pricing-header .price { font-family: var(--font-cond); font-size: 52px; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-header .price sub { font-size: 16px; vertical-align: bottom; }
.pricing-header p { font-size: 13px; color: var(--gray); margin-top: 6px; }
.pricing-body { padding: 32px; }
.pricing-body ul { list-style: none; }
.pricing-body ul li { padding: 10px 0; font-size: 14px; color: var(--dark-gray); border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 12px; }
.pricing-body ul li i.fa-check { color: var(--red); }
.pricing-body ul li i.fa-times { color: var(--mid-gray); }
.pricing-body .btn-primary, .pricing-body .btn-outline-red { width: 100%; justify-content: center; margin-top: 24px; font-size: 13px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-top: 50px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 28px; }
.contact-icon { width: 50px; height: 50px; min-width: 50px; background: var(--red-pale); border-radius: 10px; border: 1px solid rgba(192,24,26,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--red); }
.contact-item h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--dark-gray); text-decoration: none; line-height: 1.6; }
.contact-item a:hover { color: var(--red); }
.contact-form { background: var(--white); padding: 44px; border: 1px solid var(--mid-gray); border-radius: 4px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.contact-form h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark-gray); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--off-white); border: 1.5px solid var(--mid-gray); border-radius: 4px; padding: 13px 16px; font-size: 15px; color: var(--dark); font-family: var(--font-body); transition: all 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--red-pale); box-shadow: 0 0 0 3px rgba(192,24,26,0.08); }
.form-group select option { background: white; }
.form-group textarea { min-height: 120px; resize: vertical; }

.map-container { margin-top: 60px; border-radius: 4px; overflow: hidden; border: 1px solid var(--mid-gray); height: 380px; background: var(--light-gray); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.map-container i { font-size: 48px; color: var(--red); }
.map-container p { font-size: 16px; color: var(--dark-gray); }
.map-container a { color: var(--red); text-decoration: none; font-weight: 600; }
.map-container a:hover { text-decoration: underline; }

.alert-success { display: none; background: #fff0f0; border: 1px solid var(--red); border-radius: 4px; padding: 16px 20px; font-size: 14px; color: var(--red); margin-top: 16px; align-items: center; gap: 12px; font-weight: 600; }
.alert-success.show { display: flex; }

/* ===== FOOTER ===== */
footer { background: var(--white); border-top: 1px solid var(--mid-gray); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-about .brand { color: var(--dark) !important; }
.footer-about .tagline { color: var(--red) !important; }
.footer-about p { font-size: 14px; color: var(--dark-gray); line-height: 1.75; margin: 20px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark-gray); font-size: 15px; text-decoration: none; transition: all 0.3s; border: 1px solid var(--mid-gray); }
.social-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col h4 { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red-light); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--mid-gray); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--dark-gray); text-decoration: none; transition: color 0.3s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--red-light); font-size: 14px; margin-top: 2px; }
.footer-contact-item a { color: var(--dark-gray); text-decoration: none; }
.footer-contact-item a:hover { color: var(--red); }
.footer-contact-item span { font-size: 14px; color: var(--dark-gray); line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--mid-gray); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--dark-gray); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--dark-gray); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--red-light); }
.rera-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-pale); border: 1px solid var(--red-muted); padding: 8px 16px; border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--red); margin-top: 16px; letter-spacing: 0.5px; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: white; text-decoration: none; box-shadow: 0 6px 30px rgba(37,211,102,0.5); animation: pulse-green 2s infinite; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* BG sections */
.bg-light { background: var(--off-white); }
.bg-lightgray { background: var(--light-gray); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollAnim { 0% { opacity: 1; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 50px rgba(37,211,102,0.8); } }

/* Utility */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.divider { height: 1px; background: var(--mid-gray); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .about-story { grid-template-columns: 1fr; }
  .about-story img { height: 300px; }
}
@media (max-width: 768px) {
  .header-top { display: none; }
  .header-main { padding: 14px 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .hero-stats { gap: 24px; }
  .contact-form { padding: 24px; }
  .page-hero { padding-top: 130px; padding-bottom: 60px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-white, .btn-outline-red { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
