@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --accent2: #10b981;
  --dark: #0f172a;
  --dark2: #1e293b;
  --text: #334155;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
  --gradient2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --shadow: 0 20px 60px rgba(26,86,219,0.15);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(15,23,42,0.98); height: 60px; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 45px; border-radius: 8px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1; }
.nav-logo-text .tagline { font-size: 0.65rem; color: var(--secondary); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-links a {
  color: #cbd5e1; text-decoration: none; padding: 0.5rem 0.8rem;
  font-size: 0.85rem; font-weight: 500; border-radius: 8px;
  transition: all 0.3s ease; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--dark2); border-radius: 12px; padding: 0.5rem;
  min-width: 220px; opacity: 0; visibility: hidden;
  transition: all 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 4px); }
.nav-links .dropdown-menu a {
  display: block; padding: 0.4rem 0.7rem; font-size: 0.78rem; border-radius: 6px; white-space: nowrap;
}

.nav-cta { background: var(--gradient); color: #fff !important; padding: 0.5rem 1.2rem !important; border-radius: 25px !important; font-weight: 600 !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(26,86,219,0.4); background: var(--gradient) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1002; position: relative; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: all 0.35s cubic-bezier(0.23,1,0.32,1); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  padding-top: 70px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute; display: block; width: 4px; height: 4px;
  background: rgba(14,165,233,0.6); border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
}
@keyframes float-particle {
  0%,100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-80px) translateX(30px) scale(1.5); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.3); color: var(--secondary); padding: 0.4rem 1rem; border-radius: 25px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; animation: fadeInDown 0.8s ease; }
