/* Global Styles */
:root {
    --primary-color: #0F4C81;
    --success-color: #198754;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-medium: #6C757D;
    --white: #FFFFFF;
    
    /* Carrier Colors */
    --verizon: #CD0400;
    --att: #00A8E0;
    --tmobile: #E20074;
    --uscellular: #00539B;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A6F97 100%);
    color: white;
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.address-form {
    max-width: 800px;
    margin: 0 auto;
}

.address-form .input-group {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

.address-form .form-control {
    height: 56px;
    border: none;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.address-form .btn {
    height: 56px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 2rem;
}

.form-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.loading {
    margin-top: 2rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--white);
}

.trust-item {
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* How It Works */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.step-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Rural Value Section */
.rural-value-section {
    padding: 4rem 0;
    background: var(--white);
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.value-list li i {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.rural-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background: rgba(15, 76, 129, 0.05);
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 800px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    min-width: 90px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.cookie-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        max-width: 140px;
        min-width: auto;
    }
}

/* Footer */
.footer {
    background: #212529;
    color: white;
    padding: 3rem 0 1rem;
}

.footer h3, .footer h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclosure {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .address-form .input-group {
        flex-direction: column;
    }
    
    .address-form .form-control,
    .address-form .btn {
        width: 100%;
        border-radius: 8px !important;
        margin-bottom: 0.5rem;
    }
    
    .trust-item,
    .step-item {
        margin-bottom: 1rem;
    }
    
    .rural-value-section .row {
        flex-direction: column-reverse;
    }
    
    .rural-image {
        margin-bottom: 2rem;
    }
}

/* Smart Check Button Styles */
#smart-check-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}