:root {
    --bg: #010101;
    --panel: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f5f6f7;
    --muted: #9aa0a6;
    --soft: #d7d9dd;
    --accent: #2f6bff;
    /* muted blue - adjust if needed */
    --radius: 8px;
    --max: 1240px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    background: transparent;
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    gap: 24px;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Utility */
.muted {
    color: var(--muted);
}

.btn.btn-primary {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn.btn-primary:hover {
    background: #111;
    border-color: #111;
}

.soft {
    color: var(--soft);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 15.5px;
    color: var(--soft);
    width: fit-content;
}

.divider {
    height: 1px;
    background: var(--border);
}

/* Buttons */
.btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
    user-select: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: rgba(47, 107, 255, 0.92);
}

.btn-outline {
    background: transparent;
    border-color: var(--bg);
    color: var(--bg);
}

.btn-outline:hover {
    border-color: #010101;
    background: #010101;
    color: #fff;
}

.btn-call {
    background: red;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}


.btn-link {
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--soft);
    font-weight: 600;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--text);
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional: gives it a nice premium “hero” height */
.hero .content {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Inputs */
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

label {
    font-size: 12px;
    color: var(--muted);
}

input,
select {
    height: 46px;
    padding: 0 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    outline: none;
    font-size: 14px;
}

input::placeholder {
    color: rgba(217, 217, 217, 0.55);
}

select option {
    color: #111;
}

/* Sections */
section {
    padding: 96px 0;
}

@media (max-width: 900px) {
    section {
        padding: 56px 0;
    }

    .row {
        flex-direction: column;
    }
}

/* Top bar */
.topbar {
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 12.5px;
}

.topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .actions {
    display: flex;
    gap: 14px;
}

.topbar a {
    color: var(--muted);
}

.topbar a:hover {
    color: var(--soft);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #010101;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--soft);
}

nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--soft);
    font-size: 13.5px;
}

nav a {
    color: var(--soft);
}

nav a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone {
    font-size: 13.5px;
    color: var(--soft);
}

/* Hamburger */
.menu-btn {
    width: 32px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    height: 2px;
    width: 100%;
    background: var(--text);
    display: block;
    transition: 0.3s;
}

@media (max-width: 900px) {

    .phone {
        display: none;
    }
}

/* Hide mobile CTA in desktop */
.mobile-cta {
    display: none;
}

/* MOBILE */
@media (max-width: 900px) {

    /* Keep logo + hamburger inline */
    .nav {
        justify-content: space-between;
    }

    /* Hide desktop CTA */
    .nav-right .btn-primary {
        display: none;
    }

    /* Show hamburger */
    .menu-btn {
        display: flex;
    }

    /* Convert nav into dropdown */
    nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #0b0b0c;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    /* Show menu */
    nav.active {
        max-height: 500px;
    }

    /* Show CTA inside menu */
    .mobile-cta {
        display: block;
        margin-top: 10px;
    }
}

/* Hamburger Animation */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
    padding: 0;
    min-height: calc(90vh - 108px);
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(11, 11, 12, 0.92) 0%,
            rgba(11, 11, 12, 0.7) 45%,
            rgba(11, 11, 12, 0.9) 100%),
        radial-gradient(900px 400px at 20% 20%,
            rgba(47, 107, 255, 0.18),
            transparent 60%),
        url("https://images.unsplash.com/photo-1617886322009-0f0d0b0e0d0a?auto=format&fit=crop&w=2400&q=80");
    background-size: cover;
    background-position: center;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
}

.hero .content {
    position: relative;
    width: 100%;
    padding: 88px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero .content {
        padding: 64px 0 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 35px);
    line-height: 1.08;
    letter-spacing: -0.6px;
}

.sub {
    margin-top: 14px;
    max-width: 100%;
    color: var(--soft);
    font-size: 15.5px;
    text-align: justify;
}

.cta-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trustline {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

/* Quick booking bar */
.booking-bar {
    margin-top: 28px;
    padding: 16px;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1fr 1.1fr auto;
    gap: 12px;
    align-items: end;
}

@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-grid .span-2 {
        grid-column: span 2;
    }

    .booking-grid .full {
        grid-column: 1 / -1;
    }

    .booking-grid .btn {
        width: 100%;
    }
}

/* Trust strip */
.trust-strip {
    padding: 56px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1 1fr;
    }
}

.trust-item {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: #010101;
    /* changed */
}

.trust-item h4 {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #fff;
    /* changed */
}

.trust-item p {
    margin: 0;
    color: #fff;
    /* changed */
    font-size: 16px;
}

/* Section headings */
.section-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.3px;
    color: #010101;
}

.section-head p {
    margin: 0;
    max-width: 520px;
    color: var(--bg);
    font-size: 14.5px;
}

/* Services */
.cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card {
    padding: 18px;
    border: 1px solid #010101;
    background: transparent;
    /* changed */
    border-radius: var(--radius);
    min-height: 132px;
}

.icon {
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: #000;
    /* changed */
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.icon img {
    border-radius: 10px;
}

.card h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #010101;
    text-align: center;
    /* changed */
}

