/* --- Root Color Branding Scheme --- */
:root {
    --base-orange: #fc6a03;
    --secondary-blue: #1e90ff;
    --secondary-blue-dark: #0077ea;
    --dark-navy: #0f172a;
    --light-bg: #f8fafc;
    --border-muted: #e2e8f0;
    --text-gray: #64748b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-navy);
    line-height: 1.6;
}

/* --- Header Navigation Bar --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    /* Changed from rgba white to your solid hex color */
    background-color: #F4F4F5; 
    /* Removed backdrop-filter to stop the blur effect */
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px; /* Reduced vertical padding from 15px to 8px */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-brand span {
    color: var(--base-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
}

.nav-menu li a {
    text-decoration: none;
    color: #475569;
    font-size: 14px; /* Reduced font size from 15px to 14px */
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu li a:hover {
    color: var(--base-orange);
}

.btn-nav-book {
    background: var(--secondary-blue);
    color: #ffffff !important;
    padding: 6px 14px; /* Reduced button sizing from 8px 18px to 6px 14px */
    border-radius: 6px;
    transition: background 0.2s ease !important;
}

.btn-nav-book:hover {
    background: var(--secondary-blue-dark);
}

/* Responsive Mobile Toggle Button Bar styling hook */
.nav-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--dark-navy);
    border-radius: 2px;
    transition: 0.2s ease;
}

.accordion-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #fa8128;
    border: 1px solid #222;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 18px;
    background: #fc6a03;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 16px;
}

.accordion-header:hover {
    background: #dd571c;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.accordion-body.open {
    padding: 15px;
}

.testimonial-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 0;
    animation: testimonialScroll 40s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 320px;
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

.testimonial-author {
    margin-top: 12px;
    font-weight: 600;
    color: #ff6b00;
}

@keyframes testimonialScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav-toggle-btn {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid var(--border-muted);
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        display: flex;
    }
    .btn-nav-book {
        text-align: center;
        width: 100%;
    }
}

/* LOGO WRAPPER - controls size */
.logo-image-wrapper {
    width: 106px;       /* Scaled down from 103px */ 
    height: 58px;      /* Scaled down from 58px */
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* LOGO IMAGE - FIXES BIG IMAGE ISSUE */
.main-logo-img {
    width: 100%;
    height: 100%;
    background: #F4F4F5;
    object-fit: contain;   /* IMPORTANT  #F4F4F5 */
    display: block;
}

/* --- Hero Dashboard Wrapper --- */
.hero-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85)), 
                url('./images/clean.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 160px 20px 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--base-orange);
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-orange {
    background: var(--base-orange);
    color: #ffffff;
}

.btn-orange:hover {
    background: #e05e02;
}

.btn-blue {
    background: var(--secondary-blue);
    color: #ffffff;
}

.btn-blue:hover {
    background: var(--secondary-blue-dark);
}

/* --- Main Content Cards Layout --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-wrapper {
    margin-bottom: 70px;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-navy);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--base-orange);
    border-radius: 2px;
}

/* --- About Section Styling --- */
.about-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* --- Features/Why Choose Us Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    font-weight: 600;
    font-size: 14px;
}

/* --- Service Modules View Layout --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background-color: #cbd5e1;
}

.service-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.service-tags {
    list-style: none;
    margin-bottom: 10px;
}

.service-tags li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-tags li::before {
    content: '✓';
    color: var(--base-orange);
    font-weight: bold;
}

.btn-card-book {
    margin-top: auto;
    background: var(--dark-navy);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.btn-card-book:hover {
    background: var(--base-orange);
}

/* Additional Badges text block */
.additional-services-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.alt-badge {
    background: #f1f5f9;
    color: var(--dark-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-muted);
}

/* --- Gallery Framework --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    object-fit: cover;
}

.gallery-label {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background: #ffffff;
    color: var(--dark-navy);
    border-top: 1px solid var(--border-muted);
}

/* --- Booking & Core Form UI Panels --- */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-split { grid-template-columns: 1fr; }
}

.form-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; }
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.field-group.no-margin { margin-bottom: 0; }

.field-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
}

.field-group input, .field-group select, .field-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    color: var(--dark-navy);
    background: #ffffff;
    transition: border 0.2s ease;
}

.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15);
}

.btn-submit-form {
    width: 100%;
    padding: 13px;
    background: var(--base-orange);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-form:hover {
    background: #e05e02;
}

/* Info Block */
.info-panel {
    background: var(--dark-navy);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-block h4 {
    font-size: 16px;
    color: var(--base-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #94a3b8;
}

.info-list li strong {
    color: #ffffff;
}

.info-list li a {
    color: inherit;          /* Inherits the exact color from your list text */
    text-decoration: none;   /* Removes the default underline */
    font-weight: inherit;    /* Keeps the weight matching the surrounding text */
}

.info-list li a:hover {
    color: #1e90ff;          /* Optional: Shifts smoothly to your Dodger Blue on hover */
    text-decoration: underline;
}

/* --- Testimonials Styling --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-muted);
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--base-orange);
    text-align: right;
}

/* --- Status Alerts --- */
.status-alert {
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.status-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* --- Global Structural Footer --- */
footer {
    background-color: var(--dark-navy);
    color: #94a3b8;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
    border-top: 4px solid var(--base-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1e293b;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}


/* Modal Background */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

/* Modal Box */
.modal-content-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Image */
.modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Title */
.modal-title {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 600;
}

/* Close Button */
.close-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.95);
    color: #222;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    transition: all .2s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.close-modal:hover {
    transform: rotate(90deg);
}

/* Mobile */
@media (max-width: 768px) {
    .modal-image {
        max-height: 70vh;
    }

    .modal-title {
        font-size: 1rem;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 26px;
        backdrop-filter: blur(8px);
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-image {
    cursor: grab;
    transition: transform 0.15s ease;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.success-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:99999;

    justify-content:center;
    align-items:center;
}

.success-modal-content{
    width:90%;
    max-width:500px;

    background:#fff;
    padding:30px;

    border-radius:15px;

    text-align:center;

    position:relative;
}

.success-close{
    position:absolute;
    right:15px;
    top:15px;

    border:none;
    background:none;

    font-size:30px;
    cursor:pointer;
}

.toast-success{
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;

    z-index: 999999 !important;

    display: none;
    align-items: flex-start;
    gap: 12px;

    min-width: 320px;
    max-width: 450px;

    background: #FC6A03; /* Carrot Orange */
    color: #ffffff;

    border: none;
    border-radius: 14px;

    padding: 16px 18px;

    box-shadow: 0 12px 30px rgba(252, 106, 3, 0.35);

    animation: toastIn .35s ease;
}

.toast-icon{
    color:#ffffff;
    font-size:22px;
    font-weight:bold;
}

.toast-title{
    font-weight:700;
    color:#ffffff;
    margin-bottom:4px;
}

.toast-message{
    color:rgba(255,255,255,.95);
    font-size:14px;
    line-height:1.4;
}

.toast-success button{
    border:none;
    background:none;
    color:#ffffff;

    font-size:24px;
    cursor:pointer;

    opacity:.9;
}

.toast-success button:hover{
    opacity:1;
}



@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.btn-loading-spinner {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    animation: btn-spin-anim 0.8s linear infinite;
}

@keyframes toastIn{
    from{
        opacity:0;
        transform:translateX(30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}








