:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #22c55e;

    --dark: #07111f;
    --dark-2: #0f172a;

    --text: #0f172a;
    --text-soft: #475569;
    --muted: #94a3b8;

    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;

    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);

    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 34px;

    --container: 1200px;
    --section: 95px 0;

    --font: 'Inter', sans-serif;
    --heading: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img,
svg,
iframe {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

section[id] {
    scroll-margin-top: 90px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: grid;
    place-items: center;
    transition: 0.4s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader-circle {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 16px;
}

.loader p {
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 18px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-text span {
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1.12rem;
    color: var(--white);
    line-height: 1.1;
}

.logo-text small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.4px;
}

.navbar.scrolled .logo-text span {
    color: var(--text);
}

.navbar.scrolled .logo-text small {
    color: var(--muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-soft);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: #e0f2fe;
    color: var(--primary-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: 0.25s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text);
}

.hamburger.active span {
    background: var(--text);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 0.94rem;
    cursor: pointer;
    transition: 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(14, 165, 233, 0.38);
}

.btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.btn-nav {
    background: var(--white);
    color: var(--primary-dark);
    padding: 10px 18px;
}

.navbar.scrolled .btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-lg {
    padding: 15px 30px;
}

.btn-full {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 125px 0 80px;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(14, 165, 233, 0.28), transparent 36%),
        radial-gradient(circle at 85% 65%, rgba(34, 197, 94, 0.18), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #0f172a 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 60px;
}

.hero-content {
    min-width: 0;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 18px;
    background: #e0f2fe;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.hero-badge {
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #7dd3fc;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    max-width: 590px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 44px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
}

.hero-stats div {
    min-width: 110px;
}

.hero-stats strong {
    display: block;
    font-family: var(--heading);
    color: var(--primary-light);
    font-size: 1.8rem;
    line-height: 1.1;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
}

.hero-visual {
    min-width: 0;
    display: flex;
    justify-content: center;
}

.cool-card {
    position: relative;
    width: min(430px, 100%);
    min-height: 430px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-display {
    width: 230px;
    height: 155px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #e0f2fe);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 24px 60px rgba(14, 165, 233, 0.22);
}

.ac-display i {
    font-size: 3rem;
    margin-bottom: 8px;
}

.ac-display span {
    font-family: var(--heading);
    font-size: 2.4rem;
    font-weight: 900;
}

.cool-lines {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 15px;
}

.cool-lines span {
    width: 70px;
    height: 9px;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.4);
    animation: wave 1.6s ease-in-out infinite;
}

.cool-lines span:nth-child(2) {
    animation-delay: 0.2s;
}

.cool-lines span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    50% {
        transform: translateY(12px);
        opacity: 0.45;
    }
}

.hero-mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.hero-mini-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.hero-mini-card strong {
    display: block;
    font-size: 0.9rem;
}

.hero-mini-card small {
    color: var(--muted);
    font-size: 0.78rem;
}

.card-top {
    top: 45px;
    right: -20px;
}

.card-bottom {
    bottom: 45px;
    left: -20px;
}

/* Quick info */
.quick-info {
    margin-top: -45px;
    position: relative;
    z-index: 3;
}

.quick-grid {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
}

.quick-item {
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--border);
    min-width: 0;
}

.quick-item:last-child {
    border-right: 0;
}

.quick-item i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    background: #e0f2fe;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quick-item h4 {
    font-family: var(--heading);
    font-size: 0.95rem;
}

.quick-item p {
    color: var(--text-soft);
    font-size: 0.86rem;
}

/* Section headings */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-header h2,
.about-content h2,
.booking-info h2 {
    font-family: var(--heading);
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.section-header h2 span,
.about-content h2 span,
.booking-info h2 span,
.contact-section h2 span {
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-soft);
}

/* Services */
.services-section,
.why-section,
.contact-section {
    background: var(--bg-soft);
}

.services-grid,
.packages-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-card,
.package-card,
.why-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.03);
    transition: 0.3s ease;
    min-width: 0;
}

.service-card:hover,
.package-card:hover,
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #bae6fd;
}

