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

:root {
    --primary-color: #1e40af;
    --accent-color: #f97316;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-800: #1e293b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons and CTAs */
.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #dc2626, var(--accent-color));
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-color);
    background: var(--gray-100);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.call-button {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-button:hover {
    color: #dc2626;
}

.emergency-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
}

.service-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #dc2626;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--text-dark);
}

.review-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.reviews-cta {
    text-align: center;
}

/* Service Areas Section */
.service-areas {
    padding: 5rem 0;
}

.service-areas-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.area {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.area:hover {
    transform: scale(1.05);
}

.service-areas-cta {
    text-align: center;
}

/* Google Maps Section */
.google-maps-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.maps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.maps-info {
    text-align: left;
}

.maps-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.maps-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
    margin-top: 0.25rem;
}

.location-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-item p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.maps-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.maps-cta .cta-primary,
.maps-cta .cta-secondary {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.maps-embed {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.maps-embed iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Coupons Section */
.coupons {
    padding: 5rem 0;
    background: var(--gray-50);
}

.coupons-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.coupon-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px dashed var(--accent-color);
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    display: none;
}



.coupon-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.coupon-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coupon-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.coupon-cta:hover {
    background: #dc2626;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-300);
}

/* Footer hover effects for inline styles */
footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-call-button a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-call-button a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Emergency Button */
.emergency-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.emergency-button a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.emergency-button a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .urgency-elements {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Header Styles */
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .logo img {
        height: 60px;
        max-width: 200px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .header-contact {
        order: -1;
        flex: 1;
        justify-content: center;
    }
    
    .phone-number {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    
    .emergency-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .floating-call-button,
    .emergency-button {
        bottom: 1rem;
    }
    
    .floating-call-button {
        right: 1rem;
    }
    
    .emergency-button {
        left: 1rem;
    }
    
    .floating-call-button a,
    .emergency-button a {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .call-text,
    .emergency-text {
        display: none;
    }
    
    /* Google Maps Mobile Styles */
    .maps-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .maps-info h2 {
        font-size: 1.8rem;
    }
    
    .maps-cta {
        flex-direction: column;
    }
    
    .maps-cta .cta-primary,
    .maps-cta .cta-secondary {
        width: 100%;
    }
    
    .maps-embed iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .features-grid,
    .reviews-grid,
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Service Page Styles */
.service-content {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.main-content h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.main-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.main-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
}

.problem-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-cta-section {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
    margin: 1rem 0;
}

.sidebar-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-light);
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.offer {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: center;
    border: 2px dashed var(--accent-color);
}

.offer strong {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Related Services */
.related-services {
    padding: 5rem 0;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

.fact {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-light);
}

.fact:last-child {
    border-bottom: none;
}

.fact strong {
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-member h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 1rem;
    border-left: 4px solid var(--accent-color);
}

.method-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.method-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.method-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Enhanced Contact Page Hover Effects */
.contact-method {
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-method .method-icon {
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.contact-phone {
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #ea580c !important;
    text-decoration: underline !important;
}

.cta-primary {
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5) !important;
}

.sidebar-card {
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-link {
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05)) !important;
    color: #ea580c !important;
    transform: translateY(-2px);
}

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

.hours-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.hours-item strong {
    color: var(--text-dark);
}

.expectation-steps {
    margin: 2rem 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.map-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

/* Print styles */
@media print {
    .floating-call-button,
    .emergency-button {
        display: none;
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    padding: 4rem 0;
    background: var(--gray-50);
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1.5rem;
    background: var(--white);
}

.gallery-caption h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Categories */
.gallery-categories {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Main Gallery Page */
.main-gallery {
    padding: 3rem 0;
    background: var(--gray-50);
}

.main-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-cta-section {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.gallery-cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gallery-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .main-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-cta a,
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 200px;
    }
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
    .contact-content .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-card {
        padding: 1.5rem !important;
    }
    
    .contact-methods {
        gap: 1rem !important;
    }
    
    .contact-method {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }
    
    .sidebar-card {
        padding: 1.5rem !important;
    }
    
    .service-cta-section {
        padding: 1.5rem !important;
    }
    
    /* About Us Page Responsive Styles */
    .about-content .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .about-content .card-section {
        padding: 1.5rem !important;
    }
    
    .about-content .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .about-content .commitment-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .team-section .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .values-section .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .story-section h2 {
        font-size: 2rem !important;
    }
    
    .story-section p {
        font-size: 1rem !important;
    }
    
    /* Garage Door Repair Services Page Responsive Styles */
    .service-content .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .service-content .problems-section,
    .service-content .why-choose-section,
    .service-content .process-section {
        padding: 1.5rem !important;
    }
    
    .service-content .problems-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-content .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-content .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .faq-section .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .related-services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-intro h2 {
        font-size: 2rem !important;
    }
    
    .service-intro p {
        font-size: 1rem !important;
    }
    
    /* Garage Door Installation Page Responsive Styles */
    .main-content .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .main-content .service-features,
    .main-content .installation-process,
    .main-content .garage-door-types,
    .main-content .why-choose-installation {
        padding: 1.5rem !important;
    }
    
    .main-content .service-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .main-content .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .main-content .door-types-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .main-content .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .main-content .cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .service-overview h2 {
        font-size: 2rem !important;
    }
    
    .service-overview p {
        font-size: 1rem !important;
    }
} 

/* ===== BACKGROUND DECORATIONS AND SECTION DIVIDERS ===== */

/* Section Dividers */
.section-divider-top {
    position: relative;
    width: 100vw;
    height: 120px;
    overflow: hidden;
    margin-top: -60px;
    margin-left: calc(-50vw + 50%);
    z-index: 1;
}

.section-divider-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/decorations/wave-divider-top.svg') no-repeat center top;
    background-size: cover;
    z-index: -1;
}

.section-divider-bottom {
    position: relative;
    width: 100vw;
    height: 120px;
    overflow: hidden;
    margin-bottom: -60px;
    margin-left: calc(-50vw + 50%);
    z-index: 1;
}

.section-divider-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/decorations/wave-divider-bottom.svg') no-repeat center bottom;
    background-size: cover;
    z-index: -1;
}

.diagonal-separator {
    position: relative;
    width: 100vw;
    height: 80px;
    overflow: hidden;
    margin: 40px 0;
    margin-left: calc(-50vw + 50%);
}

.diagonal-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/decorations/diagonal-separator.svg') no-repeat center;
    background-size: cover;
    z-index: -1;
}

/* Background Decorations */
.bg-decoration {
    position: relative;
    overflow: hidden;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.bg-decoration.geometric-1::before {
    background-image: url('assets/decorations/geometric-shape-1.svg');
    background-position: right top;
    background-size: 400px auto;
}

.bg-decoration.geometric-2::before {
    background-image: url('assets/decorations/geometric-shape-2.svg');
    background-position: left bottom;
    background-size: 500px auto;
}

.bg-decoration.gear-pattern::before {
    background-image: url('assets/decorations/gear-pattern.svg');
    background-position: center;
    background-size: 600px auto;
    opacity: 0.4;
}

.bg-decoration.blob-shape::before {
    background-image: url('assets/decorations/blob-shape.svg');
    background-position: right center;
    background-size: 300px auto;
}

/* Floating Decoration Elements */
.floating-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.floating-decoration.gear {
    background-image: url('assets/decorations/gear-pattern.svg');
    width: 150px;
    height: 150px;
    opacity: 0.2;
}

.floating-decoration.geometric {
    background-image: url('assets/decorations/geometric-shape-1.svg');
    width: 120px;
    height: 120px;
    opacity: 0.25;
}

.floating-decoration.blob {
    background-image: url('assets/decorations/blob-shape.svg');
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Section-specific decorations */
.services.bg-decoration::before {
    background-position: right top;
    background-size: 400px auto;
}

.why-choose-us.bg-decoration::before {
    background-position: left center;
    background-size: 500px auto;
}

.reviews.bg-decoration::before {
    background-position: center;
    background-size: 600px auto;
}

.coupons.bg-decoration::before {
    background-position: right bottom;
    background-size: 300px auto;
}

.contact.bg-decoration::before {
    background-position: left top;
    background-size: 400px auto;
}

/* Responsive adjustments for decorations */
@media (max-width: 768px) {
    .section-divider-top,
    .section-divider-bottom {
        height: 80px;
        margin-top: -40px;
        margin-bottom: -40px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .diagonal-separator {
        height: 60px;
        margin: 30px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .bg-decoration::before {
        background-size: 60% auto;
        opacity: 0.4;
    }
    
    .floating-decoration {
        width: 60px;
        height: 60px;
        opacity: 0.2;
    }
    
    .floating-decoration.gear {
        width: 80px;
        height: 80px;
    }
    
    .floating-decoration.geometric {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .section-divider-top,
    .section-divider-bottom {
        height: 60px;
        margin-top: -30px;
        margin-bottom: -30px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .diagonal-separator {
        height: 40px;
        margin: 20px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .bg-decoration::before {
        background-size: 50% auto;
        opacity: 0.3;
    }
    
    .floating-decoration {
        width: 40px;
        height: 40px;
        opacity: 0.15;
    }
}

/* Enhanced section styling with decorations */
.services,
.why-choose-us,
.reviews,
.coupons,
.contact {
    position: relative;
}

.services .container,
.why-choose-us .container,
.reviews .container,
.coupons .container,
.contact .container {
    position: relative;
    z-index: 2;
}

/* Subtle gradient overlays for better text readability */
.services::after,
.why-choose-us::after,
.reviews::after,
.coupons::after,
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero section enhancement */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/decorations/gear-pattern.svg') no-repeat right bottom;
    background-size: 800px auto;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Service area section enhancement */
.service-areas {
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/decorations/geometric-shape-2.svg') no-repeat left center;
    background-size: 600px auto;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.service-areas .container {
    position: relative;
    z-index: 2;
} 