/* ===== CSS VARIABLES ===== */
:root {
  --blue: #1E90FF;
  --orange: #E65C00;
  --dark: #0D1B2A;
  --gold: #C9A84C;
  --gray: #F5F6F8;
  --text: #2d3748;
  --text-light: #718096;
  --white: #FFFFFF;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* ===== NAVBAR ===== */
.navbar-main {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 76px;
}
.nav-logo img { height: 50px; }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem; align-items: center;
}
.nav-link {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
  border-radius: 6px; transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange); background: rgba(230, 92, 0, 0.07);
}
.btn-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: white;
  padding: 0.6rem 1.4rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; white-space: nowrap;
  transition: all 0.3s;
}
.btn-call:hover {
  background: #c94f00; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230, 92, 0, 0.4);
}
.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--dark); cursor: pointer; padding: 0.25rem;
}

@media (max-width: 1023px) {
  .hamburger { display: block; }
  .btn-call { display: none; }
  .nav-links {
    position: fixed; top: 76px; left: 0; width: 100%;
    background: white; flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.75rem 0 1rem; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.85rem 2rem; border-radius: 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: white;
  padding: 0.8rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid var(--orange); transition: all 0.3s; cursor: pointer;
}
.btn-primary:hover {
  background: #c94f00; border-color: #c94f00;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230, 92, 0, 0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: white;
  padding: 0.8rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7); transition: all 0.3s;
}
.btn-outline:hover {
  background: white; color: var(--dark); border-color: white;
  transform: translateY(-2px);
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: white;
  padding: 0.8rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; transition: all 0.3s;
}
.btn-blue:hover {
  background: #1478e0; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.4);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark); padding: 8rem 2rem 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(30,144,255,0.2), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(230,92,0,0.15), transparent 60%);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: white; position: relative; margin-bottom: 0.5rem;
}
.page-header p { color: rgba(255,255,255,0.65); position: relative; font-size: 1rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  margin-top: 1rem; position: relative;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: #ff7a2e; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===== SECTION STYLES ===== */
.section { padding: 5.5rem 2rem; }
.section-alt { background: var(--gray); }
.section-dark { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block; color: var(--orange);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--dark); line-height: 1.25; margin-bottom: 1rem;
}
.section-dark .section-title { color: white; }
.section-title span { color: var(--orange); }
.section-subtitle {
  color: var(--text-light); font-size: 1rem; line-height: 1.8; max-width: 600px;
}
.divider {
  width: 55px; height: 3px; background: var(--orange);
  margin: 0.85rem 0 2rem; border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.sec-header-center { margin-bottom: 3.5rem; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.55) 60%, rgba(30,144,255,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 2rem 4rem; width: 100%;
}
.hero-tag {
  display: inline-block; background: rgba(230,92,0,0.9); color: white;
  padding: 0.4rem 1.1rem; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: white; line-height: 1.15; margin-bottom: 1.5rem;
  max-width: 680px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.82); font-size: 1.1rem;
  line-height: 1.8; max-width: 520px; margin-bottom: 2.75rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark); padding: 2.75rem 2rem; }
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0;
}
.stat-item { text-align: center; padding: 1.25rem 1rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem; font-weight: 700; color: var(--orange);
  display: block; line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.6); font-size: 0.8rem;
  margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover; display: block;
}
.about-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--orange); color: white;
  padding: 1.75rem 2rem; border-radius: 20px 0 0 0;
  text-align: center;
}
.about-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.25rem; line-height: 1;
}
.about-badge span { font-size: 0.75rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.75rem 0 2.25rem; }
.checklist li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; }
.checklist li i { color: var(--orange); font-size: 1rem; flex-shrink: 0; }

