/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: #2d2d2d;
    background: #faf9f6;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== COLOR PALETTE ===== */
:root {
    --primary: #0e6b60;
    --primary-dark: #094d45;
    --primary-light: #e8f5f2;
    --accent-gold: #c9a84c;
    --accent-coral: #e07a5f;
    --accent-coral-light: #fdf0ec;
    --bg-cream: #faf9f6;
    --bg-warm: #f5f0e8;
    --text-dark: #1a1a1a;
    --text-mid: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 8px;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.8;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo img {
    height: 100px;
    width: 100px;
    display: block;
}
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-text .brand { font-size: 1.55rem; font-weight: 700; }
.navbar-logo-text .sub { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; font-weight: 500; margin-top: 4px; }
.navbar.scrolled .navbar-logo-text .sub { color: var(--text-mid); }
.navbar-logo span { color: var(--accent-gold); }
.navbar.scrolled .navbar-logo { color: var(--primary-dark); }
.navbar-links { display: flex; gap: 32px; align-items: center; }
.navbar-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}
.navbar-links a:hover::after { width: 100%; }
.navbar.scrolled .navbar-links a { color: var(--text-mid); }
.navbar.scrolled .navbar-links a:hover { color: var(--primary); }
.navbar-cta {
    background: var(--accent-gold) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.navbar-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.navbar-cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 6px 0; transition: all 0.3s; border-radius: 2px; }
