
:root {
    --primary-black: #000000;
    --primary-gray: #858585;
    --link-blue: #1a7efb;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}


body {
    line-height: 1.6;
}

/* Top Bar */
.topbar {
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info a {
    color: var(--link-blue);
    text-decoration: none;
}
.contact-info no-wrap {
    white-space: nowrap;
}

.contact-info address {
    white-space: nowrap;
    font-style: normal;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    padding: 4rem 2rem;
    background: none;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}


.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    color: white; /* Changed to white for better contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow for better readability */
}

.hero-content h1 {
    font-size: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-content ul {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.5;
    padding-left: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    max-width: 600px;
}

.hero-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-form h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form input,
.quote-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--primary-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--link-blue);
    box-shadow: 0 0 0 2px rgba(26,126,251,0.1);
}

.cta-button {
    background: var(--link-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
}

.cta-button:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Local Focus Section */
.local-focus {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.local-focus-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.local-focus h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.local-focus p {
    color: var(--primary-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.local-focus iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--primary-black);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar {
        padding: 0.5rem;
    }

    .topbar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero {
        margin-top: 140px;
        padding: 2rem 1rem;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-form {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 160px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

}