/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Coolvetica';
  src: url('https://fonts.cdnfonts.com/css/coolvetica') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #1a1a2e;
  --dark: #0f0f1a;
  --darker: #0a0a12;
  --gold: #d4a853;
  --gold-light: #f0d68a;
  --text: #e0e0e0;
  --text-muted: #999;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ff6b35, #d4a853);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #0f0f1a);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Coolvetica', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ===== CONCENTRIC CIRCLES BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  bottom: -40vw;
  right: -20vw;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 8%, transparent 8.5%,  rgba(212,140,30,.08) 8.6%, transparent 9%),
    radial-gradient(circle, transparent 14%, transparent 14.5%, rgba(212,140,30,.07) 14.6%, transparent 15%),
    radial-gradient(circle, transparent 20%, transparent 20.5%, rgba(212,140,30,.07) 20.6%, transparent 21%),
    radial-gradient(circle, transparent 26%, transparent 26.5%, rgba(212,140,30,.06) 26.6%, transparent 27%),
    radial-gradient(circle, transparent 32%, transparent 32.5%, rgba(212,140,30,.06) 32.6%, transparent 33%),
    radial-gradient(circle, transparent 38%, transparent 38.5%, rgba(212,140,30,.05) 38.6%, transparent 39%),
    radial-gradient(circle, transparent 44%, transparent 44.5%, rgba(212,140,30,.05) 44.6%, transparent 45%),
    radial-gradient(circle, transparent 50%, transparent 50.5%, rgba(212,140,30,.04) 50.6%, transparent 51%),
    radial-gradient(circle, transparent 56%, transparent 56.5%, rgba(212,140,30,.04) 56.6%, transparent 57%),
    radial-gradient(circle, transparent 62%, transparent 62.5%, rgba(212,140,30,.03) 62.6%, transparent 63%),
    radial-gradient(circle, transparent 68%, transparent 68.5%, rgba(212,140,30,.03) 68.6%, transparent 69%),
    radial-gradient(circle, transparent 74%, transparent 74.5%, rgba(212,140,30,.02) 74.6%, transparent 75%);
  z-index: 0;
  pointer-events: none;
  animation: ripplePulse 8s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  top: -30vw;
  left: -25vw;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 10%, transparent 10.5%, rgba(255,107,53,.04) 10.6%, transparent 11%),
    radial-gradient(circle, transparent 20%, transparent 20.5%, rgba(255,107,53,.035) 20.6%, transparent 21%),
    radial-gradient(circle, transparent 30%, transparent 30.5%, rgba(255,107,53,.03) 30.6%, transparent 31%),
    radial-gradient(circle, transparent 40%, transparent 40.5%, rgba(255,107,53,.025) 40.6%, transparent 41%),
    radial-gradient(circle, transparent 50%, transparent 50.5%, rgba(255,107,53,.02) 50.6%, transparent 51%),
    radial-gradient(circle, transparent 60%, transparent 60.5%, rgba(255,107,53,.015) 60.6%, transparent 61%),
    radial-gradient(circle, transparent 70%, transparent 70.5%, rgba(255,107,53,.01) 70.6%, transparent 71%);
  z-index: 0;
  pointer-events: none;
  animation: ripplePulse2 10s ease-in-out infinite alternate;
}

@keyframes ripplePulse {
  0%   { transform: scale(1);    opacity: .7; }
  100% { transform: scale(1.08); opacity: 1; }
}
@keyframes ripplePulse2 {
  0%   { transform: scale(1.05); opacity: .5; }
  100% { transform: scale(1);    opacity: .8; }
}

/* Ensure all content sits above the background */
.navbar, .hero, section, footer, main { position: relative; z-index: 1; }

a { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,18,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,83,.1);
  transition: .3s;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
}
.nav-logo img { height: 70px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text);
  position: relative; padding: 5px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gradient); transition: .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gradient); color: var(--dark) !important;
  padding: 10px 24px; border-radius: 30px; font-weight: 600;
  font-size: 13px !important; letter-spacing: .5px !important;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 5px 25px rgba(255,107,53,.3); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: .3s; display: block; }
