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

:root {
    --primary-blue: #1e40af;
    --electric-blue: #3b82f6;
    --sky-blue: #0ea5e9;
    --cyan: #06b6d4;
    --navy: #0f172a;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0ea5e9 75%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --shadow-soft: 0 4px 32px rgba(30, 64, 175, 0.12);
    --shadow-medium: 0 8px 40px rgba(30, 64, 175, 0.16);
    --shadow-strong: 0 20px 60px rgba(30, 64, 175, 0.24);
    --blur-glass: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--slate-700);
    overflow-x: hidden;
    background: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(30, 64, 175, 0.08);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.logo:hover .logo-icon::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--slate-700);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Enhanced Mobile Navigation CSS */
/* Add this to your existing CSS file or create a new mobile-navigation.css */

/* Fixed Mobile Navigation - Replace your existing mobile nav CSS with this */

/* Hide mobile toggle by default (desktop) */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Menu Toggle - Enhanced - Only show on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--blur-glass);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
    }
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-line:nth-child(2) {
    width: 24px;
    margin-left: auto;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Desktop navigation - default behavior */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        transform: none;
        opacity: 1;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 3rem;
        list-style: none;
    }

    .nav-menu li {
        margin: 0;
        opacity: 1;
        transform: none;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 0;
        text-decoration: none;
        color: var(--slate-700);
        font-weight: 500;
        font-size: 1rem;
        padding: 0.5rem 0;
        border-radius: 0;
        background: none;
        border: none;
        backdrop-filter: none;
        min-width: auto;
        justify-content: flex-start;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
    }

    .nav-menu a:hover {
        transform: translateY(-2px);
        box-shadow: none;
    }

    .nav-menu a:hover::before {
        width: 100%;
    }

    /* Hide icons on desktop */
    .nav-menu a i {
        display: none;
    }
}

/* Mobile navigation - only apply on mobile */
@media (max-width: 768px) {
    /* Enhanced Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 250, 252, 0.98) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        z-index: 1000;
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    /* Menu overlay pattern */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: var(--slate-700);
        font-weight: 600;
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(30, 64, 175, 0.1);
        min-width: 280px;
        justify-content: flex-start;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        opacity: 0;
        z-index: -1;
    }

    .nav-menu a:hover {
        color: var(--navy);
        transform: translateX(10px) scale(1.02);
        box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
    }

    .nav-menu a:hover::before {
        opacity: 1;
    }

    .nav-menu a i {
        display: block;
        font-size: 1.3rem;
        width: 24px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover i {
        transform: scale(1.2);
    }

    /* Body overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Responsive adjustments for smaller mobile */
    @media (max-width: 480px) {
        .nav-menu a {
            font-size: 1.3rem;
            min-width: 250px;
            padding: 0.8rem 1.5rem;
        }
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating circles */
.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: floatAround 25s infinite linear;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 10%;
    animation-duration: 30s;
    border-color: rgba(255, 255, 255, 0.25);
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    animation-duration: 35s;
    animation-direction: reverse;
    border-color: rgba(255, 255, 255, 0.2);
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 20%;
    animation-duration: 28s;
    border-color: rgba(255, 255, 255, 0.3);
}

.circle-4 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 25%;
    animation-duration: 40s;
    border-color: rgba(6, 182, 212, 0.25);
}

.circle-5 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
    animation-duration: 32s;
    border-color: rgba(255, 255, 255, 0.28);
}

.circle-6 {
    width: 220px;
    height: 220px;
    top: 35%;
    left: 5%;
    animation-duration: 38s;
    animation-direction: reverse;
    border-color: rgba(59, 130, 246, 0.2);
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(45px, -45px) rotate(95deg); }
    50% { transform: translate(0, -75px) rotate(185deg); }
    75% { transform: translate(-45px, -45px) rotate(275deg); }
    100% { transform: translate(0, 0) rotate(365deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 3rem;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.hero-info {
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

/* Simple fade up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive circles */
@media (max-width: 768px) {
    .circle-1 { width: 120px; height: 120px; }
    .circle-2 { width: 180px; height: 180px; }
    .circle-3 { width: 100px; height: 100px; }
    .circle-4 { width: 150px; height: 150px; }
    .circle-5 { width: 110px; height: 110px; }
    .circle-6 { width: 130px; height: 130px; }
}

@media (max-width: 480px) {
    .circle-1 { width: 80px; height: 80px; }
    .circle-2 { width: 120px; height: 120px; }
    .circle-3 { width: 60px; height: 60px; }
    .circle-4 { width: 100px; height: 100px; }
    .circle-5 { width: 70px; height: 70px; }
    .circle-6 { width: 90px; height: 90px; }
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--slate-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: all 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile responsive for buttons */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Replace your existing services CSS with this updated version */

/* Modern Minimalist Services Section */
.services-minimal {
    background: var(--slate-50);
    position: relative;
    padding: 120px 0;
}

.services-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--slate-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 5rem 0 4rem 0;
    align-items: stretch;
}

.service-minimal-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-minimal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-minimal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
}

.service-minimal-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--slate-200);
    line-height: 1;
    transition: all 0.4s ease;
}

