@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary: #0d0d0d;
  --primary-light: #1a1a1a;
  --primary-mid: #2a2a2a;
  --accent: #F5A623;
  --accent-dark: #D4901E;
  --accent-light: #FFD080;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-light: #6b6b6b;
  --text-on-dark: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-dark { background: var(--primary); color: var(--text-on-dark); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-gray { background: var(--gray-100); }
.section-accent { background: var(--accent); color: var(--primary); }
.section-accent h2,.section-accent h3 { color: var(--primary); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--accent);
}
.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.1rem; color: var(--text-light); max-width: 640px; line-height: 1.8;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary {
  background: var(--accent); color: var(--primary);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent; color: var(--white); border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }
.btn-dark {
  background: var(--primary); color: var(--white);
}
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn svg, .btn i { font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-dark);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 2px; background: var(--accent); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent-dark); }
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--primary); overflow: hidden; margin-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.3;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.5) 100%);
}
.hero .container { position: relative; z-index: 3; }
.hero-content { max-width: 680px; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--accent); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero-text { font-size: 1.15rem; color: var(--text-on-dark); max-width: 540px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 { font-size: 2.4rem; color: var(--accent); margin-bottom: 4px; }
.hero-stat p { font-size: 0.85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 160px 0 100px; background: var(--primary);
  overflow: hidden; margin-top: 80px;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--text-on-dark); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; font-size: 0.85rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--gray-500); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 240px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 12px; }
.card-body p { font-size: 0.95rem; color: var(--text-light); }

.icon-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px;
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative; overflow: hidden;
}
.icon-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--accent); transition: var(--transition-slow);
}
.icon-card:hover::before { height: 100%; }
.icon-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.icon-card .icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem; color: var(--accent);
}
.icon-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.icon-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== ABOUT IMAGE/TEXT BLOCK ===== */
.about-img-wrap {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-md); }
.about-img-wrap .experience-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--accent); color: var(--primary); padding: 16px 24px;
  border-radius: var(--radius-sm); font-weight: 700;
}
.experience-badge .number { font-size: 2rem; line-height: 1; }
.experience-badge .text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(245,166,35,0.15);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; margin-top: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--text-on-dark); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ===== PROCESS/STEPS ===== */
.process-step {
  text-align: center; padding: 32px 24px; position: relative;
}
.process-step .step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent);
  color: var(--primary); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px;
  border: 1px solid var(--gray-200); position: relative;
}
.testimonial-card .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1rem; font-style: italic; color: var(--text-body); margin-bottom: 20px; line-height: 1.8; }
.testimonial-card .author { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-card .role { font-size: 0.8rem; color: var(--text-light); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--accent); padding: 48px 0; }
.stats-bar .grid-4 { text-align: center; }
.stats-bar .stat-item h3 { font-size: 2.6rem; color: var(--primary); margin-bottom: 4px; }
.stats-bar .stat-item p { font-size: 0.85rem; color: var(--primary); opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; background: var(--white);
}
.faq-question {
  padding: 20px 24px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; color: var(--text-dark); transition: var(--transition);
  background: none; border: none; width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.faq-question:hover { color: var(--accent); }
.faq-question .icon { font-size: 1.4rem; transition: var(--transition); color: var(--accent); flex-shrink: 0; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: var(--transition-slow); }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  height: 280px; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(13,13,13,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; transition: var(--transition); background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group textarea { height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--primary); color: var(--white); border-radius: var(--radius-md); padding: 40px;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .ci-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-on-dark); font-size: 0.9rem; margin-bottom: 0; }

/* ===== SERVICE AREAS MAP ===== */
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); margin: 4px;
}
.area-tag:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.area-tag svg { width: 14px; height: 14px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary); color: var(--text-on-dark); padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about img { height: 45px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.8; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { color: var(--gray-400); font-size: 0.9rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.8rem; color: var(--gray-500);
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Counter animation */
.counter { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { 
    position: fixed; top: 80px; left: 0; width: 100%; background: var(--white);
    flex-direction: column; padding: 32px 24px; gap: 20px;
    transform: translateX(100%); transition: var(--transition);
    box-shadow: var(--shadow-lg); height: calc(100vh - 80px); justify-content: flex-start;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .grid-4 { gap: 32px; }
  .page-hero { padding: 120px 0 64px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .btn { width: 100%; justify-content: center; }
}
