/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 150px;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 3;
    padding: 1rem 0;
}

.navbar-brand h1 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

/* Contact Info Section */
.contact-info {
    background: #f8f9fa;
}

.contact-info i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: #0d6efd;
}

/* Quote Form */
.modal-dialog {
    max-width: 800px;
}

#signatureCanvas {
    width: 100%;
    height: 200px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

/* Buttons */
.get-quote-btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content {
        padding-top: 100px;
    }

    .navbar-brand h1 {
        font-size: 1.5rem;
    }
}
