/*
Theme Name: BeneFacta Building
Description: Custom WordPress theme for BeneFacta Building - Arizona's Premier Residential Construction Company. Features dark theme design, multi-page navigation, and professional construction business layout.
Author: BeneFacta Building
Version: 7.3
Text Domain: benefacta-building
*/

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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    min-height: 100vh;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo h2 {
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #e53e3e;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background: linear-gradient(135deg, #c53030, #9c2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url('assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero::after {
    content: 'Concept Rendering';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.hero-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c53030, #9c2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1a202c;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-header p {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(229, 62, 62, 0.5);
    background: rgba(0, 0, 0, 0.9);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e53e3e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.9);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.project-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.project-location {
    color: #e53e3e;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.project-content p {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
    background: rgba(0, 0, 0, 0.95);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section a:hover {
    color: #e53e3e;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e53e3e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        flex: 1;
        max-width: 60%;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem !important;
        line-height: 1.2;
        margin: 0;
    }
    
    .nav-logo h2 a {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .header-phone-display {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        background: rgba(229, 62, 62, 0.2);
        border-radius: 8px;
        border: 1px solid rgba(229, 62, 62, 0.3);
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 90px 0 40px;
        min-height: 60vh;
        background-attachment: scroll !important;
    }
    
    .hero-content {
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-text {
        padding: 1.25rem 1rem !important;
        margin: 0 auto !important;
        max-width: 85% !important;
        width: 85%;
    }
    
    .hero h1 {
        font-size: 1.35rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem !important;
    }
    
    .hero p {
        font-size: 0.7rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.35;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Mobile phone display in hero */
    .hero-text div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
    
    .hero-text div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
        margin: 0 1rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* WordPress Specific Styles */
.wp-block-group {
    margin: 0;
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Page Content Styling */
.page-content {
    color: #ffffff;
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.page-content p, .page-content li {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Admin Bar Adjustment */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}


/* Enhanced Text Readability Styles */
.text-overlay {
    background: rgba(0, 0, 0, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    margin: 1rem 0;
}

.text-overlay p {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}

/* Enhanced Hero Section for Better Readability */
.hero-enhanced {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    margin: 2rem 0;
}

.hero-enhanced h1,
.hero-enhanced h2,
.hero-enhanced h3 {
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-enhanced p {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

/* About Section Text Enhancement */
.about-text-enhanced {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

.about-text-enhanced p {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


/* Enhanced CTA Button for Navigation */
.nav-menu .cta-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid #e53e3e !important;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    display: inline-block !important;
    text-align: center !important;
    min-width: 100px !important;
    white-space: nowrap !important;
}

.nav-menu .cta-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%) !important;
    color: #e53e3e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4) !important;
    border-color: #ffffff !important;
    text-shadow: none !important;
}

/* Super Enhanced Text Backgrounds for Space Theme */
.super-text-overlay {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    backdrop-filter: blur(25px) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
    margin: 1.5rem 0 !important;
}

.super-text-overlay p {
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
}

.super-text-overlay h1,
.super-text-overlay h2,
.super-text-overlay h3 {
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
}

/* Enhanced About Section Text */
.about-content-enhanced {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 3rem !important;
    border-radius: 15px !important;
    backdrop-filter: blur(25px) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
}

.about-content-enhanced p {
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}


/* Montserrat Font Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Enhanced Typography for Montserrat */
p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer h3, .footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}


/* Mobile-Specific Fixes */
@media (max-width: 768px) {
    /* Hero Title Mobile Optimization */
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    /* Hero Content Mobile Layout */
    .hero-text {
        padding: 2rem 1rem !important;
        margin: 0 1rem !important;
    }
    
    .hero-enhanced {
        padding: 2rem 1rem !important;
    }
    
    /* Super Text Overlay Mobile */
    .super-text-overlay {
        padding: 1.5rem !important;
        margin: 1rem 0 !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Hero Buttons Mobile */
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem 2rem !important;
    }
    
    /* Phone Call-to-Action Mobile */
    .hero-text div[style*="margin-top: 2rem"] {
        margin-top: 1.5rem !important;
    }
    
    .hero-text div[style*="background: rgba(0, 0, 0, 0.95)"] {
        padding: 1.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .hero-text a[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
    
    /* Container Mobile Padding */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Service Cards Mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    /* About Page Mobile */
    .about-story div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .why-choose-us div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Service Areas Mobile */
    .service-areas div[style*="grid-template-columns: repeat"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-text {
        padding: 1.5rem 0.5rem !important;
        margin: 0 0.5rem !important;
    }
    
    .super-text-overlay {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .service-areas div[style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Phone Number Mobile Fix */
    .hero a[href^="tel:"] {
        font-size: 1.8rem !important;
        white-space: nowrap !important;
    }
}

