/* ============================================================================
   BUSINESS INTERNET TECH - WORLD-CLASS DESIGN SYSTEM
   Enterprise-Grade Lead Generation UI
   ============================================================================ */

:root {
    /* Brand Colors */
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --accent: #F5C542;
    --accent-glow: rgba(245, 197, 66, 0.35);
    --warning: #ff9500;
    --success: #00c853;

    /* Neutral Palette */
    --dark-900: #0a0a0f;
    --dark-800: #12121a;
    --dark-700: #1a1a24;
    --dark-600: #252532;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --light-100: #f3f4f6;
    --light-50: #f9fafb;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #F5C542 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a24 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0,102,255,0.9) 0%, rgba(245,197,66,0.7) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0,102,255,0.15) 0%, transparent 70%);

    /* Typography */
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(0,102,255,0.3);
    --shadow-glow-accent: 0 0 40px rgba(245,197,66,0.3);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   BASE & TYPOGRAPHY
   ============================================================================ */

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

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-900);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-900);
}

/* ============================================================================
   HEADER - DARK TECH THEME
   ============================================================================ */

.site-header {
    background: var(--dark-900);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header .container {
    position: relative;
}

/* Subtle animated gradient line under header */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.site-logo img {
    max-height: 45px;
    transition: var(--transition-base);
}

.site-logo:hover img {
    transform: scale(1.02);
}

/* Navigation */
.main-navigation ul.menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation ul.menu > li > a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    color: var(--gray-300);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
    text-decoration: none;
}

.main-navigation ul.menu > li > a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* Dropdown Menus */
.main-navigation ul.menu > li {
    position: relative;
}

.main-navigation ul.menu > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: FontAwesome;
    margin-left: 5px;
    font-size: 11px;
}

.main-navigation ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-800, #12121a);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.main-navigation ul.menu > li:hover > ul.sub-menu {
    display: block;
}

.main-navigation ul.sub-menu > li > a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.main-navigation ul.sub-menu > li > a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    padding-left: 24px;
}

/* Phone Number in Header */
.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
}

.header-phone i {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================================================
   HERO SECTION - IMMERSIVE EXPERIENCE
   ============================================================================ */

.page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    overflow: hidden;
    padding: 80px 0 120px;
}

@media (min-width: 768px) {
    .page-header {
        margin-top: 105px;
        padding: 100px 0 140px;
    }
}

/* Inner page hero — shorter */
.page-header-inner {
    padding: 60px 0 80px;
}

@media (min-width: 768px) {
    .page-header-inner {
        padding: 80px 0 100px;
    }
}

/* Multi-layer overlay for depth */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,15,0.95) 0%,
        rgba(10,10,15,0.8) 40%,
        rgba(10,10,15,0.9) 100%
    );
    z-index: 1;
}

/* Animated gradient overlay */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    z-index: 2;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Grid pattern overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,102,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
    opacity: 0.5;
}

.page-header .inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Badge above title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(245,197,66,0.15);
    border: 1px solid rgba(245,197,66,0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    animation: fade-in-up 0.6s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin: 0 0 var(--space-lg);
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fade-in-up 0.6s ease 0.1s both;
}

/* Gradient text for emphasis */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    animation: fade-in-up 0.6s ease 0.2s both;
}

/* Trust indicators under hero */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fade-in-up 0.6s ease 0.4s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.trust-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.trust-item .label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation keyframes */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   PROVIDER SEARCH - THE LEAD GEN MACHINE
   ============================================================================ */

.provider-search-container {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: -80px auto var(--space-3xl);
    position: relative;
    z-index: 20;
}

/* Glassmorphism accent */
.provider-search-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.provider-search-container:hover::before {
    opacity: 0.1;
}

.search-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.search-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.search-header p {
    color: var(--gray-500);
    font-size: 15px;
}

#provider-lookup-form .form-control {
    height: 60px;
    font-size: 1.1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0 var(--space-lg);
    transition: var(--transition-base);
    background: var(--light-50);
}

