/*
Theme Name: PEAK Internet
Theme URI: https://peakinternet.com/
Author: PEAK Internet
Author URI: https://peakinternet.com/
Description: Custom WordPress theme for PEAK Internet
Version: 1.0
Text Domain: peak-internet
*/

.main-nav-ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu-ul li a {
    color: #9CA3AF;
    transition: color 150ms ease;
    text-decoration: none;
}
.footer-menu-ul li a:hover {
    color: #FFF;
}

/* =========================================
   GENERIC PAGE & EDITOR STYLES
======================================== */
.generic-page-container {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.generic-page-container h1, 
.template-content h1,
.support-article-content h1 { font-size: 2.5rem; margin-bottom: 24px; color: var(--color-primary-dark); }
.generic-page-container h2,
.template-content h2,
.support-article-content h2 { font-size: 2rem; margin-top: 40px; margin-bottom: 16px; color: var(--color-primary-dark); }
.generic-page-container h3,
.template-content h3,
.support-article-content h3 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 16px; }
.generic-page-container p,
.template-content p,
.support-article-content p { margin-bottom: 24px; font-size: 1.125rem; color: var(--color-text-main); }
.generic-page-container ul, .generic-page-container ol,
.template-content ul, .template-content ol,
.support-article-content ul, .support-article-content ol { margin-bottom: 24px; padding-left: 24px; font-size: 1.125rem; }
.generic-page-container li,
.template-content li,
.support-article-content li { margin-bottom: 8px; }
.generic-page-container img,
.template-content img,
.support-article-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin: 32px 0; }
.generic-page-container figure,
.template-content figure,
.support-article-content figure { margin: 32px 0; }
.generic-page-container figcaption,
.template-content figcaption,
.support-article-content figcaption { text-align: center; color: var(--color-text-mute); font-size: 0.875rem; margin-top: 8px; }

/* Block Alignments */
.aligncenter { display: block; margin: 0 auto; }
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { margin-left: calc(-100vw / 2 + 100% / 2); margin-right: calc(-100vw / 2 + 100% / 2); max-width: 100vw; width: 100vw; }

.custom-logo {
    max-height: 40px;
    width: auto;
}

/* Accessibility / Screen Readers */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =========================================
   SPECIALIZED TEMPLATE STYLES
======================================== */

/* Styles for Service Sidebar */
.template-service-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
}

.template-content {
    flex: 1;
    min-width: 0; /* Prevents flex blowout */
}

.template-sidebar {
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}

.service-widget-area {
    background-color: var(--color-bg-mute);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-widget-area h2.widgettitle {
    font-size: 1.25rem;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
    display: inline-block;
}

.service-widget-area ul {
    list-style: none;
    padding: 0;
}

.service-widget-area li {
    margin-bottom: 12px;
}

.service-widget-area a {
    color: var(--color-primary);
    font-weight: 500;
}

.service-widget-area a:hover {
    color: var(--color-primary-dark);
}

/* Styles for Support Article */
.support-article-container {
    max-width: 700px; /* Narrower for optimal reading */
    margin: 0 auto;
    padding: 80px 0;
}

.support-article-header {
    text-align: center;
    margin-bottom: 48px;
}

.support-article-header .badge {
    background-color: var(--color-primary-light);
    color: #FFF;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

@media (max-width: 768px) {
    .template-service-sidebar {
        flex-direction: column;
    }
    .template-sidebar {
        max-width: 100%;
    }
}

/* === MAIN THEME STYLES IMPORTED DIRECTLY === */
/* =========================================
   DESIGN TOKENS & VARIABLES
========================================= */
:root {
    /* Color Palette - Modern & Premium */
    --color-primary: #065F46;
    /* Deep Emerald */
    --color-primary-light: #10B981;
    --color-primary-dark: #022c20;
    --color-primary-gradient: linear-gradient(135deg, #065F46 0%, #10B981 100%);
    --color-primary-gradient-hover: linear-gradient(135deg, #044E39 0%, #059669 100%);

    --color-secondary: #F59E0B;
    /* Vibrant Orange for accents/CTA */
    --color-secondary-hover: #D97706;
    --color-secondary-gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

    --color-bg-main: #F8FAFC;
    --color-bg-surface: #FFFFFF;
    --color-bg-mute: #F1F5F9;

    --color-text-main: #0F172A;
    --color-text-mute: #64748B;

    --color-border: #E2E8F0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --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 20px rgba(16, 185, 129, 0.4);
    --shadow-glow-secondary: 0 0 20px rgba(245, 158, 11, 0.4);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   BUTTONS & INPUTS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-secondary-gradient);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.utility-bar {
    background-color: var(--color-primary-dark);
    color: #D1D5DB;
    font-size: 0.875rem;
    padding: 6px 0;
}

.utility-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left i,
.utility-right i {
    margin-right: 4px;
    vertical-align: text-bottom;
}

.utility-right a {
    margin-left: 16px;
    color: #E5E7EB;
}

.utility-right a:hover {
    color: #FFF;
}

.main-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.logo-peak {
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-internet {
    font-weight: 300;
    color: var(--color-text-mute);
    margin-left: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.segment-toggle {
    display: flex;
    background-color: var(--color-bg-mute);
    border-radius: var(--radius-pill);
    padding: 4px;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-mute);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-btn.active {
    background-color: var(--color-bg-surface);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--color-bg-surface);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-mute);
    margin-bottom: 40px;
}

.badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
}

.availability-check {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-pill);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
}

.input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-group i {
    font-size: 1.5rem;
    color: var(--color-text-mute);
    margin-left: 16px;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    background: transparent;
}

.search-btn {
    padding: 14px 32px;
    font-size: 1.125rem;
}

.geo-help {
    font-size: 0.875rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 12px 0 0 16px;
    cursor: pointer;
    font-weight: 500;
}

/* Background accents */
.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 95, 70, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.05) translateY(-20px);
        opacity: 1;
    }
}

