/* ==========================================
   Xtra Dreams Buildcon Pvt. Ltd.
   Main Stylesheet - Premium Construction Theme
   Black + White + Gold Accent Palette
   ========================================== */

:root {
  --gold: #C8A45C;
  --gold-dark: #B8943F;
  --gold-light: #D4B672;
  --dark: #0C0C0C;
  --dark-900: #1A1A1A;
  --dark-800: #222222;
  --dark-700: #333333;
  --dark-600: #555555;
  --dark-500: #777777;
  --gray-400: #999999;
  --gray-300: #CCCCCC;
  --gray-200: #E5E5E5;
  --light: #F8F8F8;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --font-heading: 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto', 'Open Sans', sans-serif;
  --font-alt: 'Open Sans', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow-card: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(200,164,92,0.3);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1170px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-600);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
.text-gold { color: var(--gold); }
.bg-light { background: var(--light); }

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-header.light .section-subtitle,
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: var(--gray-300); }

.section-subtitle {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.title-divider span {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-submit { width: 100%; justify-content: center; padding: 14px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded { opacity: 0; visibility: hidden; }

.loader-ring {
  width: 50px; height: 50px;
  border: 3px solid rgba(200,164,92,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.preloader-inner { text-align: center; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }

/* TOP HEADER */
.header-top {
  background: var(--dark-900);
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,164,92,0.1);
  transition: var(--transition);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact { display: flex; gap: 20px; }
.top-contact a { color: var(--gray-400); font-size: 13px; font-weight: 400; }
.top-contact a i { color: var(--gold); margin-right: 6px; }
.top-contact a:hover { color: var(--gold); }

.top-social { display: flex; gap: 10px; }
.top-social a {
  color: var(--gray-400);
  font-size: 13px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: var(--transition);
}
.top-social a:hover { color: var(--gold); background: rgba(200,164,92,0.15); }

/* MIDDLE HEADER */
.header-middle {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.header-middle-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-branding { display: flex; align-items: center; gap: 14px; }
.logo-link { flex-shrink: 0; }
.logo-img { height: 48px; width: auto; transition: var(--transition); }

.branding-text { display: none; }
.branding-text .site-title { font-size: 13px; font-weight: 500; margin: 0; font-family: var(--font-body); }
.branding-text .site-title a { color: var(--dark-700); }
.branding-text .site-desc { font-size: 11px; color: var(--gold); margin: 0; font-style: italic; }

.header-contact-info { display: flex; gap: 16px; margin-left: auto; }

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-left: 1px solid var(--gray-200);
}

.contact-box:first-child { border-left: none; }

.contact-box-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.contact-box-text h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-box-text p { margin: 0; font-size: 12px; line-height: 1.3; }
.contact-box-text p a { color: var(--dark-600); }
.contact-box-text p a:hover { color: var(--gold); }

/* NAV MENU */
.nav-menu {
  background: var(--dark-900);
  border-top: 2px solid var(--gold);
  transition: var(--transition);
}

.nav-menu.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.menu li { position: relative; }

.menu li a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.menu li a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 20%;
  width: 0%;
  height: 3px;
  background: var(--gold);
  transition: 0.4s ease;
}

.menu li:hover > a::before,
.menu li.current a::before { width: 60%; }

.menu li a:hover,
.menu li.current a { color: var(--gold); }

.nav-cta { margin-left: auto; }

.btn-nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--dark) !important;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ------ HAMBURGER ------ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark-700);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ------ STICKY ------ */
.site-header.scrolled .header-top {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}

.site-header.scrolled .header-middle { padding: 8px 0; }
.site-header.scrolled .logo-img { height: 40px; }

/* ------ MOBILE MENU ------ */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100%;
  background: var(--dark-900);
  z-index: 1002;
  padding: 60px 24px 30px;
  transition: var(--transition);
}
.mobile-menu.active { right: 0; }

.mobile-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}
.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

.mobile-menu-list { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu-list li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-alt);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-menu-list li a:hover { color: var(--gold); padding-left: 8px; }

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  padding-top: 140px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 700px;
}

.slide-desc {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 30px;
  max-width: 550px;
  line-height: 1.7;
}

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-slide {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
  padding: 14px 32px;
  font-size: 14px;
}
.btn-slide:hover { background: var(--gold-dark); color: var(--dark) !important; }

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

