/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.gold { color: #ffb800; }
.bi { font-family: 'bootstrap-icons' !important; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #1a1a1a; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: #555; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: #ffb800;
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(26, 26, 26, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo { display: flex; align-items: center; padding: 12px 0; }
.logo-img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  padding-bottom: 12px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a:hover { color: #ffb800; }
.nav-right { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffb800;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,184,0,0.15);
  text-align: left;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px;
  color: #ffb800;
  padding: 14px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-phone { color: #fff !important; }
.mobile-cta { color: #1a1a1a !important; text-align: center; margin-top: 8px; }

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.55));
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-slide h1, .hero-slide h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.hero-slide .hero-sub { color: #cbd5e1; }
.hero-slide .container { max-width: 1280px; width: 100%; }

/* Slide text animation */
.hero-slide .hero-badge,
.hero-slide h1,
.hero-slide .hero-sub,
.hero-slide .hero-btns {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-slide.active .hero-badge { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero-slide.active h1, .hero-slide.active h2 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffb800;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  position: relative;
}
.dot::before { content: ''; position: absolute; inset: -12px; }
.dot.active { background: #ffb800; }
.dot:hover { background: rgba(255,184,0,0.5); }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  color: #ffb800;
  border: 1px solid rgba(255,184,0,0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: rgba(255,184,0,0.2); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Hero content */
.hero-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.badge-line { width: 48px; height: 4px; background: #ffb800; border-radius: 2px; }
.badge-text { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 3px; }
.hero h1 { margin-bottom: 28px; font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.hero-sub { font-size: 1.05rem; color: #cbd5e1; margin-bottom: 48px; max-width: 640px; line-height: 1.8; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-btns .btn-lg { padding: 18px 44px; font-size: 18px; }

/* ========== SECTIONS ========== */
.section { padding: 96px 0; }
.section-white { background: #ffffff; }
.section-yellow { background: #f5f5f5; }
.section-heading { text-align: center; margin-bottom: 56px; }
.section-badge { display: none; }
.heading-bar { width: 80px; height: 4px; background: #ffb800; border-radius: 2px; margin: 8px auto 0; }
.heading-bar-left { margin-left: 0; }

/* ========== ABOUT ========== */
.about-section { padding: 96px 0 0; overflow: hidden; background: #f0f0f0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.about-image { overflow: hidden; position: relative; height: 100%; }
.about-image img { border-radius: 0; border: none; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-section .about-text { padding: 28px 48px; }
.about-text h2 { margin-bottom: 4px; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.2; }
.about-text .heading-bar { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; font-size: 15px; color: #555; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { font-size: 28px; color: #ffb800; flex-shrink: 0; margin-top: 2px; }
.about-feature-item strong { display: block; font-size: 15px; color: #1a1a1a; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.about-feature-item span { font-size: 13px; color: #666; line-height: 1.5; }

/* ========== SERVICES (overlay grid) ========== */
#services { background: #f9f9f9; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.services-combined.projects-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.services-combined .project-card { aspect-ratio: 1 / 1; height: auto; }
.project-card { position: relative; height: 350px; border-radius: 16px; overflow: hidden; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2) 50%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.project-cat { color: #ffb800; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.project-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #fff; }
.project-bar { width: 48px; height: 3px; background: #ffb800; border-radius: 2px; transition: width 0.4s; }
.project-card:hover .project-bar { width: 96px; }

/* ========== TESTIMONIALS ========== */
#testimonials { background: #1a1a1a; padding: 80px 0; }
#testimonials .section-heading h2 { color: #fff; }
.review-summary { margin-top: 16px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 16px; }
.review-stars-lg { color: #ffb800; font-size: 24px; letter-spacing: 3px; }
.review-score { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.review-score span { font-weight: 400; font-size: 13px; color: #888; margin-left: 6px; }
.testimonials-slider { overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; }
.testimonial-card {
  background: #fff; border: none; border-radius: 12px; padding: 32px;
  transition: all 0.3s; flex: 0 0 calc(33.333% - 16px); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.review-quote { font-size: 36px; color: #ffb800; line-height: 1; margin-bottom: 8px; opacity: 0.6; }
.review-stars { color: #ffb800; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-style: italic; font-size: 15px; line-height: 1.8; margin-bottom: 20px; color: #555; min-height: 80px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: #ffb800; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #1a1a1a; }
.testimonial-author strong { display: block; color: #1a1a1a; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: #888; }
.review-service { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #ffb800; background: rgba(255,184,0,0.08); padding: 5px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(255,184,0,0.15); }
.review-cta { text-align: center; margin-top: 40px; }

/* ========== SERVICE AREAS ========== */
.areas-section { padding: 0; }
.areas-split { display: grid; grid-template-columns: 1fr 1fr; }
.areas-map { min-height: 500px; }
.areas-map iframe { display: block; width: 100%; height: 100%; }
.map-full { margin: 0; padding: 0; line-height: 0; }
.map-full iframe { display: block; width: 100%; height: 450px; border: 0; }
.areas-content { padding: 56px 48px; background: #f5f5f5; }
.areas-content h2 { margin-bottom: 8px; }
.areas-content > p { color: #555; margin-bottom: 24px; font-size: 15px; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-item { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: #1a1a1a; text-decoration: none; transition: color 0.2s; }
.area-item:hover { color: #ffb800; }
.area-item i { color: #ffb800; font-size: 16px; }

/* ========== CONTACT ========== */
.contact-wrapper { background: #fff; border: 1px solid #e0e0e0; border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-info { background: #1a1a1a; padding: 56px 48px; color: #fff; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 16px; color: #fff; }
.contact-info > p { margin-bottom: 32px; font-size: 15px; color: #aaa; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: #ffb800; color: #1a1a1a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item span { font-size: 13px; color: #aaa; display: block; }
.contact-item strong { display: block; font-size: 15px; color: #fff; }
.contact-item a { color: #fff; }
.contact-item a:hover { color: #ffb800; }
.contact-form { padding: 56px 48px; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 28px; color: #1a1a1a; }
.contact-form label { color: #1a1a1a !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: #f9f9f9; border: 1px solid #ddd;
  border-radius: 6px; color: #1a1a1a; font-family: 'DM Sans', sans-serif; font-size: 14px; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #ffb800; box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15); background: #fff;
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; }

/* ========== FOOTER ========== */
footer { background: #1a1a1a; padding: 80px 0 40px; color: #ccc; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials .social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-socials .social-icon:hover { background: #ffb800; color: #1a1a1a; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; color: #ccc; }
.footer-bottom a { color: #ffb800; }
.footer-bottom a:hover { color: #fff; }
.footer-col h4 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.footer-col li { margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: #fff; transition: color 0.2s; display: flex; align-items: center; gap: 8px; min-height: 36px; padding: 6px 0; }
.footer-col a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #ffb800; }
.footer-col a:hover { color: #ffb800; }
.footer-col li:not(:has(a)) { font-size: 14px; color: #ccc; padding-left: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: #ccc; }

/* ========== SCROLL ANIMATION ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== PAGE HEADER (reusable) ========== */
.page-header {
  position: relative;
  padding: 180px 0 80px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.92), rgba(26,26,26,0.65));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumb a { color: #ffb800; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .separator { color: #888; }
.breadcrumb .current { color: #ccc; }

/* ========== NAV ACTIVE LINK ========== */
.nav-links a.active { color: #ffb800; }
.mobile-menu a.active { color: #fff; }

/* ========== ABOUT PAGE: OUR STORY ========== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-image { border-radius: 16px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.story-text h2 { margin-bottom: 4px; }
.story-text .heading-bar { margin-bottom: 24px; }
.story-text p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.story-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.story-highlight i { color: #ffb800; font-size: 16px; }

/* ========== WHY CHOOSE US CARDS ========== */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.choose-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: #ffb800;
}
.choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffb800;
  margin: 0 auto 20px;
}
.choose-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #1a1a1a; }
.choose-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ========== STATS BAR ========== */
.stats-bar {
  background: #1a1a1a;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffb800;
  line-height: 1.2;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== CTA BANNER (reusable) ========== */
.cta-banner {
  background: #ffb800;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #1a1a1a; margin-bottom: 12px; }
.cta-banner p { color: #333; font-size: 16px; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-dark {
  display: inline-block;
  padding: 16px 40px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s;
}
.cta-banner .btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ========== SERVICE CARDS (services page) ========== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.service-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-card-body .btn {
  padding: 10px 22px;
  font-size: 14px;
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .services-combined.projects-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Nav: always black, always fixed */
  nav {
    background: #1a1a1a !important;
    position: fixed !important;
    top: 0 !important;
    transition: none !important;
  }
  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }
  nav .logo-img { height: 52px; }
  nav .logo { padding: 10px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; position: static; }

  /* Hero */
  .hero-slider { min-height: 80vh; margin-top: 60px; }
  .hero-slide { min-height: 80vh; }
  .hero-slide .container { padding: 0 24px; }
  .hero h1 { font-size: 1.5rem !important; }
  .hero h1 br, .hero-sub br { display: none; }
  .hero-sub { font-size: 0.85rem !important; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; margin-bottom: 48px; }
  .hero-btns .btn { text-align: center; }
  .hero-btns .btn-lg { padding: 12px 24px; font-size: 14px; }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 16px; }
  .hero-badge { margin-bottom: 16px; }
  .badge-text { font-size: 11px; letter-spacing: 2px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 36px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 250px; }
  .about-section .about-text { padding: 32px 24px; }
  .about-features { grid-template-columns: 1fr; }

  /* Services */
  .services-combined.projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { height: 260px; }

  /* Feature cards */
  .feature-bar { padding: 32px 20px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 14px; }
  .feature-card > i { font-size: 28px; margin-bottom: 10px; }
  .feature-card h3 { font-size: 0.9rem; }
  .feature-card p { font-size: 12px; }

  /* Testimonials */
  .testimonials-track { flex-direction: column; }
  .testimonial-card { flex: none; padding: 24px; }
  .testimonial-card p { min-height: auto; }
  .review-summary { flex-direction: column; gap: 8px; }

  /* Areas */
  .areas-split { grid-template-columns: 1fr; }
  .areas-map { min-height: 300px; }
  .areas-content { padding: 32px 24px; }
  .areas-list { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { padding: 32px 24px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Page Header */
  .page-header { padding: 120px 0 48px; }
  .page-header h1 { font-size: 1.6rem; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image img { height: 280px; }

  /* Choose */
  .choose-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* CTA */
  .cta-banner { padding: 48px 0; }
  .cta-banner .btn-dark { padding: 14px 32px; font-size: 15px; }

  /* Service Cards */
  .services-page-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-slide .container { padding: 0 16px; }
  .nav-inner { padding: 0 12px; }
  .section { padding: 48px 0; }
  h2 { font-size: 1.4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 16px; }
  .services-combined.projects-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 24px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .page-header { padding: 100px 0 40px; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 20px; }
}

/* Mobile logo size */
@media (max-width: 768px) {
}