.hero-title { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-title .highlight { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-desc { font-size: 1rem; color: #94a3b8; line-height: 1.8; margin-bottom: 2rem; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient); color: #fff; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 10px 30px rgba(26,86,219,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(26,86,219,0.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

.hero-image-wrap { position: relative; animation: fadeInRight 0.8s ease 0.4s both; }
.hero-img-main { width: 100%; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-stats { position: absolute; bottom: -20px; left: -20px; background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 1rem 1.5rem; display: flex; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; }
.stat-label { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; color: var(--primary); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { color: #64748b; font-size: 1rem; line-height: 1.8; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; text-decoration: none; display: block;
  background: #fff; border: 1px solid #e2e8f0;
}
.service-card-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; position: relative; }
.service-card-body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--card-gradient, var(--gradient)); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.service-card:hover .service-card-body::before { transform: scaleX(1); }
.service-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 0.8rem; transition: transform 0.3s ease; }
.service-card:hover .service-card-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.82rem; color: #64748b; line-height: 1.7; }
.service-card .arrow { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; margin-top: 0.8rem; transition: gap 0.3s; color: var(--primary); }
.service-card:hover .arrow { gap: 8px; }
/* Legacy icon-only cards */
.service-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.2rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }

/* HIGHLIGHT CARDS */
.highlight-card {
  background: var(--dark); border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 450px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2); margin-bottom: 2rem;
  position: relative;
}
.highlight-card.reverse { direction: rtl; }
.highlight-card.reverse > * { direction: ltr; }
.highlight-img { position: relative; overflow: hidden; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.highlight-card:hover .highlight-img img { transform: scale(1.05); }
.highlight-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
.highlight-badge { display: inline-block; background: var(--gradient2); color: #fff; padding: 0.3rem 1rem; border-radius: 25px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; width: fit-content; }
.highlight-info h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.highlight-info p { color: #94a3b8; line-height: 1.8; margin-bottom: 1.5rem; }
.highlight-features { list-style: none; margin-bottom: 2rem; }
.highlight-features li { display: flex; align-items: center; gap: 10px; color: #cbd5e1; font-size: 0.9rem; padding: 0.4rem 0; }
.highlight-features li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--accent2); border-radius: 50%; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; }

/* SPLIT SECTION */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.split-img-wrap img { width: 100%; display: block; transition: transform 0.6s ease; }
.split-img-wrap:hover img { transform: scale(1.03); }
.split-img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 12px; padding: 0.8rem 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.split-img-badge .num { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; }
.split-img-badge .lbl { font-size: 0.7rem; color: #64748b; font-weight: 600; }

/* WHY CHOOSE */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.why-card { background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%); border-radius: 16px; padding: 1.8rem 1.5rem; text-align: center; transition: transform 0.3s ease; border: 1px solid rgba(26,86,219,0.1); }
.why-card:hover { transform: translateY(-5px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.why-card p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-bg { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; backdrop-filter: blur(10px); transition: transform 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: #cbd5e1; font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 0.9rem; }
.author-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.author-loc { font-size: 0.75rem; color: #64748b; }

/* CTA SECTION */
.cta-section { background: var(--gradient); text-align: center; padding: 5rem 2rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-section h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--primary); padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* FOOTER */
footer { background: #030712; color: #94a3b8; padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 55px; margin-bottom: 1rem; border-radius: 8px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.footer-h { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--secondary); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; }
.contact-icon { font-size: 1rem; margin-top: 2px; }
.contact-item a, .contact-item span { color: #64748b; text-decoration: none; font-size: 0.85rem; line-height: 1.6; transition: color 0.3s; }
.contact-item a:hover { color: var(--secondary); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #1e293b; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }

/* FLOATING BUTTONS */
.float-btns { position: fixed; bottom: 30px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.float-btn:hover { transform: scale(1.15) translateY(-3px); }
.float-btn .tooltip { position: absolute; right: 65px; background: var(--dark); color: #fff; padding: 0.3rem 0.8rem; border-radius: 8px; font-size: 0.78rem; white-space: nowrap; opacity: 0; transition: opacity 0.3s; pointer-events: none; font-family: 'Inter', sans-serif; }
.float-btn:hover .tooltip { opacity: 1; }
.float-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; animation: pulse-wa 2s ease-in-out infinite; }
.float-call { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.float-mail { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); } }

/* PAGE HERO (Inner pages) */
.page-hero {
  padding: 120px 2rem 70px;
  background: linear-gradient(135deg, #1a56db 0%, #0c4a6e 60%, #0f172a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 1.5rem; font-size: 0.85rem; }
.breadcrumb a { color: #93c5fd; text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Inner page section backgrounds */
.inner-section-alt { background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%); }
.process-section { background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  /* Use transform to show/hide — avoids display:none fight */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 17, 38, 0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 0;
    gap: 0; overflow-y: auto;
    z-index: 1001;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
    align-items: stretch;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-links > li > a {
    display: block; padding: 1rem 1.8rem;
    font-size: 1.05rem; font-weight: 600;
    color: #e2e8f0; border-radius: 0;
    transition: color 0.2s, background 0.2s;
    background: transparent !important;
  }
  .nav-links > li > a:hover { color: #60a5fa; }
  .nav-links .dropdown-menu {
    position: static; opacity: 1 !important; visibility: visible !important;
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.04);
    border-radius: 0; padding: 0.5rem 1.2rem 1.2rem;
    box-shadow: none; gap: 6px;
    transform: none !important;
  }
  .nav-links .dropdown-menu a {
    padding: 0.6rem 0.8rem; font-size: 0.82rem;
    color: #94a3b8; background: rgba(255,255,255,0.05) !important;
    border-radius: 8px; white-space: normal;
    transition: all 0.2s;
  }
  .nav-links .dropdown-menu a:hover { color: #fff; background: rgba(26,86,219,0.4) !important; }
  .nav-links .nav-cta { margin: 1rem 1.8rem 0.5rem; border-radius: 12px !important; text-align: center; justify-content: center; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .split-section, .split-section.reverse { grid-template-columns: 1fr; direction: ltr; }
  .highlight-card, .highlight-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .highlight-info { padding: 2rem 1.5rem; }
  .process-steps-grid { grid-template-columns: 1fr 1fr !important; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .services-all-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { justify-content: center; }
  .hero-stats { left: 50%; transform: translateX(-50%); bottom: -30px; }
  .process-steps-grid { grid-template-columns: 1fr !important; }
  .services-all-grid { grid-template-columns: 1fr !important; }
}
