/* =========================================================
   THEME VARIABLES
========================================================= */
:root {
    --dark-bg: #0a0f14;
    --card-bg: #101821;
    --accent: #4caf50;
    --text: #e5e5e5;
    --border: #1a242e;
    --border-soft: rgba(255,255,255,0.06);
}

/* =========================================================
   RESET
========================================================= */
* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    background: #0d131a;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--border-soft);
    padding: 15px 0;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    text-align: center;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 16px;
}
.nav-links a:hover {
    color: var(--accent);
}

/* FAQ Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: #cfcfcf;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    min-width: 180px;
    top: 25px;
    border-radius: 8px;
}
.dropdown-content a {
    display: block;
    padding: 10px;
    color: #ccc;
}
.dropdown-content a:hover {
    background: rgba(76,175,80,0.2);
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================================
   HERO
========================================================= */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    opacity: 0.85;
    max-width: 650px;
    margin: 14px auto 24px;
}

.cta-btn {
    background: var(--accent);
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* =========================================================
   SECTION
========================================================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;
}

/* =========================================================
   SERVICES
========================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

.service-card {
    background: linear-gradient(135deg, #0d141c, #0a1118);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    min-width: 400px;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 44px;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.card-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.card-desc {
    min-height: 66px;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* ===== PRICE BAR — OPTION E ===== */
.card-bottom {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);

    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 16px;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.button-group {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.book-btn,
.info-btn,
.faq-btn {
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.book-btn {
    background: var(--accent);
    border: none;
    color: white;
}

.info-btn {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.faq-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #3a4a51;
}

/* =========================================================
   CONTACT
========================================================= */
.contact-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

/* =========================================================
   BOOKING MODAL
========================================================= */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
    z-index: 99999;
}

.modal.show { display: flex; }

.modal-content {
    background: linear-gradient(135deg, #101820, #0b1117);
    padding: 30px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    border: 1px solid var(--border-soft);
    animation: modalPop 0.3s ease;
    text-align: center;
}

.modal-close {
    float: right;
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}

.modal-sub {
    opacity: 0.75;
    margin: 12px 0 20px;
}

.modal-continue {
    background: var(--accent);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* =========================================================
   FAQ MODALS
========================================================= */
.faq-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.78);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
    z-index: 999999;
}

.faq-modal.show { display: flex; }

.faq-content {
    background: linear-gradient(135deg, #101820, #0b1117);
    padding: 40px;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    border: 1px solid var(--border-soft);
    animation: modalPop 0.3s ease;
}

.faq-content h2 {
    margin-bottom: 18px;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 0;
}

.faq-q {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

.faq-a {
    display: none;
    color: #ddd;
    padding-top: 10px;
    line-height: 1.5;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-close {
    float: right;
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================================
   BACK TO TOP
========================================================= */
#backToTop {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px; 
    height: 55px;
    background: var(--accent);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes modalPop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 850px) {

    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 12px;
        background: #0b1017;
        padding: 20px;
        border-radius: 8px;
        position: absolute;
        right: 20px;
        top: 65px;
    }

    .nav-links.active { display: flex; }

    .hero h1 { font-size: 32px; }
}