/* ===== CARDS ===== */
.card {
  background: white; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.card-img { height: 230px; object-fit: cover; width: 100%; }
.card-body { padding: 1.85rem; }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(30,144,255,0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.card-icon.orange { background: rgba(230,92,0,0.1); color: var(--orange); }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--dark);
}
.card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: 12px;
  transition: background 0.3s;
}
.why-item:hover { background: rgba(30,144,255,0.04); }
.why-icon {
  width: 50px; height: 50px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #5ab4ff);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.why-icon.orange { background: linear-gradient(135deg, var(--orange), #ff8c40); }
.why-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROJECT CARDS ===== */
.proj-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 340px;
}
.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.proj-card:hover img { transform: scale(1.07); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  transition: all 0.4s;
}
.proj-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.55) 70%, rgba(30,144,255,0.15) 100%);
}
.proj-cat {
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 0.4rem;
}
.proj-title {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.6rem; margin-bottom: 0.5rem;
}
.proj-desc { color: rgba(255,255,255,0.72); font-size: 0.875rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  position: relative;
  background-image: url('../images/testimonials-bg.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 5.5rem 2rem;
}
.testimonial-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13, 27, 42, 0.92);
}
.testimonial-section > .container { position: relative; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--orange);
  border-radius: 14px; padding: 2.25rem;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.09); transform: translateY(-5px);
}
.stars { color: #FFC107; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote-icon { color: var(--orange); font-size: 1.75rem; margin-bottom: 1rem; opacity: 0.8; }
.testimonial-card > p { color: rgba(255,255,255,0.82); line-height: 1.85; font-size: 0.92rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 600; color: white; font-size: 0.95rem; }
.author-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 6rem 2rem; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13, 27, 42, 0.87);
}
.cta-section > .cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-section h2 span { color: var(--orange); }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2.5rem; }
.contact-cards { display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; margin-top: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 14px;
  padding: 2.25rem 2.5rem; text-align: center; color: white;
  min-width: 210px; transition: all 0.3s;
}
.contact-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.contact-card i { font-size: 2rem; color: var(--orange); margin-bottom: 0.85rem; display: block; }
.contact-card .cc-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; display: block; }
.contact-card a, .contact-card .cc-val {
  color: white; font-weight: 600; font-size: 1rem;
  display: block; margin-top: 0.45rem; line-height: 1.5;
}
.contact-card a:hover { color: var(--orange); }

/* ===== VALUE / FEATURE CARDS ===== */
.value-card {
  text-align: center; padding: 2.5rem 1.75rem;
  border-radius: 16px; background: white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
}
.value-card:hover { border-bottom-color: var(--orange); transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.12); }
.value-card i { font-size: 2.4rem; color: var(--blue); margin-bottom: 1.25rem; display: block; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--dark); }
.value-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.75; }

/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block:last-child { margin-bottom: 0; }
.service-img-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.service-img-wrap img { width: 100%; height: 400px; object-fit: cover; display: block; }
.service-icon-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(230,92,0,0.1); color: var(--orange);
  padding: 0.45rem 1rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
}
.service-block h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.service-block p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.95rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text); }
.feature-list li i { color: var(--orange); font-size: 0.8rem; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-card {
  background: white; border-radius: 16px;
  padding: 2.75rem 2rem; text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 4px solid var(--orange); transition: all 0.3s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.info-card i { font-size: 2.4rem; color: var(--orange); margin-bottom: 1.25rem; display: block; }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 0.85rem; }
.info-card a, .info-card .info-text {
  color: var(--text-light); font-size: 0.95rem; display: block; line-height: 1.7;
}
.info-card a:hover { color: var(--orange); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--text-light); padding: 0.5rem 0; border-bottom: 1px dashed rgba(0,0,0,0.08); }
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--dark); }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark); margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--gray);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-light); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }
.policy-content ul { padding-left: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.policy-content ul li { line-height: 1.8; margin-bottom: 0.4rem; font-size: 0.95rem; }
.policy-content strong { color: var(--dark); }

/* ===== FOOTER ===== */
.footer-main { background: var(--dark); padding: 4.5rem 2rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 2fr;
  gap: 3rem; padding-bottom: 3.5rem;
}
.footer-logo-wrap {
  display: inline-block; background: rgba(255,255,255,0.95);
  padding: 8px 12px; border-radius: 8px; margin-bottom: 1.25rem;
}
.footer-logo-wrap img { height: 38px; }
.footer-col > .footer-desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.8; }
.footer-col h4 {
  color: white; font-weight: 600; font-size: 0.95rem;
  margin-bottom: 1.5rem; position: relative; padding-bottom: 0.85rem;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--orange); border-radius: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-bottom: 0.9rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 0.2rem; width: 16px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== ABOUT PAGE ===== */
.mission-card {
  background: white; border-radius: 14px;
  padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid var(--orange); transition: all 0.3s;
}
.mission-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-3px); }
.mission-card i { font-size: 2rem; color: var(--blue); margin-bottom: 1rem; display: block; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 0.6rem; }
.mission-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: 320px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .why-items { grid-template-columns: 1fr; }
  .service-img-wrap img { height: 280px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.25rem; }
  .hero-btns { flex-direction: column; }
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 320px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