.service-card.featured,
.package-card.featured {
    border-color: var(--primary-light);
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.popular-tag,
.package-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #dcfce7;
    color: #15803d;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.service-icon,
.why-card i {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    background: #e0f2fe;
    font-size: 1.45rem;
    margin-bottom: 22px;
}

.service-card h3,
.package-card h3,
.why-card h3 {
    font-family: var(--heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p,
.package-card p,
.why-card p {
    color: var(--text-soft);
    font-size: 0.94rem;
    margin-bottom: 18px;
}

.service-card ul,
.package-card ul {
    display: grid;
    gap: 8px;
}

.service-card li,
.package-card li {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.service-card li i,
.package-card li i,
.about-list i,
.booking-points i {
    color: var(--accent);
    margin-right: 6px;
}

/* Packages */
.packages-section,
.about-section,
.booking-section {
    background: var(--white);
}

.price {
    font-family: var(--heading);
    font-size: 2.15rem;
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.package-card {
    display: flex;
    flex-direction: column;
}

.package-card ul {
    margin-bottom: 26px;
    flex: 1;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

.about-card {
    min-height: 420px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 35%),
        linear-gradient(135deg, #0f172a, #07111f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.about-card i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    animation: rotateFan 6s linear infinite;
}

@keyframes rotateFan {
    to {
        transform: rotate(360deg);
    }
}

.about-card h3 {
    font-family: var(--heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.72);
}

.about-content p {
    color: var(--text-soft);
    margin-bottom: 14px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
    font-weight: 700;
    color: var(--text);
}

/* Why */
.why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
    text-align: left;
}

/* Booking */
.booking-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.14), transparent 35%),
        linear-gradient(135deg, var(--dark), var(--dark-2));
    color: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 50px;
    align-items: center;
}

.booking-info h2 {
    color: var(--white);
}

.booking-info p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 24px;
}

.booking-points {
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.booking-form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 0;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.form-group label {
    color: var(--text);
    font-weight: 800;
    font-size: 0.88rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 13px;
    padding: 13px 15px;
    outline: 0;
    color: var(--text);
    background: var(--white);
    transition: 0.25s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-card > i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #e0f2fe;
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--heading);
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.contact-card a {
    color: var(--primary-dark);
    font-weight: 800;
}

.map-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-box iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.map-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.map-actions h4 {
    font-family: var(--heading);
}

.map-actions p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.9fr 1.15fr;
    gap: 38px;
    padding-bottom: 55px;
}

.footer .logo-text span,
.footer-logo .logo-text span {
    color: var(--white);
}

.footer .logo-text small,
.footer-logo .logo-text small {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    margin: 18px 0 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.25s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--heading);
    margin-bottom: 18px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

/* Floating buttons */
.whatsapp-float,
.back-to-top {
    position: fixed;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: 0.25s ease;
}

.whatsapp-float {
    left: 24px;
    bottom: 24px;
    background: #25d366;
    font-size: 1.55rem;
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover,
.back-to-top:hover {
    transform: translateY(-4px) scale(1.04);
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 11px;
    }

    .btn-nav span {
        display: none;
    }

    .quick-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-item:nth-child(2) {
        border-right: 0;
    }

    .quick-item {
        border-bottom: 1px solid var(--border);
    }

    .quick-item:nth-child(3),
    .quick-item:nth-child(4) {
        border-bottom: 0;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .about-grid,
    .booking-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        text-align: center;
    }

    .hero p,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        text-align: center;
    }

    .about-list {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    :root {
        --section: 75px 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 330px);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 42px 26px;
        box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
        transition: 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text);
        width: 100%;
        padding: 13px 16px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #e0f2fe;
        color: var(--primary-dark);
    }

    .hero {
        min-height: auto;
        padding: 115px 0 65px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-visual {
        order: -1;
    }

    .cool-card {
        min-height: 330px;
    }

    .hero-mini-card {
        display: none;
    }

    .quick-info {
        margin-top: 0;
        padding-top: 24px;
        background: var(--bg-soft);
    }

    .quick-grid {
        border-radius: var(--radius-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-card {
        padding: 26px 20px;
    }

    .map-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-actions .btn {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-text span {
        font-size: 1rem;
    }

    .logo-text small {
        font-size: 0.63rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stats div {
        flex: 1 1 120px;
    }

    .quick-grid,
    .services-grid,
    .packages-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--border) !important;
    }

    .quick-item:last-child {
        border-bottom: 0 !important;
    }

    .about-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-card {
        min-height: 300px;
        border-radius: 22px;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-header h2,
    .about-content h2,
    .booking-info h2 {
        font-size: 1.55rem;
    }

    .service-card,
    .package-card,
    .why-card {
        padding: 26px 22px;
    }

    .map-box iframe {
        height: 280px;
    }

    .whatsapp-float,
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 18px;
    }

    .whatsapp-float {
        left: 18px;
    }

    .back-to-top {
        right: 18px;
    }
}