:root {
    --blue: #00FFFF;
    --teal: #0d9488;
    --charcoal: #2d3436;
    --lightgrey: #f8f9fa;
    --softgrey: #e9ecef;
    --white: #ffffff;
    --accent: #10b981;
    --whatsapp: #25D366;
    --section-bg-light: #ffffff;
    --section-bg-dark: #121212;
    --section-text-light: #333333;
    --section-text-dark: #e0e0e0;
}

[data-theme="dark"] {
    --charcoal: #f8f9fa;
    --lightgrey: #121212;
    --softgrey: #1e1e1e;
    --white: #222222;
    background: #0f0f0f;
    color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--section-text-light);
    line-height: 1.7;
    background: var(--lightgrey);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.30);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

[data-theme="dark"] header {
    background: rgba(18, 18, 18, 0.88);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.hero {
    height: 100vh;
    width: 100vw;
    max-width: none;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url('../images/newBG.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    min-height: 86px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.05rem;
}

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

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle i {
    transition: 0.3s;
}

.theme-toggle:hover i {
    transform: scale(1.2);
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--charcoal);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #00FFFF !important;
}

.hero .tagline {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--blue);
    margin: 20px 0;
}

.hero p,
.hero-description {
    max-width: 900px;
    font-size: 1.4rem;
    margin: 25px auto;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px;
}

.btn:hover {
    background: #11766d;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--charcoal);
}

/* SECTIONS */
section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 100px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--charcoal);
}

.section-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.9;
}

.about-quote {
    margin-bottom: 60px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARDS */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

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

.card i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p,
.service-detail,
.testimonial p,
.contact-box p {
    font-size: 1.05rem;
}

#about .grid img {
    width: 100%;
    max-width: 400px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* TESTIMONIALS + CONTACT */
.testimonials,
.contact {
    background: var(--section-bg-light);
    color: var(--section-text-light);
    padding: 120px 5%;
    width: 100%;
    max-width: none;
    margin: 0;
}

[data-theme="dark"] .testimonials,
[data-theme="dark"] .contact {
    background: var(--section-bg-dark);
    color: var(--section-text-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial {
    background: rgba(0,0,0,0.05);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border-left: 5px solid var(--teal);
}

[data-theme="dark"] .testimonial {
    background: rgba(255,255,255,0.1);
}

.stars {
    color: #facc15;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.empty-message {
    grid-column: 1 / -1;
    text-align: center;
    opacity: 0.7;
}

.testimonial-form {
    background: rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

[data-theme="dark"] .testimonial-form {
    background: rgba(255,255,255,0.1);
}

.adaptive-heading {
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 30px;
}

[data-theme="dark"] .adaptive-heading {
    color: var(--section-text-dark);
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

label,
input,
textarea,
select {
    font-size: 1rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: rgba(0,0,0,0.05);
    color: inherit;
    font-family: inherit;
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: rgba(255,255,255,0.1);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

.rating {
    display: flex;
    gap: 8px;
    font-size: 2.2rem;
    cursor: pointer;
}

.rating span {
    color: #ccc;
}

.rating span.active,
.rating span:hover {
    color: #facc15;
}

button {
    background: var(--teal);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

button:hover {
    background: #11766d;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-box {
    background: rgba(0,0,0,0.05);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.contact-box:hover {
    background: rgba(0,0,0,0.1);
}

[data-theme="dark"] .contact-box {
    background: rgba(255,255,255,0.1);
}

[data-theme="dark"] .contact-box:hover {
    background: rgba(255,255,255,0.2);
}

.contact-link {
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.booking-form-wrapper {
    margin-top: 60px;
}

#bookingNotice {
    display: none;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.center {
    text-align: center;
}

/* SERVICES */
.service-card {
    position: relative;
}

.service-detail {
    display: none;
    margin-top: 15px;
    background: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

[data-theme="dark"] .service-detail {
    background: #1e1e1e;
    color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.service-card:hover .service-detail,
.service-card:focus-within .service-detail {
    display: block;
}

/* WHATSAPP */
.whatsapp-float-pro {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float-pro:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    background: #1ebe5d;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* BADGE + FOOTER */
.badge {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 10px 5px;
}

footer {
    background: #111;
    color: #aaa;
    padding: 50px 5%;
    text-align: center;
}

[data-theme="dark"] footer {
    background: #000;
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 10px 0;
    }

    nav {
        min-height: 74px;
    }

    .logo-img {
        height: 65px;
        width: auto;
    }

    .mobile-menu {
        display: block;
        font-size: 1.6rem;
        color: var(--charcoal);
        padding: 10px;
        z-index: 3000;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 65%;
        max-width: 320px;
        background: var(--white);
        flex-direction: column;
        padding-top: 90px;
        gap: 18px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        border-radius: 0 0 0 18px;
        z-index: 2000;
    }

    [data-theme="dark"] .nav-links {
        background: #222;
    }

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

    .nav-links a {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .theme-toggle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--teal);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-top: 5px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

    .theme-toggle i {
        color: white;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 80px;
    }

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

    .hero .tagline {
        font-size: 1.5rem;
    }

    .hero p,
    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
        display: block;
    }

    section {
        padding: 70px 20px;
    }

    h2 {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .grid {
        gap: 25px;
    }

    .card {
        padding: 30px 25px;
    }

    .card i {
        font-size: 2.5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-form {
        padding: 30px 25px;
    }

    .whatsapp-float-pro {
        width: 55px;
        height: 55px;
        font-size: 26px;
        right: 18px;
        bottom: 18px;
    }

    .service-card:active .service-detail {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.login-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

.login-btn:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .section-inner {
        padding: 0 16px;
    }

    p, h1, h2, h3 {
        word-wrap: break-word;
        line-height: 1.6;
    }

}