/* =========================================
   FEATURES BAR
========================================= */
.features-bar {
    background-color: var(--color-primary-dark);
    color: #FFF;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary-light);
}

.feature-item h4 {
    color: #FFF;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: #A7F3D0;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* =========================================
   UTILS & ANIMATIONS
========================================= */
.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.bg-mute {
    background-color: var(--color-bg-mute);
}

.mt-4 {
    margin-top: 24px;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base btn classes to complement primary */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(6, 95, 70, 0.05);
}

.btn-outline.dark {
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
}

.btn-outline.dark:hover {
    background-color: var(--color-primary-dark);
    color: #FFF;
}

/* =========================================
   PLANS SECTION
========================================= */
.plans-section {
    padding: 100px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-mute);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 420px;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    overflow: visible;
    /* Changed from hidden to show the absolute badge */
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: var(--color-primary-gradient);
    border-radius: var(--radius-lg);
    clip-path: inset(0 100% calc(100% - 4px) 0);
    transition: clip-path var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.3);
}

.card:hover::before {
    clip-path: inset(0 0 calc(100% - 4px) 0);
}

.card.premium {
    border: 2px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
        var(--color-primary-gradient) border-box;
    box-shadow: var(--shadow-glow);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-light);
    color: #FFF;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform var(--transition-bounce);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--color-text-mute);
    margin-bottom: 24px;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    transform: translateY(-12px);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    line-height: 1;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.125rem;
    color: var(--color-text-mute);
    margin-left: 4px;
    transform: translateY(8px);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-mute);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.plan-features i {
    color: var(--color-primary-light);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-section {
    padding: 80px 0;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-text {
    flex: 1;
    max-width: 450px;
}

.services-text h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.services-text p {
    font-size: 1.125rem;
    color: var(--color-text-mute);
}

.services-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.3);
}

.s-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-box p {
    color: var(--color-text-mute);
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
========================================= */
.main-footer {
    background-color: #111827;
    /* Very Dark Gray/Black */
    color: #9CA3AF;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo .logo-peak {
    color: var(--color-primary-light);
}

.footer-logo .logo-internet {
    color: #F3F4F6;
}

.footer-brand p {
    margin: 24px 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFF;
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--color-primary-light);
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
}

.link-group h4 {
    color: #F3F4F6;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.link-group a {
    display: block;
    margin-bottom: 16px;
}

.link-group a:hover {
    color: #FFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a:hover {
    color: #FFF;
}

/* Mobile Responsiveness Setup */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-content {
        flex-direction: column;
    }

    .services-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        order: 3;
    }

    .header-actions {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .pricing-cards,
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* Custom Autocomplete Styles */
.custom-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: #f5f5f5;
    color: var(--primary);
}

.input-group {
    position: relative;
}

/* === Business Page Styles === */
.page-header {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .page-header h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .services-overview {
            padding: 80px 0;
        }

        .biz-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .biz-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .biz-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .biz-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .biz-card:hover::before {
            transform: scaleX(1);
        }

        .biz-card-icon {
            font-size: 3rem;
            color: var(--color-primary);
            margin-bottom: 24px;
            background: rgba(16, 185, 129, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-lg);
            transition: var(--transition);
        }

        .biz-card:hover .biz-card-icon {
            background: var(--color-primary);
            color: white;
            transform: scale(1.05);
        }

        .biz-card h3 {
            font-size: 1.5rem;
            color: var(--color-text-main);
            margin-bottom: 16px;
        }

        .biz-card p {
            color: var(--color-text-mute);
            margin-bottom: 24px;
            flex-grow: 1;
            line-height: 1.7;
        }

        .biz-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-primary);
            font-weight: 600;
            text-decoration: none;
            margin-top: auto;
            transition: var(--transition);
        }

        .biz-card-link:hover {
            color: var(--color-primary-dark);
            gap: 12px;
        }

        /* Make the whole card clickable */
        .biz-card-link::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .cta-section {
            background-color: var(--color-bg-mute);
            padding: 80px 0;
            text-align: center;
        }

        .cta-box {
            background: white;
            padding: 60px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--color-primary-dark);
        }

        .cta-phone {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-primary);
            display: block;
            margin: 30px 0;
            text-decoration: none;
            transition: var(--transition);
        }

        .cta-phone:hover {
            color: var(--color-primary-dark);
            transform: scale(1.02);
            display: inline-block;
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .cta-box {
                padding: 40px 20px;
            }

            .cta-phone {
                font-size: 2rem;
            }
        }