.service-minimal-card:hover .service-minimal-number {
    color: rgba(59, 130, 246, 0.5);
}

.service-minimal-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.2);
    transition: all 0.4s ease;
}

.service-minimal-card:hover .service-minimal-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.service-minimal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-900);
    line-height: 1.3;
}

.service-minimal-card p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-minimal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-minimal-list span {
    background: var(--slate-100);
    color: var(--slate-700);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-minimal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.service-minimal-link:hover {
    color: var(--electric-blue);
    transform: translateX(4px);
}

.service-minimal-link i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.service-minimal-link:hover i {
    transform: translateX(6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-minimal {
        padding: 80px 0;
    }

    .services-minimal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 4rem 0;
    }

    .service-minimal-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        min-height: auto;
    }

    .service-minimal-number {
        font-size: 2.5rem;
        top: 1.2rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-minimal-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
        min-height: auto;
    }
}

/* About Section */
.about {
    background: var(--slate-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about .section-title {
    color: white;
}

.about .section-subtitle {
    color: var(--slate-400);
}

.doctor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-glass);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.doctor-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
}


/* Updated Footer Styles - Replace the existing footer CSS with this */

.footer {
    background: var(--slate-900);
    color: white;
    padding: 4rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-soft);
}

.footer-logo .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--slate-400);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-about p {
    color: var(--slate-300);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-nav {
    line-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.footer-nav a:hover {
    color: var(--cyan);
}

.footer-contact p {
    color: var(--slate-300);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--electric-blue);
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--slate-700);
    padding: 2rem 0;
    text-align: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-700), transparent);
    margin-bottom: 2rem;
}

.footer-copyright p {
    color: var(--slate-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-copyright p:last-child {
    color: var(--slate-400);
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 50%, var(--sky-blue) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: var(--blur-glass);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-glass);
    border-radius: 20px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
    border-radius: 16px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-button {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.newsletter-feature i {
    color: var(--cyan);
}


/* Mobile Responsive Updates */
@media (max-width: 768px) {
      .footer-section h4 {
        position: relative;
        text-align: center; /* centers heading text */
      }
      
      .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
    
      .footer-brand {
        align-items: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }


      .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-button {
        justify-content: center;
    }

    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 2rem;
    }

    .newsletter {
        padding: 3rem 0;
    }

    .newsletter-content {
        padding: 0 1rem;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: var(--blur-glass);
        width: 100%;
        padding: 2rem 0;
        box-shadow: var(--shadow-medium);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 80px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }





/* Resources Preview Section - Add this to your main.css */

.resources-preview {
    background: white;
    position: relative;
    padding: 120px 0;
}

.resources-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}

.resources-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 5rem 0 4rem 0;
    align-items: stretch;
}

.resource-preview-card {
    background: var(--slate-50);
    border-radius: 0px 0px 20px 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.04);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    min-height: 180px;
}

.resource-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.resource-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
    background: white;
}

.resource-preview-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.2);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.resource-preview-card:hover .resource-preview-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.resource-preview-content {
    flex: 1;
}

.resource-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-900);
    line-height: 1.3;
}

.resource-preview-content p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.resource-preview-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resource-preview-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--slate-600);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.resource-preview-stats span i {
    color: var(--electric-blue);
    font-size: 0.75rem;
}

.resource-preview-card:hover .resource-preview-stats span {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

/* Resources CTA */
.resources-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-resources {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.2);
}

.cta-resources:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resources-preview {
        padding: 80px 0;
    }

    .resources-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 4rem 0;
    }

    .resource-preview-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .resource-preview-icon {
        margin: 0 auto 1rem auto;
    }

    .resource-preview-stats {
        justify-content: center;
    }

    .resources-preview-cta {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .resource-preview-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .resources-preview-cta {
        margin-top: 2.5rem;
    }

    .resource-preview-stats {
        flex-direction: column;
        gap: 1rem;
    }
}




/* Contact Preview Section - Fully Mobile Responsive */

.contact-preview {
    background: linear-gradient(135deg, var(--slate-50) 0%, white 50%, var(--slate-50) 100%);
    position: relative;
    padding: clamp(60px, 8vw, 120px) 0;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin: clamp(2rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 4rem) 0;
    align-items: stretch;
}

.contact-preview-card {
    background: white;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    overflow: hidden;
    min-height: 400px;
}

.contact-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
}

/* Location Card Styles */
.location-card {
    display: flex;
    flex-direction: column;
}

.location-map {
    height: clamp(120px, 25vw, 180px);
    position: relative;
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-50) 100%);
}

