:root {
    --primary-color: #000000;     /* Black from M&C Diesel */
    --accent-color: #ff0000;      /* Red accent color */
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --button-color: #D35400;      /* Burnt orange for buttons */
    --button-hover: #A04000;      /* Darker burnt orange for hover */
}

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

/* First, let's set up the html and body properly */
html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-image: url('images/carbon-fiber-bg.jpg');  /* Updated correct path */
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto;
    background-position: center;
    padding-top: 70px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--button-color);
}

/* Add external link indicator */
.nav-links a[target="_blank"]::after {
    content: "↗";
    display: inline-block;
    margin-left: 4px;
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

.nav-links a[target="_blank"]:hover::after {
    transform: translate(2px, -2px);
}

.nav-links a[target="_blank"] {
    background: none !important;
}

.nav-links a[target="_blank"]::after {
    content: none !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;  /* Ensure video doesn't spill out */
    color: white;
    background: none;  /* Remove any background here as we have the video */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);  /* Slightly darker overlay for better contrast */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);  /* Gaussian blur effect */
}

.hero-content {
    position: relative;
    z-index: 1;  /* Ensure content stays above video */
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #f5f5f5;
}

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

.info-card {
    background: rgba(0, 0, 0, 0.6);  /* Darker background */
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    color: white;  /* Ensure text is visible on darker background */
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.7);  /* Slightly darker on hover */
}

.info-card h3 {
    color: var(--button-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);  /* Add subtle text shadow */
}

.info-card ul {
    list-style: none;
    text-align: left;
}

.info-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);  /* Slightly softer white for list items */
}

.info-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--button-color);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;  /* More subtle radius like M&C site */
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: var(--button-hover);
}

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

.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 1rem;
}

.pricing-section {
    background: transparent !important;
    padding: 80px 5%;
}

