/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN SYSTEM — Premium Blue & White Only
   ============================================ */
:root {
    /* Blues */
    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-800: #1E40AF;
    --blue-900: #1E3A5F;

    /* Whites */
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);

    /* Text on light bg — use blues */
    --text-heading: #1E3A5F;
    --text-body: #3B6A9E;
    --text-muted: #6B9ECF;

    /* Shadows — blue tinted */
    --shadow-xs: 0 1px 3px rgba(37, 99, 235, 0.06);
    --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 8px 40px rgba(37, 99, 235, 0.12);
    --shadow-xl: 0 16px 60px rgba(37, 99, 235, 0.15);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease);
    --transition-fast: all 0.2s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

::selection {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-heading);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-50); }
::-webkit-scrollbar-thumb { background: var(--blue-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-500); }

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVIGATION — Floating Glass Style
   ============================================ */
nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
    top: 8px;
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue-800);
    letter-spacing: -0.5px;
    text-decoration: none;
    position: relative;
}

.logo span {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--blue-600);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--blue-600);
    font-weight: 600;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    color: var(--white);
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span, .btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    color: var(--white);
    padding: 0.9rem 2.4rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2px;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--blue-600);
    padding: 0.9rem 2.4rem;
    border-radius: 14px;
    border: 2px solid var(--blue-200);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--blue-50);
    border-color: var(--blue-400);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION — Premium Light Blue
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--blue-50) 0%, var(--white) 60%, var(--blue-50) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Animated floating orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    top: -80px;
    right: -120px;
    animation: float-slow 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    bottom: -60px;
    left: -80px;
    animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.98); }
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--blue-600);
    border: 1px solid var(--blue-200);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s var(--ease) both;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s var(--ease) 0.15s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-body);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

/* Trust strip */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--blue-100);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 500;
}

.trust-item i {
    color: var(--blue-500);
    font-size: 1rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   SERVICES GRID (Homepage)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--blue-100);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-500);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--blue-100);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--text-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
    border-top: 1px solid var(--blue-50);
    border-bottom: 1px solid var(--blue-50);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-body);
    line-height: 1.9;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--blue-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--blue-50);
    border-radius: 14px;
    border: 1px solid var(--blue-100);
}

.stat-item h4 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-container {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
    border-radius: 28px;
    padding: 4rem;
    color: var(--white);
    display: flex;
    gap: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.contact-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2rem;
}

.contact-form-wrapper {
    flex: 1.5;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--text-heading);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--blue-100);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    background: var(--blue-50);
    color: var(--text-heading);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 4rem 0 2rem;
    background: var(--white);
    border-top: 1px solid var(--blue-100);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--blue-100);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .contact-container {
        flex-direction: column;
        padding: 2rem;
    }
    nav {
        width: calc(100% - 20px);
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding-top: 100px;
    }
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-trust {
        gap: 1rem;
        padding: 1rem;
    }
    .trust-item {
        font-size: 0.8rem;
    }
    .section {
        padding: 4rem 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO SPLIT LAYOUT
   ============================================ */
.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-left .hero-trust {
    justify-content: flex-start;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    animation: fadeInUp 1s var(--ease) 0.3s both;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Floating Cards on hero image */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--blue-100);
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    animation: float-card 4s ease-in-out infinite;
    z-index: 2;
}

.hero-floating-card i {
    font-size: 1.2rem;
    color: var(--blue-500);
    width: 36px;
    height: 36px;
    background: var(--blue-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-heading);
}

.hero-floating-card small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-top {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   LOGOS / INDUSTRY STRIP
   ============================================ */
.logos-strip {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--blue-50);
    border-bottom: 1px solid var(--blue-50);
}

.logos-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--blue-50);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.logo-item i {
    color: var(--blue-400);
}

.logo-item:hover {
    border-color: var(--blue-200);
    background: var(--blue-50);
    color: var(--blue-600);
}

/* ============================================
   SECTION BADGE
   ============================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid var(--blue-100);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Service card as links */
.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-500);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: auto;
    padding-top: 1rem;
    transition: gap 0.3s var(--ease);
}

.service-card:hover .card-link {
    gap: 0.75rem;
    color: var(--blue-700);
}

/* ============================================
   ABOUT — Badge on Image
   ============================================ */
.about-image {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--blue-100);
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--blue-500);
}

.about-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.about-badge small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.why-us-image {
    flex: 1;
}

.why-us-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.why-us-content {
    flex: 1;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--blue-50);
    border-radius: 14px;
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.why-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border: 1px solid var(--blue-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 1.1rem;
}

.why-item h4 {
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    top: -120px;
    left: -80px;
    border-radius: 50%;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cta-text {
    flex: 1;
    color: var(--white);
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-text p {
    color: var(--white-70);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--blue-700);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-banner .btn-primary::before {
    background: var(--blue-50);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-90);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-image {
    flex: 0.8;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--blue-100);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: 'Outfit', serif;
    color: var(--blue-100);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-color: transparent;
    color: var(--white);
}

.testimonial-card.featured::before {
    color: rgba(255,255,255,0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FBBF24;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.testimonial-card.featured p {
    color: var(--white-90);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    font-size: 1rem;
}

.testimonial-card.featured .author-avatar {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    color: var(--text-heading);
    font-size: 0.9rem;
}

.testimonial-card.featured .testimonial-author strong {
    color: var(--white);
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.testimonial-card.featured .testimonial-author small {
    color: var(--white-70);
}

/* ============================================
   CONTACT — Icon Boxes
   ============================================ */
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    font-size: 1.1rem;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.social-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE — All New Sections
   ============================================ */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-left .hero-trust {
        justify-content: center;
    }
    .hero-right {
        order: -1;
    }
    .hero-image-wrapper {
        max-width: 350px;
    }
    .hero-floating-card {
        display: none;
    }
    .why-us-layout {
        flex-direction: column;
    }
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-btns {
        justify-content: center;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column;
    }
    .about-badge {
        bottom: -10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }
    .hero-left {
        text-align: center;
    }
    .logos-row {
        gap: 1rem;
    }
    .logo-item {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
    .contact-container {
        flex-direction: column;
        padding: 2rem;
    }
    .cta-image {
        display: none;
    }
}