.map-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
}

.map-overlay h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-overlay p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.9;
}

.location-info {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-header {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.location-icon {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    flex-shrink: 0;
}

.location-header h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
    line-height: 1.2;
}

.location-details-full {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    border-bottom: 1px solid var(--slate-100);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: clamp(28px, 6vw, 32px);
    height: clamp(28px, 6vw, 32px);
    background: var(--slate-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
    background: var(--electric-blue);
    color: white;
    transform: scale(1.05);
}

.detail-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.detail-label {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    color: var(--slate-700);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

/* Methods Card Styles */
.methods-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
}

.methods-header {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
    border-bottom: 2px solid var(--slate-100);
}

.methods-icon {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    flex-shrink: 0;
}

.methods-title {
    flex: 1;
    min-width: 0;
}

.methods-title h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.methods-title p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--slate-600);
    margin: 0;
    line-height: 1.4;
}

.contact-methods {
    flex: 1;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--slate-50);
}

.method-item:last-child {
    margin-bottom: 0;
}

.method-item.featured {
    border: 2px solid var(--electric-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
}

.method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    background: white;
}

.method-icon {
    width: clamp(40px, 9vw, 45px);
    height: clamp(40px, 9vw, 45px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.method-icon.telehealth {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--sky-blue) 100%);
}

.method-icon.phone {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.method-icon.contact {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.method-item:hover .method-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.method-content {
    flex: 1;
    min-width: 0;
}

.method-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    gap: clamp(0.5rem, 1vw, 0.75rem);
    flex-wrap: wrap;
}

.method-content h4 {
    font-size: clamp(1rem, 2.3vw, 1.1rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
    line-height: 1.3;
}

.method-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.method-badge.recommended {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); }
}

.method-content p {
    color: var(--slate-600);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.5;
}

.method-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 500;
    color: var(--slate-700);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--electric-blue);
    transform: translateY(-1px);
}

.feature-item i {
    color: var(--electric-blue);
    font-size: clamp(0.65rem, 1.6vw, 0.75rem);
    flex-shrink: 0;
}

.method-coverage {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-top: clamp(0.75rem, 2vw, 1rem);
    padding-top: clamp(0.75rem, 2vw, 1rem);
    border-top: 1px solid var(--slate-200);
    flex-wrap: wrap;
}

.coverage-label {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    color: var(--slate-500);
    flex-shrink: 0;
}

.coverage-states {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.coverage-states span {
    background: var(--electric-blue);
    color: white;
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 1.5vw, 0.8rem);
    border-radius: 8px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    white-space: nowrap;
}

.phone-duration {
    margin-top: clamp(0.75rem, 2vw, 1rem);
    padding-top: clamp(0.75rem, 2vw, 1rem);
    border-top: 1px solid var(--slate-200);
}

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 12px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
}

.process-steps {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-top: clamp(0.75rem, 2vw, 1rem);
    padding-top: clamp(0.75rem, 2vw, 1rem);
    border-top: 1px solid var(--slate-200);
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: min-content;
}

.step-number {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 700;
    flex-shrink: 0;
}

.step-item span:last-child {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 500;
    color: var(--slate-600);
    line-height: 1.3;
}

/* Contact Links */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.contact-link:hover {
    color: var(--electric-blue);
    transform: translateX(4px);
}

.contact-link.primary {
    background: var(--gradient-primary);
    color: white;
    padding: clamp(0.7rem, 2vw, 0.8rem) clamp(1.2rem, 3vw, 1.5rem);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.2);
    margin-top: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    text-align: center;
}

.contact-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    color: white;
}

/* Contact Preview CTA */
.contact-preview-cta {
    background: var(--slate-900);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.contact-preview-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.cta-content h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: var(--slate-400);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.4;
}

.cta-contact-main {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    background: var(--gradient-primary);
    color: white;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-contact-main:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .contact-preview-card {
        min-height: auto;
    }
    
    .method-item {
        padding: clamp(1.5rem, 4vw, 2rem);
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .method-content {
        text-align: center;
        width: 100%;
    }
    
    .method-header {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .method-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .feature-item {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
    
    .method-coverage,
    .phone-duration,
    .process-steps {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .coverage-states {
        justify-content: center;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-item {
        justify-content: center;
        width: 100%;
        max-width: 200px;
    }
    
    .contact-preview-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 2rem;
    }
    
    .cta-contact-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-preview {
        padding: 60px 0;
    }
    
    .contact-preview-card {
        margin: 0 1rem;
    }
    
    .location-map {
        height: 120px;
    }
    
    .methods-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .methods-card {
        padding: 1.5rem;
    }
    
    .method-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .method-content h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .method-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .method-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .coverage-states {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .coverage-states span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .step-item {
        justify-content: center;
        text-align: center;
        padding: 0.5rem;
    }
    
    .duration-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}