.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); }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-slider { position: relative; height: 100%; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,18,.7), rgba(10,10,18,.9));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}
.hero-content { max-width: 800px; }
.hero-content .subtitle {
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  font-weight: 500;
}
.hero-content h1 {
  font-size: 56px; font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; color: var(--white);
}
.hero-content h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gradient); color: var(--dark);
  padding: 14px 36px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: none; cursor: pointer; transition: .3s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,53,.3); }

.btn-outline {
  border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 34px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: .3s;
  background: transparent; display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dots .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer; transition: .3s;
}
.slider-dots .dot.active { background: var(--gold); transform: scale(1.2); }

.slider-arrows {
  position: absolute; top: 50%; width: 100%; display: flex;
  justify-content: space-between; padding: 0 20px;
  transform: translateY(-50%); z-index: 10; pointer-events: none;
}
.slider-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .3s; pointer-events: all;
  color: white; font-size: 20px;
}
.slider-arrow:hover { background: var(--gold); color: var(--dark); }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--darker); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag {
  display: inline-block; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 15px;
  font-weight: 600;
}
.section-header h2 {
  font-size: 42px; font-weight: 700; color: var(--white);
  margin-bottom: 15px; line-height: 1.2;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a12 50%, #1a1a0a 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(212,168,83,.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 64px; font-weight: 700;
  background: linear-gradient(135deg, #d4a853, #f0d68a, #d4a853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
  text-shadow: none;
}
.stat-label {
  font-size: 14px; color: var(--text-muted); margin-top: 10px;
  line-height: 1.5; max-width: 200px; margin-left: auto; margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: rgba(26,26,46,.6); border: 1px solid rgba(212,168,83,.1);
  border-radius: 16px; padding: 40px 30px; transition: .4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gradient);
  transform: scaleX(0); transition: .4s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,83,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; border-radius: 20px; }
