/*
Theme Name: Akhtar & Sons Pro Contact Center
Theme URI: https://internetwifiandtv.com
Description: Premium contact center landing page for maximum conversions
Version: 2.0
Author: Professional WordPress Developer
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --accent-orange: #f59e0b;
    --dark-orange: #d97706;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PROFESSIONAL HEADER ===== */
.pro-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.pro-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.pro-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-logo::before {
    content: "📞";
    font-size: 24px;
}

.pro-contact-header {
    text-align: right;
}

.pro-phone-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.pro-phone-number:hover {
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.pro-location {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* ===== HERO SECTION ===== */
.pro-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 180px 0 120px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pro-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.pro-hero-content {
    position: relative;
    z-index: 2;
}

.pro-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pro-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 500;
}

.pro-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pro-feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pro-cta-buttons {
    margin-top: 40px;
}

.pro-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    margin: 0 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
}

.pro-cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.3);
}

.pro-cta-button::before {
    content: "📞";
    font-size: 1.5rem;
}

/* ===== HOW IT WORKS ===== */
.pro-how-it-works {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.pro-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
}

.pro-section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.pro-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.pro-step {
    background: var(--white);
    padding: 50px 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pro-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pro-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.pro-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pro-step p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== PROVIDERS SECTION ===== */
.pro-providers {
    padding: 100px 0;
    background: var(--white);
}

.pro-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.pro-provider-logo {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    border: 2px solid transparent;
    min-height: 120px;
}

.pro-provider-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===== TRUST SIGNALS ===== */
.pro-trust-signals {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.pro-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.pro-trust-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pro-trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.pro-trust-item .pro-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pro-trust-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pro-trust-item p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ===== FINAL CTA ===== */
.pro-final-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.pro-final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pro-final-cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.pro-final-note {
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== PROFESSIONAL FOOTER ===== */
.pro-footer {
    background: #0f172a;
    color: var(--white);
    padding: 70px 0 30px;
}

.pro-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.pro-footer-about h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.pro-footer-about p {
    opacity: 0.9;
    line-height: 1.8;
}

.pro-footer-links h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.pro-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.pro-footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.pro-footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.pro-footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.pro-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

.pro-compliance-text {
    font-size: 0.8rem;
    margin-top: 15px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .pro-header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .pro-contact-header {
        text-align: center;
        order: 2;
        width: 100%;
    }
    
    .pro-phone-number {
        font-size: 1.4rem;
        display: block;
        margin-bottom: 8px;
        background: var(--primary-blue);
        color: white;
        padding: 14px 24px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .pro-location {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-top: 5px;
    }
    
    .pro-logo {
        order: 1;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .pro-hero {
        margin-top: 120px;
        padding: 100px 0 80px;
    }
    
    .pro-hero h1 {
        font-size: 2.2rem;
    }
    
    .pro-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pro-cta-button {
        display: block;
        margin: 15px 0;
        text-align: center;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.2rem;
    }
    
    .pro-section-title {
        font-size: 2rem;
    }
    
    .pro-final-cta h2 {
        font-size: 2.2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .pro-phone-number {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .pro-hero h1 {
        font-size: 1.8rem;
    }
    
    .pro-hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .pro-feature-badge {
        width: fit-content;
        margin: 0 auto;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pro-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== ELEMENTOR COMPATIBILITY ===== */
.elementor-section .pro-cta-button {
    margin: 10px;
}

.elementor-widget .pro-feature-badge {
    display: inline-block;
}

.elementor-heading-title {
    font-family: inherit;
    font-weight: 700;
}

.elementor-button {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* ===== GUARANTEED MOBILE PHONE NUMBER FIX ===== */
@media (max-width: 768px) {
    /* Force mobile header to show */
    .mobile-phone-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #2563eb !important;
        z-index: 9999 !important;
    }
    
    /* Hide desktop header completely on mobile */
    .pro-header {
        display: none !important;
    }
    
    /* Ensure body has padding for fixed header */
    body {
        padding-top: 60px;
    }
    
    /* Adjust hero section */
    .pro-hero {
        margin-top: 0 !important;
        padding-top: 40px !important;
    }
}

/* Extra small mobile optimization */
@media (max-width: 480px) {
    .mobile-phone-header {
        padding: 10px 0 !important;
    }
    
    .mobile-phone-button {
        font-size: 1rem !important;
        padding: 10px 16px !important;
    }
    
    body {
        padding-top: 80px;
    }
}
}
/* ===== NUCLEAR MOBILE PHONE FIX ===== */
/* These styles cannot be overridden */

/* Force mobile phone bar - highest specificity */
body .mobile-phone-alert {
    display: none;
}

@media (max-width: 768px) {
    body .mobile-phone-alert {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #2563eb !important;
        color: white !important;
        padding: 15px 0 !important;
        z-index: 99999 !important;
        text-align: center !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
        border-bottom: 3px solid #f59e0b !important;
    }
    
    body .mobile-phone-alert a {
        color: white !important;
        text-decoration: none !important;
        font-weight: 800 !important;
        font-size: 18px !important;
        display: inline-block !important;
        padding: 12px 25px !important;
        background: #f59e0b !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
        border: 2px solid white !important;
    }
    
    /* Hide desktop header */
    body .pro-header {
        display: none !important;
    }
    
    /* Body padding for fixed header */
    body {
        padding-top: 80px !important;
    }
}

/* JavaScript-created nuclear bar */
.nuclear-phone-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #2563eb !important;
    color: white !important;
    padding: 15px 0 !important;
    z-index: 100000 !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
    border-bottom: 3px solid #f59e0b !important;
}

.nuclear-phone-bar a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #f59e0b !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4) !important;
    border: 2px solid white !important;
    /* ===== CONTACT PAGE STYLES ===== */
.contact-info-item {
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* WPForms Styling to Match Theme */
.wpforms-container {
    max-width: 100% !important;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    margin-bottom: 15px !important;
}

.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    outline: none !important;
}

.wpforms-submit {
    background: var(--primary-blue) !important;
    color: white !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.wpforms-submit:hover {
    background: var(--dark-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .pro-steps[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-info-item {
        padding: 15px !important;
    }
}/* ===== CONTACT PAGE STYLES ===== */
.contact-page-content {
    margin-top: 80px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-item {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.simple-contact-form input,
.simple-contact-form select,
.simple-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.simple-contact-form input:focus,
.simple-contact-form select:focus,
.simple-contact-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.simple-contact-form button {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-contact-form button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-page-content .pro-hero {
        padding: 120px 0 60px !important;
        margin-top: 60px !important;
    }
}/* Xfinity Section Mobile Styles */
@media (max-width: 768px) {
    .pro-steps[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Xfinity highlighted logo mobile */
    .pro-provider-logo[style*="border: 3px solid #f59e0b"] {
        transform: scale(1.02) !important;
        margin: 5px !important;
    }
}/* Emergency Mobile Fixes */
@media (max-width: 768px) {
    /* Ensure phone number visibility */
    .mobile-phone-header {
        display: block !important;
        z-index: 99999 !important;
    }
    
    /* Fix text sizing */
    .pro-hero h1 {
        font-size: 2rem !important;
    }
    
    /* Fix button sizing */
    .pro-cta-button {
        font-size: 1.1rem !important;
        padding: 16px 30px !important;
    }
    
    /* Ensure disclaimer visibility */
    .pro-compliance-text {
        font-size: 0.7rem !important;
        padding: 0 15px !important;
    }
}
}