/* =====================================
   GLOBAL RESET & BASE
===================================== */

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #333;
    background: #fff;
     font-size: 15px;       /* default paragraph size */
    line-height: 1.6;
    font-weight: 400; 
}


/* Paragraphs & small text */
p,
span,
label,
.field label,
li,
a,
input,
select,
textarea {
    font-size: 15px;
    font-weight: 400;      /* regular */
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: 13px;
    font-weight: 400;
}

/* =====================================
   CONTAINER
===================================== */

.booking-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px;
}



/* =====================================
   HEADINGS
===================================== */
.title {
    text-align: center;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 44px;
}

/* =====================================
   BACK LINK
===================================== */
.back-link {
    display: inline-block;
    margin-bottom: 22px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
}


.back-link:hover {
    text-decoration: underline;
}

/* =====================================
   STEPPER
===================================== */
/* ===============================
   PROFESSIONAL STEPPER
================================ */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 48px;
    max-width: 1000px;
}

/* Step group */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    text-align: center;
}

/* Circle */
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Label */
.step-text {
    margin-top: 10px;
    font-size: 14px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Active / completed */
.step-item.active .step-circle,
.step-item.completed .step-circle {
    background: linear-gradient(135deg, #3EB489, #2ea97a);
    color: #ffffff;
}

.step-item.active .step-text,
.step-item.completed .step-text {
    color: #16a34a;
    font-weight: 700;
}


/* Connecting line */
.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 12px;
    max-width: 80px;
}
/* --------------------- */
/* CARD */
/* --------------------- */
.card {
    
}


.content-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* =====================================
   CARD
===================================== */
.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 26px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =====================================
   ROW (LABEL + VALUE)
===================================== */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.row:last-child {
    border-bottom: none;
}

.row span:last-child {
    font-weight: 700;
}

/* =====================================
   BADGES
===================================== */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf7);
    color: #059669;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* =====================================
   BUTTONS
===================================== */
.primary-btn,
.confirm-btn,
.select-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3EB489, #2ea97a);
    color: #ffffff;
    transition: all 0.25s ease;
    box-shadow: 0 14px 32px rgba(62, 180, 137, 0.45);
}

.primary-btn:hover,
.confirm-btn:hover,
.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(62, 180, 137, 0.55);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(34,197,94,0.35);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(34,197,94,0.45);
}

/* =====================================
   TOTAL / HIGHLIGHT BOX
===================================== */
.total-box {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf7);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 22px;
    font-size: 16px;
    font-weight: 800;
    color: #059669;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =====================================
   UTILITIES
===================================== */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

/* =====================================
   LINKS
===================================== */
a {
    color: #3EB489;
}

a:hover {
    text-decoration: underline;
}

    /* ===============================
   BACK LINK
================================ */
    .back-link {
        display: inline-block;
        margin-bottom: 18px;
        font-weight: 600;
        color: #6366f1;
        text-decoration: none;
    }

    .back-link:hover {
        text-decoration: underline;
    }



    /* ===============================
   cards
================================ */
        .card {
        background: #ffffff;
        border-radius: 18px;
        padding: 28px;
        margin-bottom: 32px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }


    .back-link {

    color: #3EB489;
    text-decoration: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.back-link:hover {
    background: #ecfdf5;
    border-color: #3EB489;
    transform: translateX(-2px);
}

/* GLOBAL */
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #333;
    background: #fff;
      font-size: 15px;       /* default paragraph size */
    line-height: 1.6;
}

/* =====================================
   TYPOGRAPHY SYSTEM (GLOBAL)
===================================== */






strong,
b {
    font-weight: 600;
}

small {
    font-size: 13px;
    font-weight: 400;
}


/* Small helpers */
small {
    font-size: 13px;
}



html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
  max-width: 1400px;
    margin: auto;
}
.btn-primary,
.btn-service {
    font-family: "Lato", sans-serif;
    transition: 0.3s ease-in-out;
}

.btn-primary {
    background: #20ba68;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
}

.btn-primary-outline {
    background: none;
    border: 2px solid #20ba68;
    color: #20ba68;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #159c5c;
    transform: translateY(-2px);
}

.btn-service {
    display: inline-block;
    padding: 10px 18px;
    background: #1fb56f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.btn-service:hover {
    background: #159c5c;
    transform: translateY(-2px);
}




.img-container img,
.hero-img img {
    transition: transform 0.5s ease;
}

.img-container:hover img,
.hero-img:hover img {
    transform: scale(1.05);
}
/* TOP INFO BAR */
.top-info-bar {
    background: #1c944f;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    margin-right: 12px;
    font-size: 15px;
    text-decoration: none;
}


.info-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.info-items span i {
    margin-right: 5px;
}


.divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.5);
}

/* --------------------- */
/* NAVBAR */
/* --------------------- */
.navbar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}
/* --------------------- */
/* FOOTER */
/* --------------------- */

.footer-dark {
    background: radial-gradient(circle at top left, #0f2a44, #050b14);
    color: #cfd8e3;
    font-family: 'Open Sans', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 70px 0;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #cfd8e3;
    margin-bottom: 12px;
    font-size: 14px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #20ba68;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 36px;
}

.footer-logo span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.footer-socials a:hover {
    background: #20ba68;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #cfd8e3;
    margin-left: 20px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #20ba68;
}
/* ============================= */
/* RESPONSIVE FOOTER */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 60px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-socials a {
        margin: 0 6px;
    }

    .footer-col {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
}


/* --------------------- */
/* PAGE HEADER */
/* --------------------- */
.page-header {
    background: #2ea76c;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

.page-title {
color: white;
    font-weight: 800;
    margin-bottom: 6px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

/* ===================== */
/* NAV DROPDOWN - BRANDS */
/* ===================== */

.main-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Dropdown container */
.brands-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 25px;
    width: 520px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;

    z-index: 999;
}

/* Show on hover */
.dropdown:hover .brands-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Brand logos */
.brands-dropdown img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

.brands-dropdown img:hover {
    filter: grayscale(0);
    opacity: 1;
}
/* Arrow icon */
.nav-arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}


