:root {
    --primary-color: #87CEEB;
    --secondary-color: #1E3F66;
    --accent-color: #FFA500;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f6fa;
    --background-dark: #1E3F66;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    background-color: var(--retro-sand);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    background: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--retro-navy);
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 80px;
    margin: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 40px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: var(--retro-orange);
}

/* Request Quote Button */
.request-quote-btn {
    background-color: var(--retro-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.request-quote-btn:hover {
    background-color: #e67e00;
}

/* Services Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--retro-navy);
    min-width: 200px;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobile Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--retro-navy);
        padding: 1rem;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        background-color: rgba(255,255,255,0.1);
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        display: none;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Quote Contact Section */
.quote-contact-section {
    padding: 20px 0;
    background-color: var(--retro-sand);
    width: 100%;
}

.quote-contact-section .container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 10px;
}

.quote-contact-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 300px;
    align-items: stretch;
}

.quote-form-container {
    background: white;
    padding: 20px;
    border-radius: 0;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.quote-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.close-form {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-form:hover {
    color: #2196f3;
}

/* Quote Form Section */
.quote-form-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.quote-form-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
}

.error-message {
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-checkbox:hover {
    background-color: #f5f5f5;
}

.service-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.image-upload {
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.upload-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.upload-text i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #2196f3;
}

.file-input-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #2196f3;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.file-input-button:hover {
    background-color: #1976d2;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.upload-preview img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.submit-button {
    background-color: #2196f3;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #1976d2;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #f44336;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #f4a124;
}

.bio {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1E3F66;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-card {
    background: var(--retro-navy);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: auto;
    position: relative;
    border: 2px solid var(--retro-orange);
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 25px;
}

.service-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.service-image img,
.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    padding: 20px 20px 0 20px;
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.service-pricing {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.price {
    font-weight: bold;
    color: #1E3F66;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

/* Before/After Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 1rem auto;
}

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

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.slider-overlay img {
    position: absolute;
    top: 0;
    left: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 2;
}

.slider-handle::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 20px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .slider-handle::before {
        width: 28px;
        height: 28px;
    }
    
    .slider-handle::after {
        font-size: 16px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--retro-sand);
    width: 100%;
}

.faq-section .section-title {
    color: var(--retro-navy);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 var(--retro-orange);
    position: relative;
    padding: 0 20px;
}

.faq-section .section-title::before,
.faq-section .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 200px;
    background: var(--retro-orange);
}

.faq-section .section-title::before {
    left: -220px;
}

.faq-section .section-title::after {
    right: -220px;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1E3F66;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #3e87a3;
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f4a124;
}

.footer-section .admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-section .admin-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #f4a124;
}

.footer-section .admin-link i {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f4a124;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.before-after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
}

.before-after div {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.service-content {
    padding: 2rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.service-pricing {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.service-pricing h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-pricing p {
    color: #666;
    font-size: 0.9rem;
}

.service-faqs {
    background: #f8f9fa;
    padding: 4rem 0;
}

.service-faqs h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

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

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
}

.service-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-label {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 250px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    color: #1E3F66;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.success-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.success-content button {
    padding: 0.5rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.success-content button:hover {
    background-color: #45a049;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Completion Screen */
.completion-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.completion-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.completion-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.completion-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.completion-content p {
    color: #666;
    margin-bottom: 1rem;
}

.completion-content button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.completion-content button:hover {
    background-color: #45a049;
}

/* Form Loading State */
.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.image-compare {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 1rem auto;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper img:first-child {
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
    z-index: 1;
}

.handle {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: white;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: grab;
    transition: background-color 0.3s ease;
}

.handle::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100vh;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    top: -50vh;
}

.handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 20px;
}

.handle:active {
    cursor: grabbing;
    background: #f0f0f0;
}

.image-compare.dragging .handle {
    cursor: grabbing;
}

.image-pair {
    display: flex;
    gap: 1rem;
    margin: 1rem auto;
}

.image-container {
    flex: 1;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .image-pair {
        flex-direction: column;
    }
    
    .image-container img {
        height: 250px;
    }
}

.learn-more-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.learn-more-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .quote-contact-grid {
        grid-template-columns: 1fr;
        width: 100%;
        min-width: 400px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }

    .quote-form-container,
    .quick-contact {
        width: 100%;
        min-width: 400px;
        padding: 20px;
    }

    .quote-form-container {
        border-radius: 8px;
        margin: 0;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: visible;
    }
}

/* Quick Contact Section */
.quick-contact {
    background-color: #1E3F66 !important;
    padding: 15px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    min-width: 280px;
    height: 100%;
    margin: 0;
    align-self: stretch;
}

.quick-contact-content {
    width: 100%;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    height: 100%;
    align-self: stretch;
}

.contact-header {
    font-size: 18px;
    color: white !important;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-subheader {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.contact-item i {
    font-size: 24px;
    color: white !important;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 0.9;
    text-align: center;
}

.contact-info a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    text-align: center;
}

.contact-info a:hover {
    color: #4B9CD3 !important;
}

@media (max-width: 768px) {
    .service-cards {
        padding: 10px;
        gap: 20px;
    }

    .service-card {
        padding: 15px;
        display: flex;
        flex-direction: column;
    }

    .service-content {
        order: 1;
        padding: 10px;
    }

    .service-image {
        order: 2;
        width: 100%;
        height: 200px;
        margin-top: 15px;
    }

    .service-image img,
    .service-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-features {
        padding: 0;
        margin: 10px 0;
    }

    .service-features li {
        font-size: 0.9rem;
        padding-left: 15px;
        margin-bottom: 5px;
    }
}

.concrete-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/concrete-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.concrete-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.concrete-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.concrete-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.concrete-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.concrete-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.concrete-feature:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .concrete-features {
        flex-direction: column;
        gap: 15px;
    }

    .concrete-feature {
        width: 100%;
        max-width: 300px;
    }
}

.service-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    width: 100%;
    max-width: 900px;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--retro-navy);
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 4px 0 var(--retro-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.faq-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
}

.faq-button {
    display: inline-block;
    background-color: var(--retro-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    background-color: #e55e00;
}

@media (max-width: 768px) {
    .faq-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-video {
    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(30, 63, 102, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay h1 {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: var(--retro-navy);
}

.feature span {
    font-weight: 600;
    color: var(--retro-navy);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* CTA Buttons Section */
.cta-buttons-section {
    padding: 60px 0;
    background-color: var(--retro-sand);
    width: 100%;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 var(--retro-navy);
}

.cta-button i {
    font-size: 1.4rem;
}

.cta-button.request-quote {
    background-color: var(--retro-orange);
    color: white;
    border: 3px solid var(--retro-navy);
}

.cta-button.call-now {
    background-color: var(--retro-navy);
    color: white;
    border: 3px solid var(--retro-orange);
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--retro-navy);
}

.cta-button.request-quote:hover {
    background-color: #ff8533;
}

.cta-button.call-now:hover {
    background-color: #2a3b5b;
}

@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
}

/* Service Area Section */
.service-area-section {
    padding: 60px 0;
    background-color: var(--retro-sand);
    width: 100%;
}

.service-area-section .section-title {
    color: var(--retro-navy);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 var(--retro-orange);
    position: relative;
    padding: 0 20px;
}

.service-area-section .section-title::before,
.service-area-section .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 200px;
    background: var(--retro-orange);
}

.service-area-section .section-title::before {
    left: -220px;
}

.service-area-section .section-title::after {
    right: -220px;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.service-area-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid var(--retro-orange);
}

.service-area-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-area-image:hover img {
    transform: scale(1.05);
}

.service-area-text {
    padding: 20px;
}

.service-area-text h3 {
    color: var(--retro-navy);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 var(--retro-orange);
}

.service-area-text p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-area-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-area-text li {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
}

.service-area-text li:before {
    content: "•";
    color: var(--retro-orange);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-area-section .section-title {
        font-size: 2rem;
    }
    
    .service-area-section .section-title::before,
    .service-area-section .section-title::after {
        width: 100px;
    }
    
    .service-area-section .section-title::before {
        left: -120px;
    }
    
    .service-area-section .section-title::after {
        right: -120px;
    }

    .service-area-text h3 {
        font-size: 1.8rem;
    }

    .service-area-text ul {
        grid-template-columns: 1fr;
    }
} 