.navbar.scrolled .menu-toggle span { background: var(--text-dark); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #062e2a 0%, #0e6b60 40%, #1a7a6e 60%, #2d8b7a 100%);
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,46,42,0.82) 0%, rgba(14,107,96,0.7) 40%, rgba(26,122,110,0.65) 60%, rgba(45,139,122,0.7) 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.25) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}
.hero-floating {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-floating.f1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%); top: 10%; right: 10%; animation: float1 8s ease-in-out infinite; }
.hero-floating.f2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(224,122,95,0.1), transparent 70%); bottom: 20%; left: 5%; animation: float2 10s ease-in-out infinite; }
.hero-floating.f3 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); top: 40%; left: 30%; animation: float3 12s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-15px, -25px); } }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent-gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-gold), #e0c068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(0.5); opacity: 1; } }

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--white);
    padding: 48px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
}
.features-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.feature-item:hover .feature-icon { transform: scale(1.1); }
.feature-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.feature-text p { font-size: 0.8rem; color: var(--text-light); }

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--bg-cream);
}
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.smartgeo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-light), #d5ede8);
    border: 1px solid rgba(14,107,96,0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.smartgeo-badge .sg-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.about-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: imageShine 4s ease-in-out infinite;
}
@keyframes imageShine { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 130px;
    background: var(--accent-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.about-image-float .stat { text-align: center; color: var(--white); }
.about-image-float .stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-image-float .stat-label { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }

.about-content .section-desc { margin-bottom: 32px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.about-list li .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    font-size: 0.8rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--white);
}
.services-header {
    text-align: center;
    margin-bottom: 64px;
}
.services-header .section-desc { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14,107,96,0.1);
}
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    position: relative;
}
.service-card-icon.spa { background: linear-gradient(135deg, #e8f5f2, #d0ebe6); }
.service-card-icon.fun { background: linear-gradient(135deg, #fdf0ec, #fbe0d8); }
.service-card-icon.food { background: linear-gradient(135deg, #fef9ec, #fdf0d0); }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 12px; }
.service-card .card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.service-card:nth-child(1) .card-glow { background: radial-gradient(circle, rgba(14,107,96,0.06), transparent 70%); }
.service-card:nth-child(2) .card-glow { background: radial-gradient(circle, rgba(224,122,95,0.06), transparent 70%); }
.service-card:nth-child(3) .card-glow { background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%); }

/* ===== OFFER DETAILS ===== */
.offer {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}
.offer-header {
    text-align: center;
    margin-bottom: 80px;
}
.offer-header .section-desc { margin: 0 auto; }

.offer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.offer-row:last-child { margin-bottom: 0; }
.offer-row.reversed .offer-visual { order: 2; }
.offer-row.reversed .offer-info { order: 1; }

.offer-visual {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.offer-visual-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}
.offer-visual-bg img, .gallery-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-visual-bg.spa-bg { background: linear-gradient(135deg, #0e6b60, #1a8a7c); }
.offer-visual-bg.kids-bg { background: linear-gradient(135deg, #e07a5f, #eb9b85); }
.offer-visual-bg.food-bg { background: linear-gradient(135deg, #c9a84c, #dfc06e); }

.offer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.offer-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.offer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.offer-feature .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== VIDEO SHOWCASE ===== */
.video-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}
.video-showcase-header {
    text-align: center;
    margin-bottom: 56px;
}
.video-showcase-header .section-desc { margin: 0 auto; }
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 720px;
    margin: 0 auto;
}
.video-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}
.video-frame {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0a1a18;
}
.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-card figcaption {
    text-align: center;
    padding: 0 8px;
}
.video-card figcaption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.video-card figcaption p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.video-showcase-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-mid);
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 120px 0;
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.how::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 60%);
}
.how-header {
    text-align: center;
    margin-bottom: 80px;
}
.how-header .section-title { color: var(--white); }
.how-header .section-desc { color: rgba(255,255,255,0.65); margin: 0 auto; }

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
}
.how-step { text-align: center; position: relative; }
.how-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #dfc06e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}
.how-step h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.how-step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-cream);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #d0ebe6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--white);
}
.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}
.gallery-header .section-desc { margin: 0 auto; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.gallery-item .gallery-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover .gallery-bg { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 500; }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(1) .gallery-bg { background: linear-gradient(135deg, #0e6b60, #1a8a7c); }
.gallery-item:nth-child(2) .gallery-bg { background: linear-gradient(135deg, #e07a5f, #eb9b85); }
.gallery-item:nth-child(3) .gallery-bg { background: linear-gradient(135deg, #c9a84c, #dfc06e); }
.gallery-item:nth-child(4) .gallery-bg { background: linear-gradient(135deg, #2d8b7a, #4aa393); }
.gallery-item:nth-child(5) .gallery-bg { background: linear-gradient(135deg, #d4785a, #e8a08a); }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(6) .gallery-bg { background: linear-gradient(135deg, #094d45, #0e6b60); }

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background: var(--bg-warm);
}
.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}
.pricing-header .section-desc { margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 2px solid transparent;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.pricing-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.pricing-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.pricing-subtitle { font-size: 0.8rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-from { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.pricing-headline-price { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; line-height: 1; }
.pricing-headline-price .period { font-size: 0.85rem; color: var(--text-light); font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-table { width: 100%; margin-bottom: 28px; text-align: left; }
.pricing-table .row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid #f2ede4; gap: 12px; }
.pricing-table .row:last-child { border-bottom: none; }
.pricing-table .label { color: var(--text-mid); flex: 1; }
.pricing-table .value { font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.pricing-card.featured .pricing-table .value { color: var(--primary-dark); }

/* Inflatables & extras */
.pricing-extras {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.extras-card.machines {
    background: linear-gradient(135deg, #fef9ec 0%, var(--white) 60%);
    border: 1px solid rgba(201,168,76,0.2);
}
.extras-card.machines .extras-card-price {
    color: var(--accent-gold);
    font-size: 1.4rem;
    line-height: 1.2;
}
.extras-card.machines .extras-card-price small {
    display: block;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 2px;
}
.extras-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.extras-dimensions .dim {
    background: var(--bg-cream);
    border: 1px solid #ebe4d3;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 500;
    white-space: nowrap;
}

.extras-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.extras-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(224,122,95,0.15); }
.extras-card-head { display: flex; align-items: center; gap: 14px; }
.extras-card-emoji { font-size: 2rem; }
.extras-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); }
.extras-card-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--accent-coral); }
.extras-card-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.extras-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.extras-card ul li { font-size: 0.85rem; color: var(--text-mid); padding-left: 16px; position: relative; }
.extras-card ul li::before { content: '•'; position: absolute; left: 4px; color: var(--accent-coral); font-weight: bold; }

/* Transport & holidays info */
.pricing-info-strip {
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.info-block {
    background: var(--white);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}
.info-block h4 { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.info-block .info-rows { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; color: var(--text-mid); }
.info-block .info-rows .ir { display: flex; justify-content: space-between; gap: 12px; }
.info-block .info-rows .ir strong { color: var(--text-dark); font-weight: 600; }
.info-block p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.btn-pricing {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-pricing:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(14,107,96,0.3); }
.pricing-card.featured .btn-pricing { background: var(--accent-gold); }
.pricing-card.featured .btn-pricing:hover { background: #b8963e; box-shadow: 0 4px 15px rgba(201,168,76,0.3); }

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before, .cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta::before { width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 60%); top: -100px; right: -100px; }
.cta::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 60%); bottom: -80px; left: -80px; }

.cta-content { position: relative; z-index: 2; }
.cta .section-title { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; }
.cta .btn-primary { font-size: 1.05rem; padding: 18px 44px; }

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--bg-cream);
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #f0ede6;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question .icon { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 28px 22px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-item-text p { font-size: 0.85rem; color: var(--text-mid); }
.contact-item-text a { color: var(--primary); text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e8e4dc;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,107,96,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(14,107,96,0.3); }

/* ===== FOOTER ===== */
.footer {
    background: #0a1a18;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand .navbar-logo { display: inline-flex; margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.footer-social a:hover { background: var(--accent-gold); color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(14,107,96,0.3);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,26,24,0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.lightbox-img-wrap {
    position: relative;
    max-width: 100%;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
    max-width: 720px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.08);
}
.lightbox-close {
    top: 24px;
    right: 24px;
}
.lightbox-prev { left: -72px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -72px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===== COOKIE BANNER (mockup) ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 32px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    gap: 24px;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: var(--text-mid); max-width: 600px; }
.cookie-banner .cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-btn.accept { background: var(--primary); color: var(--white); }
.cookie-btn.accept:hover { background: var(--primary-dark); }
.cookie-btn.decline { background: #f0f0f0; color: var(--text-mid); }
.cookie-btn.decline:hover { background: #e0e0e0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-bar .container { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-extras { grid-template-columns: 1fr; max-width: 440px; }
    .video-grid { grid-template-columns: 1fr; max-width: 380px; gap: 40px; }
    .pricing-info-strip { grid-template-columns: 1fr; max-width: 440px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .lightbox-prev { left: 12px; background: rgba(255,255,255,0.15); }
    .lightbox-next { right: 12px; background: rgba(255,255,255,0.15); }
}
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .menu-toggle { display: block; }
    .about .container, .offer-row, .contact .container { grid-template-columns: 1fr; gap: 40px; }
    .offer-row.reversed .offer-visual, .offer-row.reversed .offer-info { order: unset; }
    .features-bar .container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
    .gallery-item .gallery-bg { min-height: 200px; position: relative; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .offer-features { grid-template-columns: 1fr; }
    .about-image-float { right: 10px; bottom: -20px; }
    .navbar-logo img { height: 72px; width: 72px; }
    .navbar-logo-text .brand { font-size: 1.25rem; }
    .navbar-logo-text .sub { font-size: 0.6rem; letter-spacing: 1.5px; }
}