#provider-lookup-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
    background: var(--white);
    outline: none;
}

#provider-lookup-form .form-control::placeholder {
    color: var(--gray-400);
}

#provider-lookup-form button,
.btn-primary-gradient {
    height: 60px;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

#provider-lookup-form button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
}

#provider-lookup-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

#provider-lookup-form button:hover::before {
    opacity: 1;
}

/* Search benefits micro-copy */
.search-benefits {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-300);
}

.search-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--gray-500);
}

.search-benefit i {
    color: var(--accent);
}

/* ============================================================================
   PROVIDER RESULTS CARDS
   ============================================================================ */

#provider-results {
    margin-top: var(--space-xl);
}

#provider-results .results-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-300);
}

#provider-results .results-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-900);
}

#provider-results .provider-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    transition: var(--transition-base);
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: var(--space-xl);
    align-items: center;
}

#provider-results .provider-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Legacy row-based cards (from existing PHP) */
#provider-results .row {
    background: var(--white) !important;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg) !important;
    padding: var(--space-lg);
    transition: var(--transition-base);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#provider-results .row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

#provider-results .col-md-4,
#provider-results .col-md-3,
#provider-results .col-md-5 {
    padding: var(--space-md);
}

#provider-results img {
    max-width: 180px;
    height: auto;
}

/* Provider info styling */
#provider-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#provider-results ul li {
    padding: var(--space-xs) 0;
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

#provider-results ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Action Buttons */
.ot-button .octf-btn-primary,
#provider-results .octf-btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full) !important;
    transition: var(--transition-base);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
    cursor: pointer;
}

.ot-button .octf-btn-primary:hover,
#provider-results .octf-btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Phone button special styling */
.ot-button .octf-btn-primary[href^="tel"] {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.ot-button .octf-btn-primary[href^="tel"]:hover {
    background: #00b894;
    border-color: #00b894;
}

/* Loading state */
.search-loading {
    text-align: center;
    padding: var(--space-2xl);
}

.search-loading i {
    font-size: 40px;
    color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================================================
   SECTION STYLING
   ============================================================================ */

.site-content {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background: var(--dark-900);
    color: var(--white);
}

.section-light {
    background: var(--light-50);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: rgba(0,102,255,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================================
   CASE STUDY / SOCIAL PROOF CARD
   ============================================================================ */

.case-study-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.case-study-image {
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    opacity: 0.7;
}

.case-study-content {
    padding: var(--space-2xl);
    color: var(--white);
}

.case-study-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark-900);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.case-study-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.case-study-content p {
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

/* ============================================================================
   SERVICE CARDS
   ============================================================================ */

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    height: 100%;
    border: 1px solid var(--gray-300);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition-base);
}

.service-link:hover {
    gap: var(--space-md);
    color: var(--primary-dark);
}

.btn-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-base);
}

.btn-service-link:hover {
    background: var(--primary-dark, #0052cc);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}

/* Carrier Strip */
.carrier-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.carrier-strip-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500, #6b7280);
    font-weight: 600;
    margin-right: 4px;
}

.carrier-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-300, #d1d5db);
    letter-spacing: 0.5px;
}

.carrier-name-muted {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent, #F5C542);
    letter-spacing: 0.5px;
}

.carrier-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-500, #6b7280);
}

@media (max-width: 767px) {
    .carrier-strip {
        gap: 8px;
    }
    .carrier-name, .carrier-strip-label {
        font-size: 11px;
    }
}

/* ============================================================================
   PARTNER CARDS
   ============================================================================ */

