@charset "utf-8";
/*

TemplateMo 592 glossy touch

https://templatemo.com/tm-592-glossy-touch

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        #0c0c0c 0%,
        #1a1a2e 15%,
        #16213e 35%,
        #0f3460 50%,
        #533a7d 70%,
        #8b5a8c 85%,
        #a0616a 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}
/* Animated background elements - Disabled for cleaner hero section */
.bg-shapes {
    display: none;
}
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Logo text styling - Professional Chimney Branding */
.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    line-height: 1.1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    border-radius: 2px;
}

.logo:hover .logo-text {
    transform: translateY(-2px);
    transition: all 0.4s ease;
    color: #f8fafc;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Logo container enhancement */
.logo {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo:hover {
    transform: translateY(-1px);
}

/* Logo responsive behavior */
@media (max-width: 768px) {
    .logo {
        padding: 10px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 8px;
    }
}

/* Touch-friendly enhancements for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo {
        min-height: 44px;
        padding: 12px;
    }
    
    .logo-text {
        line-height: 1.2;
    }
}

/* Service areas styling */
.service-areas-section {
    margin-bottom: 60px;
}

.service-areas-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.area-list {
    padding: 30px;
    color: white;
}

.area-list h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.area-list ul {
    list-style: none;
    padding: 0;
}

.area-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.area-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section styling - Modern Enhanced */
.faq-section {
    margin: 60px 0;
}

.faq-container {
    padding: 50px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 70%);
    pointer-events: none;
}

.faq-container h2 {
    font-size: 2.8rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item::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.6s ease;
    pointer-events: none;
}

.faq-item:hover::after {
    left: 100%;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: white;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3::before {
    content: '❓';
    font-size: 1.1rem;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.faq-item:hover h3::before {
    transform: scale(1.2) rotate(10deg);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Contact hero styling */
.contact-info-hero {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-info-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info-hero a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-hero a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Service areas list in contact - Enhanced */
.service-areas-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-areas-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    padding: 15px 20px;
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-areas-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-areas-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-areas-list li:hover:before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 100%);
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.service-highlight {
    padding: 50px 40px;
    color: white;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 70%);
    pointer-events: none;
}

.service-highlight h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Footer address styling */
.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-address a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Google Business Link Styling */
.google-business-link {
    margin-top: 25px;
    text-align: center;
}

.google-business-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, 
        rgba(66, 133, 244, 0.15) 0%,
        rgba(52, 168, 83, 0.15) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-business-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(66, 133, 244, 0.25) 0%,
        rgba(52, 168, 83, 0.25) 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.google-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* CTA Sections Styling */
.cta-section {
    margin: 60px 0;
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%);
}

.cta-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.2) 0%,
        rgba(16, 185, 129, 0.2) 100%);
    color: white;
    border-color: rgba(34, 197, 94, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.3) 0%,
        rgba(16, 185, 129, 0.3) 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

.cta-button.emergency {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.2) 0%,
        rgba(220, 38, 127, 0.2) 100%);
    color: white;
    border-color: rgba(239, 68, 68, 0.3);
    font-size: 1.2rem;
    padding: 20px 40px;
}

.cta-button.emergency:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.3) 0%,
        rgba(220, 38, 127, 0.3) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Horizontal CTA Section */
.cta-section-horizontal {
    margin: 40px 0;
    padding: 35px 40px;
}

.cta-horizontal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Emergency CTA Section */
.cta-section-emergency {
    margin: 60px 0;
    padding: 45px 40px;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.08) 0%,
        rgba(220, 38, 127, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.emergency-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(239, 68, 68, 0.8);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.emergency-icon i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.emergency-cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.emergency-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.emergency-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hours-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    flex-wrap: wrap;
}