.pricing-calculator {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.calculator-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.price-breakdown {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 5px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    display: none;
}

.price-breakdown.visible {
    display: block;
}

.breakdown-details {
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.breakdown-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

.breakdown-details hr {
    margin: 1rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-details .total {
    font-weight: 600;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.booking-button {
    width: 100%;
    padding: 1rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.booking-button:hover {
    background: var(--button-hover);
}

.booking-button.hidden {
    display: none;
}

/* Form styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

.form-group select,
.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;  /* Dark text color for better readability */
}

/* Ensure dropdown options are also dark */
.form-group select option {
    color: #333;
    background-color: white;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.calculate-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-button:hover {
    background: var(--button-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-calculator {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    #price-breakdown,
    .desktop-breakdown,
    .mobile-breakdown {
        display: none;
    }
}

/* Desktop layout */
@media (min-width: 769px) {
    .pricing-calculator {
        display: flex;
        flex-direction: column;
    }
}

/* Common styles for both layouts */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.calculate-button {
    width: 100%;
    padding: 1rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.calculate-button:hover {
    background: var(--button-hover);
}

.price-breakdown {
    color: white;
}

.price-breakdown .breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-breakdown p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1rem;
}

.price-breakdown hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.price-breakdown .total {
    font-size: 1.2rem;
    font-weight: bold;
}

.booking-button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-button:hover {
    background: var(--button-hover);
}

.booking-button.hidden {
    display: none;
}

.booking-button.show {
    display: block;
    animation: fadeInButton 0.5s ease forwards;
}

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

.booking-section {
    background: transparent !important;
    padding: 80px 5%;
    transition: all 0.3s ease;
}

.booking-section.hidden {
    display: none;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);  /* Add slight blur effect */
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 75, 141, 0.2);
}

.submit-booking {
    padding: 1rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-booking:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

.booking-summary {
    display: none;
}

.mobile-booking-summary {
    display: none;
}

@media (min-width: 769px) {
    .booking-summary {
        display: block;
        background: rgba(0, 0, 0, 0.8);
        padding: 2rem;
        border-radius: 8px;
        color: white;
        position: sticky;
        top: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-booking-summary {
        display: block;
        background: rgba(0, 0, 0, 0.8);
        padding: 2rem;
        border-radius: 8px;
        color: white;
        margin-top: 2rem;
    }
}

.booking-summary h3,
.mobile-booking-summary h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.summary-details {
    margin-top: 1rem;
}

.summary-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: white;
    font-size: 1rem;
}

.summary-details p:last-child {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
    font-size: 1.2rem;
}

.summary-details span {
    color: white;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .booking-summary {
        display: none !important;
    }

    .mobile-booking-summary {
        display: block !important;
        margin: 20px 0;
        padding: 20px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .price-breakdown {
        display: none !important;
    }

    .mobile-price-breakdown {
        display: none;
    }

    .mobile-price-breakdown.visible {
        display: block !important;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .mobile-price-breakdown h3,
    .mobile-booking-summary h3 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .mobile-price-breakdown .breakdown-details p,
    .mobile-booking-summary .summary-details p {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        color: white;
        font-size: 1rem;
    }

    .mobile-price-breakdown .breakdown-details hr,
    .mobile-booking-summary .summary-details hr {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin: 15px 0;
    }

    .mobile-price-breakdown .breakdown-details .total,
    .mobile-booking-summary .summary-details .total {
        font-size: 1.2rem;
        font-weight: bold;
        margin-top: 10px;
    }

    .mobile-price-breakdown .breakdown-details span,
    .mobile-booking-summary .summary-details span {
        color: white;
    }

    .mobile-price-breakdown .booking-button {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        background: var(--button-color);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .mobile-price-breakdown .booking-button:hover {
        background: var(--button-hover);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section {
        padding: 1rem;
    }

    .pricing-calculator {
        display: block;
        padding: 1.5rem;
    }

    .calculator-form {
        width: 100%;
        margin-bottom: 0;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .form-group select,
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.6rem;
        font-size: 16px;
        color: #333;  /* Dark text color for better readability */
        background: rgba(255, 255, 255, 0.95);  /* Slightly more opaque background */
    }

    .booking-form input,
    .booking-form textarea {
        color: #333;  /* Dark text color for better readability */
        background: rgba(255, 255, 255, 0.95);  /* Slightly more opaque background */
    }

    .checkbox-group {
        margin: 0.5rem 0;
    }

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

    .calculate-button {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    /* Mobile price breakdown styles */
    #mobile-price-breakdown {
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 8px;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .mobile-price-breakdown .breakdown-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-price-breakdown p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        font-size: 1rem;
        color: white;
    }

    .mobile-price-breakdown hr {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 1rem 0;
    }

    .mobile-price-breakdown .total {
        font-size: 1.2rem;
        font-weight: bold;
        color: white;
    }

    .mobile-price-breakdown .booking-button {
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem;
        font-size: 1rem;
        background: var(--button-color);
        color: white;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .mobile-price-breakdown .booking-button:hover {
        background: var(--button-hover);
    }

    /* Hide desktop breakdown */
    #price-breakdown {
        display: none !important;
    }

    /* Additional mobile optimizations */
    .pricing-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Ensure proper spacing between sections */
    #pricing {
        margin-top: 1rem;
    }

    /* Ensure form inputs and selects are full width */
    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }
}

/* iPhone-specific adjustments */
@media (max-width: 420px) {
    .pricing-section {
        padding: 0.5rem;
    }

    .pricing-calculator {
        padding: 0.8rem;
        margin: 0;
    }

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

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group select,
    .form-group input {
        padding: 0.5rem;
        font-size: 14px;
    }

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

    .calculate-button {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .mobile-price-breakdown,
    .mobile-booking-summary {
        padding: 1rem;
        margin-top: 0.8rem;
    }

    .mobile-price-breakdown .breakdown-details p,
    .mobile-booking-summary .summary-details p {
        font-size: 0.9rem;
    }

    .mobile-price-breakdown .breakdown-details .total,
    .mobile-booking-summary .summary-details .total {
        font-size: 1.1rem;
    }
}

h1, h2, h3 {
    color: white;
}

.pricing-section h2,
.booking-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.booking-confirmation {
    background: transparent !important;
    padding: 80px 5%;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.booking-confirmation.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUpFade 0.8s ease-out;
    backdrop-filter: blur(5px);  /* Add slight blur effect */
}

.delivery-instructions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    animation: fadeIn 1s ease-out 0.3s both;
}

.address-box {
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    max-width: 300px;
    line-height: 1.8;
    animation: scaleIn 0.6s ease-out 0.6s both;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.important-note {
    margin-top: 1.5rem;
    color: var(--button-color);
    font-weight: 600;
    animation: fadeIn 0.6s ease-out 1s both;
}

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

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

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Make sure main content is transparent */
main {
    background: transparent;
}

/* Update section backgrounds */
#services,
.pricing-section,
.booking-section,
.booking-confirmation {
    background: transparent !important;
    color: white;
}

/* Update headings color for better visibility */
#services h2,
.pricing-section h2,
.booking-section h2,
.booking-confirmation h2 {
    color: white;
}

/* Update containers to have semi-transparent backgrounds */
.pricing-calculator,
.booking-container,
.confirmation-container,
.service-card {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-breakdown,
.booking-summary,
.address-box {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Update services section */
#services {
    background: transparent !important;
    padding: 80px 5%;
}

/* Update pricing section */
.pricing-section {
    background: transparent !important;
    padding: 80px 5%;
}

/* Update booking section */
.booking-section {
    background: transparent !important;
    padding: 80px 5%;
}

/* Update confirmation section */
.booking-confirmation {
    background: transparent !important;
    padding: 80px 5%;
}

/* Update logo styling */
.logo {
    color: white;  /* Make text white */
    font-weight: 600;  /* Make it bold */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);  /* Add subtle shadow for depth */
}

.logo img {
    filter: brightness(1.2);  /* Make the logo image slightly brighter if it exists */
}

.how-it-works-section {
    padding: 80px 5%;
    color: white;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.process-step {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

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

.process-step h3 {
    color: var(--button-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.phone-number {
    font-size: 1.3rem;
    color: var(--button-color);
    margin-top: 0.5rem;
}

/* Add loading spinner styles */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

.spinner.hidden {
    display: none;
}

.spinner-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Update submit button for loading state */
.submit-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-booking.loading {
    background: var(--button-hover);
    cursor: wait;
}

/* Breadcrumb styling */
.breadcrumb-nav {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 5%;
    margin-top: 60px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: white;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 0.5rem;
    color: var(--button-color);
}

.breadcrumb-item a {
    color: var(--button-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Performance optimizations */
img, video {
    will-change: transform;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Contact section styling */
.contact-section {
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: stretch;
}

.contact-info,
.map-container {
    flex: 1;
    height: 450px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: white;
    margin: 0 0 1.5rem 0;
    font-size: 1.8rem;
}

.info-item {
    color: white;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--button-color);
}

.info-item p {
    margin: 0;
    line-height: 1.4;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--button-color);
}

.map-container {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-info,
    .map-container {
        width: 100%;
    }

    .contact-info {
        height: auto;
        min-height: 450px;
    }

    .map-container {
        width: 100%;
        height: 300px; /* Slightly smaller on mobile */
    }
}

/* Reviews Section - Simplified and Fixed */
.reviews-section {
    padding: 80px 5%;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.review-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.review-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: none;
}

.review-item.active {
    display: block;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--button-color);
}

.reviewer-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

.review-rating {
    color: #fbbc05;
    margin: 0.3rem 0;
}

.review-content {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-top: 1rem;
    font-style: italic;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--button-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    opacity: 1;
}

.carousel-button.prev {
    left: -50px;
}

.carousel-button.next {
    right: -50px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: var(--button-color);
}

@media (max-width: 768px) {
    .carousel-button {
        display: none;
    }
    
    .review-container {
        padding: 1rem;
    }
    
    .review-content {
        font-size: 0.9rem;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-links a:hover {
    color: #ff6b00;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Desktop price breakdown - hide on mobile */
.price-breakdown {
    display: none;
}

@media (max-width: 768px) {
    .pricing-calculator {
        display: block;
        padding: 1.5rem;
    }

    #price-breakdown,
    .desktop-breakdown,
    .mobile-breakdown {
        display: none;
    }
}

/* Remove any duplicate price breakdown styles */
.desktop-breakdown,
.mobile-breakdown {
    display: none !important;
}

.calculator-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ef9a9a;
    font-size: 14px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.calculator-error.hidden {
    display: none;
}

/* Mobile price breakdown */
.mobile-price-breakdown {
    display: none;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .price-breakdown {
        display: none !important;  /* Always hide desktop breakdown on mobile */
    }

    .mobile-price-breakdown.visible {
        display: block;
        background: rgba(0, 0, 0, 0.85);
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 8px;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Media query for desktop */
@media (min-width: 769px) {
    .mobile-price-breakdown {
        display: none !important;  /* Always hide mobile breakdown on desktop */
    }
} 