.partner-card {
    background: linear-gradient(135deg, var(--light-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    transition: var(--transition-base);
}

.partner-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.partner-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-icon i {
    font-size: 24px;
    color: var(--white);
}

.partner-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.partner-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.partner-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
    background: var(--gradient-primary);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-900, #0a0a0f);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    gap: 10px;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }

    /* Add bottom padding to body so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 70px;
    }
}

.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.mobile-cta-bar .mcta-call {
    background: var(--accent, #F5C542);
    color: var(--dark-900, #0a0a0f);
}

.mobile-cta-bar .mcta-quote {
    background: var(--primary, #0066ff);
    color: #fff;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
    background: var(--dark-900);
    color: var(--gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.site-footer h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.site-footer ul.list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul.list-items li {
    margin-bottom: var(--space-sm);
}

.site-footer ul.list-items li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
    display: inline-block;
}

.site-footer ul.list-items li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: var(--transition-base);
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-tagline {
    color: var(--accent);
    font-style: italic;
    line-height: 1.8;
    border-left: 3px solid var(--accent);
    padding-left: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
}

.copyright-text {
    font-size: 13px;
    color: var(--gray-500);
}

.copyright-text a {
    color: var(--accent);
    text-decoration: none;
}

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

#back-to-top i {
    color: var(--white);
}

/* ============================================================================
   TRUST BADGES & SOCIAL PROOF
   ============================================================================ */

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl) 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.7;
    transition: var(--transition-base);
}

.trust-badge:hover {
    opacity: 1;
}

.trust-badge img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.trust-badge:hover img {
    filter: grayscale(0%);
}

.trust-badge span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.stat-box {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-box .label {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================================
   SCROLL ANIMATIONS
   ============================================================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.animated > *:nth-child(1) { animation: fade-in-up 0.5s ease 0.1s forwards; }
.stagger-children.animated > *:nth-child(2) { animation: fade-in-up 0.5s ease 0.2s forwards; }
.stagger-children.animated > *:nth-child(3) { animation: fade-in-up 0.5s ease 0.3s forwards; }
.stagger-children.animated > *:nth-child(4) { animation: fade-in-up 0.5s ease 0.4s forwards; }

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 991px) {
    .hero-trust-strip {
        gap: var(--space-lg);
    }

    .case-study-card {
        grid-template-columns: 1fr;
    }

    .provider-search-container {
        margin: -40px var(--space-md) var(--space-2xl);
        padding: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .hero-trust-strip {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .search-benefits {
        flex-direction: column;
        gap: var(--space-md);
    }

    #provider-results .row {
        flex-direction: column;
        text-align: center;
    }

    #provider-results .col-md-4,
    #provider-results .col-md-3,
    #provider-results .col-md-5 {
        width: 100%;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: var(--space-2xl) 0;
    }

    .site-footer {
        text-align: center;
    }

    .footer-tagline {
        border-left: none;
        border-top: 3px solid var(--accent);
        padding-left: 0;
        padding-top: var(--space-md);
    }
}

@media (max-width: 480px) {
    .provider-search-container {
        padding: var(--space-lg);
        margin: -30px var(--space-sm) var(--space-xl);
    }

    #provider-lookup-form .form-control,
    #provider-lookup-form button {
        height: 54px;
    }

    .service-card {
        padding: var(--space-xl);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-500); }
.text-white { color: var(--white); }

.bg-dark { background: var(--dark-900); }
.bg-light { background: var(--light-50); }
.bg-gradient { background: var(--gradient-primary); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.py-section { padding: var(--space-4xl) 0; }
.py-section-sm { padding: var(--space-3xl) 0; }

/* Mobile menu styles */
.header_mobile {
    background: var(--dark-800);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile_mainmenu {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
}

.mobile_mainmenu li a {
    display: block;
    padding: var(--space-md) 0;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile_mainmenu li a:hover {
    color: var(--accent);
}

#mmenu_toggle {
    background: transparent;
    border: none;
    padding: var(--space-sm);
}

#mmenu_toggle i {
    color: var(--white);
    font-size: 24px;
}

/* Form validation states */
.form-control.is-valid {
    border-color: var(--success);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 13px;
    margin-top: var(--space-xs);
}

/* Alert boxes */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
