* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Header - Ensure it stays on top */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px; /* Fixed height */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Animated Banner Styling */
.animated-banner {
    animation: slideInFromTop 1s ease-out;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-credentials {
    display: flex;
    gap: 3rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.credential-item i {
    color: #fbbf24;
    font-size: 1.3rem;
}

/* Hero Section - Better spacing */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0; /* Increased padding */
    min-height: 450px; /* Increased min-height */
    position: relative;
    z-index: 1;
    margin-top: 0;
    clear: both;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    width: fit-content;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.credentials {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Promotional Image Styling */
.promo-image {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-top: 2rem;
    transition: transform 0.3s;
}

.promo-image:hover {
    transform: scale(1.05);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.3;
}

/* Special Promotion Section */
.special-promotion {
    padding: 80px 0;
    background: #f8fafc;
}

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

.promo-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.promo-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promo-discount-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.promo-discount-image:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.service-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Service Section Layout */
.service-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.service-image {
    width: 100%;
}

.process-list {
    list-style: none;
    margin-top: 1rem;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.process-list i {
    color: #2563eb;
    width: 20px;
}

.promo-package {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 3rem; /* Increased padding */
    border-radius: 20px; /* Increased border radius */
    margin: 4rem 0; /* Increased margin */
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.promo-package h3 {
    text-align: center;
    font-size: 2rem; /* Increased font size */
    margin-bottom: 2.5rem; /* Increased margin */
    font-weight: 700;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Increased min width */
    gap: 1.5rem; /* Increased gap */
}

.package-item {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Increased gap */
    background: rgba(255,255,255,0.15); /* Slightly more opaque */
    padding: 1.2rem; /* Increased padding */
    border-radius: 12px; /* Increased border radius */
    font-size: 1rem; /* Ensure readable font size */
}

.package-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

.benefits-list {
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.benefit-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.benefit-item span {
    color: #64748b;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item i {
    font-size: 2rem;
    color: #2563eb;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: 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,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #2563eb;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Service Images - Consistent sizing */
.service-img {
    width: 100%;
    height: 280px; /* Increased height for better visibility */
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Promotional Package Styling */
.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Increased gap */
    align-items: center;
    padding: 2rem; /* Added padding */
}

/* Promotional Package Image */
.promo-img {
    width: 100%;
    height: 300px; /* Increased from 220px to 300px */
    object-fit: cover;
    border-radius: 15px; /* Increased border radius */
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
    transition: transform 0.3s;
}

.promo-img:hover {
    transform: scale(1.02);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-logo {
        height: 40px;
        max-width: 150px;
    }
    
    /* Banner - Better mobile sizing and positioning */
    .banner-container {
        height: 300px; /* Increased height for better visibility */
    }
    
    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top; /* Changed from center to top to show full vertical content */
    }
    
    /* Business credentials - Stack vertically */
    .business-credentials {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .credential-item {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 400px;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    /* Promotional package - Full width layout */
    .promo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .promo-img {
        width: 100%;
        height: 280px; /* Increased height */
        max-width: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    /* Package grid - Single column */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-item {
        padding: 1rem;
        font-size: 0.95rem;
        text-align: left;
    }
    
    /* Service content - Stack layout */
    .service-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .service-image {
        order: -1; /* Image appears first */
        width: 100%;
    }
    
    /* Service images - Better mobile sizing */
    .service-img {
        width: 100%;
        height: 250px; /* Consistent height */
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    /* Special handling for dryer vent images */
    .service-section .service-img {
        height: 200px; /* Smaller for grid layouts */
    }
    
    /* Contact and other sections */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promo-image {
        max-width: 250px;
        height: auto;
    }
    
    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Special promotion section */
    .promo-text h2 {
        font-size: 2rem;
    }
    
    .promo-discount-image {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 35px;
        max-width: 120px;
    }
    
    /* Banner - Minimum mobile height with proper positioning */
    .banner-container {
        height: 250px; /* Increased from 220px */
    }
    
    .banner-image {
        object-position: top; /* Ensure top positioning on smallest screens too */
    }
    
    /* Credentials - Smaller on very small screens */
    .business-credentials {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .credential-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        max-width: 280px;
    }
    
    /* Hero adjustments */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 350px;
        padding: 40px 0;
    }
    
    /* Promotional package */
    .promo-content {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .promo-img {
        height: 220px;
    }
    
    .promo-package {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .promo-package h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Service content */
    .service-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .service-img {
        height: 200px;
    }
    
    /* Package items */
    .package-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    /* General section headings */
    .benefits h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    /* Promo discount image */
    .promo-discount-image {
        height: 200px;
    }
    
    .promo-image {
        max-width: 200px;
    }
    
    .hero-image i {
        font-size: 6rem;
    }
}

/* Reviews Page Styles */
.reviews-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.reviews-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reviews-page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.back-to-home {
    margin-top: 2rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.all-reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reviews-page-header h1 {
        font-size: 2.5rem;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #2563eb;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.customer-details h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.customer-details p {
    color: #64748b;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 2rem;
    color: #2563eb;
    position: absolute;
    left: -10px;
    top: -5px;
    font-family: serif;
}

.review-content p::after {
    content: '"';
    font-size: 2rem;
    color: #2563eb;
    font-family: serif;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.review-date i {
    color: #2563eb;
}

.reviews-summary {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

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

.stat-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8fafc;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.stat-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-cta h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reviews-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reviews-cta .cta-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-cta .cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .reviews h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-summary {
        padding: 2rem;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* See All Reviews Button */
.reviews-cta-section {
    text-align: center;
    margin: 3rem 0;
}

.see-all-reviews-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.see-all-reviews-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.see-all-reviews-btn i {
    font-size: 1.2rem;
}

/* Customer Avatar Image Styling */
.customer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
}

@media (max-width: 480px) {
    .customer-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .see-all-reviews-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

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

/* Header Logo Styling */
.header-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Business Banner Styling - Enhanced Fix */
.business-banner {
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
    z-index: 100;
    display: block;
    clear: both;
}

.banner-container {
    width: 100%;
    height: 950px; /* Increased from 250px to 350px */
    position: relative;
    display: block;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Hero Logo Styling */
.hero-logo {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.hero-logo:hover {
    opacity: 1;
}

/* Service Gallery Styles */
.service-gallery {
    padding: 80px 0;
    background: white;
}

.service-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .service-gallery h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-overlay {
        position: static;
        transform: none;
        background: rgba(0,0,0,0.8);
        padding: 1rem;
    }
    
    .gallery-item:hover .gallery-overlay {
        transform: none;
    }
    
    .hero-logo {
        max-width: 150px;
    }
}

/* Additional fixes for image containers */
.service-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Ensure images don't overflow their containers */
.service-image,
.promo-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* Fix for any grid-based image layouts */
@media (max-width: 768px) {
    /* If there are any grid-based image layouts, make them single column */
    .gallery-grid,
    .image-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .gallery-item img,
    .grid-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

/* FAQ Page Styles */
.faq-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.faq-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-category h2 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

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

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    color: #64748b;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-button.primary {
    background: #2563eb;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background: #2563eb;
    color: white;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-page-header h1 {
        font-size: 2.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}