.about-image::after {
  content: ''; position: absolute; top: -10px; right: -10px;
  width: 100%; height: 100%; border: 2px solid var(--gold);
  border-radius: 20px; z-index: -1;
}
.about-text h2 { font-size: 38px; color: var(--white); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 15px; }
.about-text .highlight {
  color: var(--gold); font-weight: 600; font-size: 18px;
  border-left: 3px solid var(--gold); padding-left: 15px; margin: 25px 0;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.solution-card {
  background: rgba(26,26,46,.5); border: 1px solid rgba(212,168,83,.1);
  border-radius: 14px; padding: 30px; display: flex; gap: 15px;
  align-items: flex-start; transition: .3s;
}
.solution-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.solution-icon {
  min-width: 44px; height: 44px; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.solution-card h4 { color: var(--white); font-size: 16px; margin-bottom: 5px; }
.solution-card p { color: var(--text-muted); font-size: 13px; }

/* ===== SECTORS ===== */
.sectors-flex {
  display: flex; flex-wrap: wrap; gap: 15px; justify-content: center;
}
.sector-tag {
  padding: 12px 28px; border-radius: 50px;
  border: 1px solid rgba(212,168,83,.2);
  background: rgba(26,26,46,.4); color: var(--text);
  font-size: 14px; font-weight: 500; transition: .3s;
  cursor: default;
}
.sector-tag:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,168,83,.1);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: rgba(26,26,46,.6); border: 1px solid rgba(212,168,83,.1);
  border-radius: 16px; padding: 30px; transition: .3s;
}
.review-card:hover { border-color: rgba(212,168,83,.3); }
.review-stars { color: #ffc107; font-size: 18px; margin-bottom: 12px; }
.review-text { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 15px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--dark);
}
.review-name { color: var(--white); font-weight: 600; font-size: 14px; }
.review-date { color: var(--text-muted); font-size: 12px; }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: rgba(26,26,46,.6); border: 1px solid rgba(212,168,83,.1);
  border-radius: 16px; overflow: hidden; transition: .4s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-tag {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: rgba(212,168,83,.15); color: var(--gold);
  font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.blog-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.blog-meta { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 12px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  border: 1px solid rgba(212,168,83,.2); background: rgba(26,26,46,.5);
  color: var(--white); font-family: inherit; font-size: 14px;
  transition: .3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,168,83,.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: rgba(26,26,46,.5); border: 1px solid rgba(212,168,83,.1);
  border-radius: 14px; padding: 25px; display: flex; gap: 15px;
  align-items: center;
}
.contact-info-icon {
  min-width: 50px; height: 50px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.contact-info-card h4 { color: var(--white); font-size: 15px; margin-bottom: 3px; }
.contact-info-card p { color: var(--text-muted); font-size: 13px; }

.map-container {
  border-radius: 16px; overflow: hidden; margin-top: 30px;
  border: 1px solid rgba(212,168,83,.1);
}
.map-container iframe { width: 100%; height: 350px; border: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--darker); border-top: 1px solid rgba(212,168,83,.1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-about img { height: 70px; margin-bottom: 15px; }
.footer-about p { color: var(--text-muted); font-size: 14px; }
.footer h4 {
  color: var(--white); font-size: 16px; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--gradient);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-muted); font-size: 14px; }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(212,168,83,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: .3s;
}
.footer-social a:hover { background: var(--gradient); color: var(--dark); border-color: transparent; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 25px; text-align: center;
  color: var(--text-muted); font-size: 13px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  height: 45vh; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  background: var(--gradient-dark);
  padding-top: 80px;
}
.page-banner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,53,.08), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(212,168,83,.08), transparent 60%);
}
.page-banner h1 {
  font-size: 52px; color: var(--white); position: relative; z-index: 1;
}
.page-banner p {
  color: var(--text-muted); font-size: 17px; margin-top: 10px;
  position: relative; z-index: 1; max-width: 500px;
}
.breadcrumb {
  position: relative; z-index: 1; margin-top: 15px;
  font-size: 14px; color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient); padding: 80px 0; text-align: center;
}
.cta-section h2 { font-size: 40px; color: var(--dark); font-weight: 700; margin-bottom: 15px; }
.cta-section p { color: rgba(0,0,0,.6); font-size: 17px; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 14px 36px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: none; cursor: pointer; transition: .3s;
  display: inline-block;
}
.btn-dark:hover { background: var(--secondary); transform: translateY(-3px); }

/* ===== GOOGLE REVIEW SPECIAL ===== */
.google-review-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark);
  padding: 14px 30px; border-radius: 50px; font-weight: 600;
  font-size: 15px; transition: .3s; border: 2px solid #4285f4;
}
.google-review-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(66,133,244,.3); }
.google-review-btn img { height: 24px; }

/* ===== CLIENTS MARQUEE ===== */
.clients-section { overflow: hidden; }
.clients-marquee-wrapper { overflow: hidden; width: 100%; }
.clients-marquee { overflow: hidden; position: relative; }
.clients-marquee::before, .clients-marquee::after {
  content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.clients-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee 35s linear infinite;
}
.clients-track-reverse { animation: marquee-reverse 35s linear infinite; }
.client-logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 12px;
  background: rgba(26,26,46,.7); border: 1px solid rgba(212,168,83,.12);
  color: var(--gold-light); font-size: 15px; font-weight: 600;
  white-space: nowrap; letter-spacing: .5px; transition: .3s;
  min-height: 56px;
}
.client-logo-item:hover {
  border-color: var(--gold); background: rgba(212,168,83,.08);
  transform: scale(1.05);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: .3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }
@media (max-width: 768px) { .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 26px; } }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 42px; }
  .section-header h2 { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-number { font-size: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px;
    height: 100vh; background: var(--darker);
    flex-direction: column; padding: 80px 30px 30px;
    transition: .4s; gap: 20px;
    border-left: 1px solid rgba(212,168,83,.1);
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  
  .hero { height: 100vh; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 40px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  
  .page-banner h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .cta-section h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .stat-number { font-size: 34px; }
  .section-header h2 { font-size: 24px; }
  .page-banner h1 { font-size: 28px; }
}