/* ===== ABOUT ===== */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  text-align: center;
  margin-top: 4px;
}

.about-intro {
  font-size: 17px;
  color: var(--dark-700);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content p { margin-bottom: 14px; color: var(--dark-600); }

.about-features { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.af-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,164,92,0.1);
  border-radius: 8px;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.af-item h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.af-item p { font-size: 14px; color: var(--dark-500); margin: 0 !important; }

/* ===== SERVICES ===== */
.services-section { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: rgba(200,164,92,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--dark-500);
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--dark);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  background: var(--dark);
  color: var(--gold);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--dark-500);
  line-height: 1.7;
}

/* ===== STATISTICS ===== */
.stats-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80') center / cover fixed;
  padding: 70px 0;
}

.stats-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(12,12,12,0.85) 100%);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-item {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid rgba(200,164,92,0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--gold);
  background: rgba(200,164,92,0.04);
}

.stat-icon { font-size: 34px; color: var(--gold); margin-bottom: 14px; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PROJECTS ===== */
.projects-section { background: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }

.project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img { transform: scale(1.1); }

.project-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.project-info p { font-size: 13px; color: var(--gray-300); margin-bottom: 10px; }

.project-link {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  transition: var(--transition);
}

.project-link:hover { background: var(--white); color: var(--dark); transform: translateX(4px); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1920&q=80') center / cover fixed;
}

.testimonials-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.82);
}

.testimonials-section .container { position: relative; z-index: 2; }

.testimonial-slider-wrapper {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card { min-width: 100%; padding: 0 8px; }

.test-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.test-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 3px; }

.test-text {
  font-size: 16px;
  font-style: italic;
  color: var(--dark-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.test-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.test-author h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.test-author span { font-size: 13px; color: var(--dark-500); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.test-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--dark-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 15px;
}

.test-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.test-dots { display: flex; gap: 8px; }

.test-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.test-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center / cover fixed;
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(12,12,12,0.8) 100%);
}

.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.cta-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 17px;
  color: var(--gray-300);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.contact-form-wrap {
  background: var(--light);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-row-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 18px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

.form-success.active { display: block; }

.form-success i { font-size: 52px; color: #28a745; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--dark-500); }

.contact-card { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 3px solid var(--gold);
}

.contact-item:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }

.ci-icon {
  width: 46px; height: 46px;
  background: rgba(200,164,92,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-item p,
.contact-item a { font-size: 14px; color: var(--dark-600); }

.contact-item a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.contact-map iframe { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: var(--gray-400); }

.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }

.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-col ul li i { color: var(--gold); width: 18px; margin-right: 4px; }

.footer-bottom { padding: 20px 0; background: var(--dark-900); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 13px; color: var(--dark-500); }

/* ===== WOW ANIMATIONS ===== */
.wow {
  visibility: hidden;
}

.wow.fadeInUp,
.wow.fadeInLeft,
.wow.fadeInRight,
.wow.zoomIn {
  visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 991px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 32px; }

  .header-top { display: none; }

  .header-contact-info { display: none; }

  .nav-toggle { display: flex; }

  .main-nav .menu { display: none; }
  .nav-cta { display: none; }

  .site-branding { width: 100%; }
  .branding-text { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

  .slide-title { font-size: 38px; }
  .cta-title { font-size: 32px; }
}

@media (max-width: 767px) {
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 28px; }

  .slide-title { font-size: 30px; }
  .slide-desc { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  .stats-grid { gap: 16px; }
  .stat-num { font-size: 36px; }

  .projects-grid { grid-template-columns: 1fr; gap: 20px; }

  .test-card-inner { padding: 28px 20px; }
  .test-text { font-size: 15px; }

  .cta-title { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .form-row-duo { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .about-badge { width: 100px; height: 100px; }
  .badge-num { font-size: 28px; }

  .logo-img { height: 40px; }

  .hero-section { height: 85vh; min-height: 500px; }
  .slide-content { padding-top: 120px; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 24px; }
  .slide-desc { font-size: 14px; }
  .section-title { font-size: 24px; }
  .stat-num { font-size: 30px; }
  .cta-title { font-size: 22px; }

  .container { padding: 0 16px; }

  .whatsapp-float { width: 46px; height: 46px; font-size: 22px; bottom: 16px; right: 16px; }
}