.card p {
    margin: 0;
    color: #fff;
    /* changed */
    font-size: 13.5px;
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .packages {
        grid-template-columns: 1fr;
    }
}

.package {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #010101;
    /* changed */
    position: relative;
}

.package.recommended {
    border-color: rgba(47, 107, 255, 0.55);
    box-shadow: 0 18px 50px rgba(47, 107, 255, 0.1);
}

.tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(47, 107, 255, 0.55);
    background: rgba(47, 107, 255, 0.12);
    color: #fff;
    /* changed */
}

.package h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #fff;
    /* changed */
}

.package .price {
    margin: 0 0 12px 0;
    color: #fff;
    /* changed */
    font-size: 13.5px;
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #000;
    /* changed */
    font-size: 13.5px;
}

.check {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-size: 12px;
    color: #000;
    /* changed */
    flex: 0 0 auto;
}

.package .actions {
    margin-top: 16px;
}

/* Process */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

.step {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #010101;
    /* changed */
}

.num {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    /* changed */
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 13px;
}

.step h4 {
    margin: 0 0 6px 0;
    font-size: 14.5px;
    color: #fff;
    /* changed */
}

.step p {
    margin: 0;
    color: #fff;
    /* changed */
    font-size: 13.5px;
}

/* Reviews */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .reviews {
        grid-template-columns: 1fr;
    }
}

.review {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.stars {
    font-size: 12.5px;
    color: var(--soft);
    letter-spacing: 1px;
}

.review p {
    margin: 10px 0 10px;
    color: var(--soft);
    font-size: 13.8px;
}

.review .who {
    color: var(--muted);
    font-size: 13px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

.gimg {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.gimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
}

/* FAQ */

#faq {
    background: #010101;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
}


details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 16px;
}

details+details {
    margin-top: 12px;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--soft);
    font-size: 16px;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* Location */
.loc {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .loc {
        grid-template-columns: 1fr;
    }
}

.map {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Final CTA */
.final {
    padding: 84px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(800px 400px at 20% 20%,
            rgba(26, 28, 32, 0.16),
            transparent 60%),
        rgba(255, 255, 255, 0.02);
}

.final-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
}

@media (max-width: 900px) {
    .final-grid {
        grid-template-columns: 1fr;
    }
}

.form {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #010101;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    padding: 28px 0;
    color: var(--muted);
    font-size: 12.5px;
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

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

/* =========================
   RESPONSIVE PATCH (paste at bottom)
   ========================= */

/* 1) Make media never overflow */
img,
video {
    max-width: 100%;
    height: auto;
}

/* 2) Prevent flex items from forcing overflow */
.row,
.nav,
.hero-grid,
.final-grid,
.footer-inner {
    min-width: 0;
}

.stack,
.field,
.card,
.package,
.step,
.review {
    min-width: 0;
}

/* 3) Improve CTA wrapping on small screens */
.cta-row {
    width: 100%;
}

@media (max-width: 600px) {
    .cta-row .btn {
        width: 100%;
    }
}

/* 4) Fix wide grids progressively */
@media (max-width: 1200px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* booking grid: make it simpler */
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-grid .btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .cards {
        grid-template-columns: 1fr;
    }

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

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

    /* booking grid: single column on very small */
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

/* 5) Header/nav: allow wrapping + reduce height on phones */
@media (max-width: 900px) {
    header {
        backdrop-filter: blur(8px);
    }

    .nav {
        height: auto;
        padding: 12px 12px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-right {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .nav-right .btn {
        height: 46px;
    }
}

/* 6) Hero spacing + text scale on smaller screens */
@media (max-width: 900px) {
    .hero .content {
        padding: 56px 0 48px;
    }

    h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .sub {
        font-size: 14.5px;
    }
}

/* 7) Section padding scale down smoothly */
@media (max-width: 900px) {
    section {
        padding: 56px 0;
    }
}

@media (max-width: 520px) {
    section {
        padding: 44px 0;
    }
}

/* 8) Location section: ensure map doesn’t get tiny */
@media (max-width: 900px) {
    .map {
        min-height: 280px;
    }
}

@media (max-width: 520px) {
    .map {
        min-height: 240px;
    }
}

/* 9) Make forms stack cleanly */
@media (max-width: 520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* 10) Ensure long text doesn’t overflow cards */
.card,
.package,
.step,
.review,
.pill,
.logo,
nav a {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.text-justify {
    text-align: justify;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image */
.about-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.4s;
}

.about-img img:hover {
    transform: scale(1.03);
}

/* Content */
.about-content .tag {
    font-size: 12px;
    color: var(--bg);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: clamp(22px, 2.2vw, 34px);
    margin: 12px 0 18px;
    color: var(--bg);
}

.about-content p {
    color: var(--bg);
    margin-bottom: 14px;
    line-height: 1.7;
}

.about-content .btn {
    margin-top: 10px;
    border: 1px solid #010101;
}

.about-content .btn:hover {
    background-color: #010101;
    color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

.text-black {
    color: #010101;
}

.text-center{
    text-align: center;
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:10px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.floatyy{
    position:fixed;
    width:60px;
    height:60px;
    bottom:120px;
    right:10px;
    background-color:red;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

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

.section{
    padding-top: 0px !important;
}