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

a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}


body {
    font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Color Variables */
:root {
    --primary: #23408E;
    --primary-dark: #0f2a44;
    --primary-light: #2c5282;
    --accent: #CC0009;
    --accent-light: #ff383c;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Utility Classes */
#about {
    border-bottom: #000 1px solid;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-bg-light {
    background-color: var(--gray-50);
}

.section-bg-white {
    background-color: #ffffff;
}

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

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

/* Header & Navigation */
.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Logo wrapper - centered as one block, wider */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    width: 75%;
    max-width: 80%;
}

/* SVG Icon container - larger */
.svg-icon {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.svg-icon svg {
    width: 140px;
    height: auto;
}

/* Logo text styling - larger */
.logo {
    font-size: 2.4rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Navigation links - positioned on the right */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    top: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Mobile menu button - removed (hidden) */
.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 0;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}

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

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Gallery Section - Card Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background-color: var(--gray-200);
}

.gallery-card h3 {
    font-size: 1.25rem;
    margin: 1rem 1rem 0.5rem 1rem;
    color: var(--primary);
}

.gallery-card p {
    font-size: 0.9rem;
    margin: 0 1rem 1rem 1rem;
    color: var(--gray-600);
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature-icon {
    font-size: 1.8rem;
}

.feature h4 {
    margin-bottom: 0.25rem;
    color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Center the button container */
#yelpReviews {
    color: white;
    text-decoration: none;
}

.testimonials-btn-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Trusted Brands Section */
.trusted-brands {
    background: #fff;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 2rem;
}

.brand-item {
    flex: 0 1 auto;
    text-align: center;
}

.brand-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease, transform 0.2s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-name {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--gray-50);
    color: var(--gray-400);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

/* Modal (Quote Form) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray-600);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
}

/* About Section Image */
.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .svg-icon svg {
        width: 100px;
    }
    
    .logo-wrapper {
        width: 70%;
        gap: 8px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .logo-wrapper {
        width: auto;
        max-width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .logo {
        font-size: 1.7rem;
        white-space: normal;
        text-align: left;
        line-height: 1.2;
    }
    
    .svg-icon svg {
        width: 55px;
    }
    
    .nav-links {
        position: static;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
    }
    
    .badge {
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        gap: 2rem;
    }
    
    .brand-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.875rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .svg-icon svg {
        width: 45px;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .brands-grid {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .brand-logo {
        max-height: 50px;
    }
}