/* General Styling */
:root {
    --primary-color: #28a745;
    /* Green */
    --secondary-color: #f8f9fa;
    /* Light Gray */
    --dark-color: #2c3e50;
    /* Dark Blue-Gray */
    --text-color: #495057;
    /* Medium Gray */
    --white-color: #ffffff;
    --light-gray-bg: #f5f7f9;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #218838;
    /* Darker green */
}

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

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

.btn-whatsapp {
    background-color: #25d366;
    /* WhatsApp Green */
    color: var(--white-color);
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Navbar */
.navbar {
    background-color: var(--white-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dark-color);
}

.navbar .nav-menu .nav-list {
    display: flex;
    align-items: center;
}

.navbar .nav-menu .nav-list li {
    margin-left: 30px;
}

.navbar .nav-menu .nav-list li a {
    color: var(--dark-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar .nav-menu .nav-list li a:hover {
    color: var(--primary-color);
}

.navbar .contact-number-desktop {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar .contact-number-desktop i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 1.8em;
    background: transparent;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1002;
}

.nav-menu .nav-contact {
    display: none;
    /* Hide mobile contact link on desktop */
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #eaf2f8, #d4e6f1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3.5em;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.05em;
    color: var(--dark-color);
}

.hero-features span {
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.years-experience {
    position: absolute;
    bottom: -30px;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-color);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 180px;
}

.years-experience h2 {
    font-size: 2.5em;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.years-experience p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0;
}


/* About Section */
.about-section {
    background-color: var(--light-gray-bg);
    padding: 80px 0;
    margin-top: 50px;
    /* To account for the years experience card */
}

.about-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.about-checklist {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: var(--text-color);
}

.about-checklist li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2em;
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    font-size: 0.95em;
    color: var(--text-color);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white-color);
}

.services-section h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .icon-circle {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    margin: 0 auto 20px auto;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0;
}

.btn-center {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Styles */
.faq-section {
    background-color: var(--white-color);
}

.faq-item h3:hover {
    color: var(--secondary-color);
}

.faq-item i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}


/* Booking Split Layout */
.booking-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.booking-main {
    flex: 2;
}

.booking-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

/* Service Header Card */
.service-header-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.header-overlay h2 {
    margin: 0;
    font-size: 1.8em;
}

/* Category Thumbnails */
.category-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.cat-item {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.cat-item:hover {
    transform: translateY(-5px);
}

.cat-item img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

.cat-item.active img {
    border-color: var(--primary-color);
}

.cat-item span {
    font-size: 0.9em;
    color: #555;
}

/* Variant Cards Updates */
.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.variant-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.variant-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.variant-features {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}

.btn-add {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 6px 0;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

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

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.offer-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #555;
}

.offer-icon {
    width: 30px;
    height: 30px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.8em;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #555;
    display: flex;
    gap: 10px;
}

.trust-list li i {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .booking-layout {
        flex-direction: column;
    }

    .booking-sidebar {
        width: 100%;
        position: static;
    }
}

.form-section {
    padding: 80px 0;
    background-color: var(--light-gray-bg);

    /* Uses the light gray from your about section */
    text-align: center;
}

.form-section h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.form-container {
    max-width: 800px;
    /* Sets a max width for the form */
    margin: 0 auto;
    /* Centers the form */
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* This keeps the iframe corners rounded */
    padding: 40px;
}

.form-container iframe {
    display: block;
    /* Removes any default bottom spacing */
    border: none;
    width: 100%;
}


/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: var(--white-color);
    font-size: 2.8em;
    margin-bottom: 10px;
}

.contact-section .section-description {
    color: var(--white-color);
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card .icon-circle {
    background-color: var(--white-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin: 0 auto 20px auto;
}

.contact-info-card h3 {
    color: var(--white-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 0.95em;
}

.get-started-title {
    color: var(--white-color);
    font-size: 2em;
    margin-top: 50px;
}

.get-started-description {
    color: var(--white-color);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.get-started-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-section .btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

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

.contact-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.contact-section .btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.contact-section .btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px 0;
    font-size: 0.95em;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-grid .footer-about {
    font-size: 1em;
}

.footer-grid .footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-grid .footer-about i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-grid .footer-links ul li {
    margin-bottom: 10px;
}

.footer-grid .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-grid .footer-links a:hover {
    color: var(--primary-color);
}

.footer-grid .footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-grid .footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
    /* Align icon better with text */
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 20px;
}


/* ===================
   Responsive Design 
   =================== */

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 80%;
        margin-top: 40px;
    }

    .years-experience {
        bottom: 20px;
        /* Adjust for smaller screens */
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section .container {
        flex-direction: column;
    }

    .about-text,
    .about-stats {
        flex: none;
        max-width: 100%;
    }

    .about-stats {
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid .footer-contact p {
        justify-content: center;
    }
}


@media (max-width: 768px) {

    /* Navbar Mobile Styles */
    .hamburger {
        display: block;
        /* Show hamburger icon */
    }

    .contact-number-desktop {
        display: none;
        /* Hide desktop contact number */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        /* Start off-screen */
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
        /* Slide in */
    }

    .nav-menu .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-menu .nav-list li {
        margin: 0;
    }

    .nav-menu .nav-list li a {
        font-size: 1.5em;
        /* Make links bigger */
    }

    .nav-menu .nav-contact {
        display: block;
        /* Show mobile contact link */
    }

    .nav-menu .nav-contact a {
        color: var(--primary-color);
        font-weight: bold;
    }

    /* Other 768px styles */
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .get-started-buttons {
        flex-direction: column;
        align-items: center;
    }

    .get-started-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    /* Other 480px styles */
    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-image {
        max-width: 100%;
    }

    .years-experience {
        font-size: 0.9em;
        padding: 15px 20px;
        bottom: 10px;
    }

    .service-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .about-checklist {
        padding-left: 0;
    }
}

/* Hiring Section Styles */
.job-details {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 20px auto 30px auto;
    text-align: left;
    display: inline-block;
}

.job-details li {
    font-size: 1.05em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.job-details li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.my-float {
    margin-top: 0px;
}

/* ===================
   Client Marquee Section
   =================== */
.client-section {
    padding: 60px 0;
    background-color: var(--white-color);
    overflow: hidden;
    /* Hide scrollbar */
}

.client-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.client-card i {
    font-size: 2em;
    color: var(--primary-color);
}

.client-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

.client-card span {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--dark-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way because we double the items */
    }
}

/* Mobile tweak for marquee */
@media (max-width: 768px) {
    .marquee-track {
        gap: 20px;
    }

    .client-card {
        padding: 15px 20px;
        min-width: 200px;
    }

    .client-card i {
        font-size: 1.5em;
    }

    .client-card span {
        font-size: 1em;
    }
}

/* Mobile adjust for Whatsapp */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Custom File Upload Styles */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-color);
    background-color: #e9ecef;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

.file-upload-placeholder i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background-color: #f0fdf4;
}

.radio-btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 0.8em;
    font-weight: bold;
    color: #555;
    background: #fff;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked+.radio-btn {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Booking Confirmation / Payment Styles */
.booking-received {
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#status-icon-container {
    transition: background-color 0.3s ease;
}

.booking-received h2 {
    color: var(--dark-color);
}

.booking-received p {
    color: var(--text-color);
    line-height: 1.6;
}