/* Mobile-first navigation adjustments */
@media (max-width: 992px) {
    nav {
        padding: 25px 35px;
    }
    
    .logo-text {
        font-size: 2rem;
        padding: 10px 18px;
        letter-spacing: 0.8px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 25px;
        padding: 20px 25px;
        text-align: center;
    }
    
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 8px;
    }
    
    .logo-text {
        font-size: 1.8rem;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    .nav-links {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-links a {
        flex: 0 1 auto;
        min-width: 120px;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    nav {
        padding: 15px 20px;
        gap: 20px;
    }
    
    .logo-text {
        font-size: 1.6rem;
        padding: 10px 16px;
        letter-spacing: 0.8px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        min-width: 100px;
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 1.4rem;
        padding: 8px 14px;
    }
    
    .nav-links a {
        min-width: 90px;
        font-size: 12px;
        padding: 8px 14px;
    }
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Single page layout - all sections visible */
.section-container {
    min-height: 100vh;
    padding: 60px 20px;
    display: block;
}

/* Enhanced hero image styling with actual photo */
.hero-img-wrapper {
    width: 320px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
}

.hero-img-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.hero-img-wrapper:hover .hero-main-img {
    transform: scale(1.05);
    filter: contrast(1.15) brightness(1.1) saturate(1.15);
}

/* Glass overlay effect */
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-img-wrapper:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        transparent 25%,
        transparent 75%,
        rgba(255, 255, 255, 0.1) 100%);
}

/* Shimmer effect on hover */
.hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    z-index: 2;
    transition: left 0.8s ease;
    pointer-events: none;
}

.hero-img-wrapper:hover::after {
    left: 100%;
}

/* Image container for hero section */
.image-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* Services section hero styling */
.services-hero-content {
    text-align: left;
}

.services-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services section specific hero layout */
#services .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
}

.services-img-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%);
}

.services-img-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
}

.services-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    filter: contrast(1.05) brightness(1.02) saturate(1.05);
}

.services-img-wrapper:hover .services-main-img {
    transform: scale(1.04);
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

/* Services glass overlay */
.services-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        transparent 35%,
        transparent 65%,
        rgba(255, 255, 255, 0.04) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.services-img-wrapper:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.08) 100%);
}

/* Enhanced contact info in hero */
.contact-info-hero {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.22) 100%);
    padding: 25px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.contact-info-hero:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.25) 100%);
}

.contact-info-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info-hero a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info-hero a:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation scroll spy */
.nav-links a {
    transition: all 0.3s ease;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.3rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 50px 40px;
    color: white;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.18) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 70%);
    pointer-events: none;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.18) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.25) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item-icon i {
    font-size: 1.4rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-item:hover .contact-item-icon i {
    transform: scale(1.1);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.contact-item-text h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
}

.contact-item-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item-text a:hover {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
/* Responsive design */
@media (max-width: 1024px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-img-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .services-img-wrapper {
        width: 260px;
        height: 260px;
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .section-container {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .content-wrapper {
        min-height: auto;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .hero-img-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .services-img-wrapper {
        width: 220px;
        height: 220px;
    }
    
    #services .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .services-hero-content {
        text-align: center;
        order: 1;
    }
    
    .services-hero-image {
        order: 2;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    nav {
        /* Navigation handled by new responsive rules above */
    }
    
    .nav-links {
        /* Navigation handled by new responsive rules above */
    }
    
    .nav-links a {
        /* Navigation handled by new responsive rules above */
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced Contact Mobile Styling */
    .contact-info,
    .service-highlight {
        padding: 35px 25px;
    }
    
    .contact-info h2,
    .service-highlight h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .contact-item-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-item-icon i {
        font-size: 1.2rem;
    }
    
    .contact-item-text h4 {
        font-size: 1.1rem;
    }
    
    .contact-item-text p {
        font-size: 1rem;
    }
    
    .service-areas-list li {
        padding: 12px 15px;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .service-areas-list li:hover {
        transform: translateX(3px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-container {
        height: 350px;
    }
    
    /* Logo styling handled by new responsive navigation rules */
    
    .contact-info-hero {
        padding: 20px;
        max-width: 100%;
    }
    
    .image-container {
        gap: 20px;
    }
    
    /* CTA Sections Mobile */
    .cta-section {
        padding: 35px 20px;
        margin: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .cta-horizontal-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-section-horizontal {
        padding: 25px 20px;
    }
    
    .cta-section-emergency {
        padding: 35px 20px;
    }
    
    .emergency-cta-content h2 {
        font-size: 1.7rem;
    }
    
    .google-business-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* FAQ Mobile Styling */
    .faq-container {
        padding: 30px 20px;
    }
    
    .faq-container h2 {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    .faq-grid {
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .faq-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .faq-item:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .hero-img-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .services-img-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .contact-info-hero {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .image-container {
        gap: 15px;
    }
}