/* ============================================
   SARDYNIA MARZEŃ — Design System & Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --navy-900: #0a0e1a;
    --navy-800: #0f1629;
    --navy-700: #151d38;
    --navy-600: #1c2647;
    --navy-500: #2a3560;

    --turquoise-400: #2dd4bf;
    --turquoise-500: #14b8a6;
    --turquoise-600: #0d9488;

    --sand-200: #fef3c7;
    --sand-300: #fcd34d;
    --sand-400: #f59e0b;

    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 40%, #1b2838 70%, #162a3a 100%);
    --gradient-accent: linear-gradient(135deg, var(--turquoise-400), var(--turquoise-600));
    --gradient-gold: linear-gradient(135deg, var(--sand-300), var(--sand-400));
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(45, 212, 191, 0.15);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--white-90);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--turquoise-400);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--turquoise-500);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- Glass Card --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--white-05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.navbar-logo:hover {
    color: var(--white);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-links li a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white-70);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-base);
}

.navbar-links li a:hover {
    color: var(--white);
    background: var(--white-05);
}

.navbar-cta {
    background: var(--gradient-accent) !important;
    color: var(--navy-900) !important;
    font-weight: 600 !important;
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.navbar-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.navbar-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Typography --- */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--turquoise-400);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--white-70);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* accentuate section titles */
#calendar-section,
#offers-section {
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('hero-bg.png') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.3) 50%, rgba(10, 14, 26, 0.7) 100%),
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 212, 191, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--turquoise-400);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
    animation: heroFadeIn 1.2s var(--ease-out) both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--turquoise-400);
    margin-bottom: 24px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white-70);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: heroFadeIn 1.2s var(--ease-out) 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
    animation: heroFadeIn 1.2s var(--ease-out) 0.8s both;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(45, 212, 191, 0.3);
    color: var(--navy-900);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white-30);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--turquoise-400);
    border-radius: 2px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 120%;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    background: var(--navy-900);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    width: 300px;
    height: 360px;
    margin: 0 auto;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
}

.about-initials {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gradient-accent);
    color: var(--navy-900);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.about-text .section-tag {
    margin-bottom: 12px;
}

.about-text .section-title {
    margin-bottom: 28px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--white-70);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--turquoise-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white-50);
    margin-top: 6px;
}

/* ============================================
   CALENDAR SECTION
   ============================================ */
#calendar-section {
    background: var(--navy-800);
    position: relative;
}

#calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.calendar-container {
    padding: 32px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    color: var(--white-70);
    cursor: pointer;
    transition: var(--transition-base);
}

.cal-nav-btn:hover {
    background: var(--white-10);
    color: var(--white);
    border-color: var(--turquoise-400);
}

.cal-month-year {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.cal-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-70);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    border: none;
    background: none;
    font-family: var(--font-body);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--white-10);
    color: var(--white);
}

.cal-day.empty {
    cursor: default;
}

.cal-day.disabled {
    color: var(--white-30);
    cursor: not-allowed;
}

.cal-day.today {
    border: 1px solid var(--turquoise-400);
    color: var(--turquoise-400);
}

.cal-day.start-date {
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-weight: 700;
    border-radius: 12px 4px 4px 12px;
}

.cal-day.end-date {
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-weight: 700;
    border-radius: 4px 12px 12px 4px;
}

.cal-day.start-date.end-date {
    border-radius: 12px;
}

.cal-day.in-range {
    background: rgba(45, 212, 191, 0.15);
    color: var(--turquoise-400);
    border-radius: 4px;
}

/* Calendar Info Panel */
.calendar-info {
    padding: 32px;
    position: sticky;
    top: 32px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.info-label {
    font-size: 0.9rem;
    color: var(--white-50);
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white-90);
}

.info-nights {
    color: var(--turquoise-400);
}

.info-divider {
    height: 1px;
    background: var(--white-10);
}

/* Guest Selector */
.guest-select-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--white-10);
    margin-top: 4px;
}

.guest-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    color: var(--white-90);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 36px 8px 14px;
    cursor: pointer;
    transition: var(--transition-base);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.guest-select:hover {
    border-color: var(--turquoise-400);
    background-color: var(--white-10);
}

.guest-select:focus {
    outline: none;
    border-color: var(--turquoise-400);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.guest-select option {
    background: var(--navy-700);
    color: var(--white-90);
}

/* Guest filtering */
.offer-card.guest-hidden {
    display: none !important;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 24px;
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.3);
}

.search-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
#offers-section {
    background: var(--navy-900);
    position: relative;
}

#offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.offers-hidden {
    display: none;
}

.offers-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

/* Offer Card */
.offer-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    overflow: hidden;
    transition: var(--transition-slow);
}

.offer-card:hover {
    border-color: var(--turquoise-400);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Gallery */
.offer-gallery {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-img.active {
    opacity: 1;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 3;
    opacity: 0;
}

.offer-gallery:hover .gallery-btn {
    opacity: 1;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--turquoise-400);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-dot.active {
    background: var(--turquoise-400);
    transform: scale(1.3);
}

.offer-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 3;
}

.offer-price-badge span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white-70);
}

/* Offer Body */
.offer-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.offer-location {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sand-300);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.offer-desc {
    font-size: 0.92rem;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.offer-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity {
    padding: 6px 12px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--white-70);
}

.offer-total {
    padding: 12px 16px;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--turquoise-400);
    font-weight: 600;
    text-align: center;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 12px 24px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    color: var(--white-90);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.offer-link:hover {
    background: var(--gradient-accent);
    color: var(--navy-900);
    border-color: transparent;
}

/* Book Button */
.offer-book-btn {
    cursor: pointer;
    font-family: var(--font-body);
}

/* Unavailable Overlay */
.unavailable-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.unavailable-icon {
    font-size: 2.5rem;
    color: #ef4444;
    font-weight: 700;
}

.unavailable-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-90);
    text-align: center;
    padding: 0 20px;
}

/* Card unavailable state */
.offer-card.unavailable {
    position: relative;
}

.offer-card.unavailable .unavailable-overlay {
    display: flex;
}

.offer-card.unavailable:hover {
    transform: none;
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

/* ============================================
   FACEBOOK CTA
   ============================================ */
.facebook-cta {
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.facebook-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--white-70);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #1877F2;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: var(--transition-base);
    box-shadow: 0 0 30px rgba(24, 119, 242, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(24, 119, 242, 0.4);
    color: var(--white);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4);
    }

    50% {
        box-shadow: 0 0 40px 10px rgba(45, 212, 191, 0.2);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    padding: 40px 0;
    border-top: 1px solid var(--white-10);
    background: var(--navy-900);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--white-50);
    margin-top: 4px;
}

.footer-copy p {
    font-size: 0.8rem;
    color: var(--white-30);
}

/* Offer card clickable */
.offer-card {
    cursor: pointer;
}

/* ============================================
   ZASADY REZERWACJI (RULES)
   ============================================ */
#rules-section {
    background: var(--navy-800);
    text-align: center;
    position: relative;
}

#rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rule-card {
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.rule-card:hover {
    border-color: var(--turquoise-400);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.rule-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.rule-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.rule-text {
    font-size: 0.85rem;
    color: var(--white-70);
    line-height: 1.6;
}

/* ============================================
   OFFER DETAIL MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 24px;
}

.modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: modalFadeIn 0.4s var(--ease-out);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--navy-700);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.5s var(--ease-out);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.5);
    border-color: #ef4444;
}

/* Modal Gallery */
.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.modal-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy-900);
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 3;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--turquoise-400);
}

.modal-prev {
    left: 12px;
}

.modal-next {
    right: 12px;
}

.modal-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.modal-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--white-10) transparent;
}

.modal-thumb {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.modal-thumb.active {
    opacity: 1;
    border-color: var(--turquoise-400);
}

.modal-thumb:hover {
    opacity: 0.8;
}

/* Modal Info Panel */
.modal-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-location {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sand-300);
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 10px 20px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--turquoise-400);
    align-self: flex-start;
}

.modal-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--white-50);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 32px;
    flex: 1;
}

.modal-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
    align-self: flex-start;
}

.modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.3);
}

/* ============================================
   RESERVATION FORM MODAL
   ============================================ */
.reservation-container {
    max-width: 700px;
    width: 100%;
    background: var(--navy-700);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.5s var(--ease-out);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--white-10) transparent;
}

.reservation-header {
    text-align: center;
    margin-bottom: 32px;
}

.reservation-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.reservation-offer-info {
    font-size: 0.9rem;
    color: var(--white-70);
    padding: 10px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    display: inline-block;
}

.res-step-hidden {
    display: none;
}

.res-step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.res-step-desc {
    font-size: 0.9rem;
    color: var(--white-50);
    text-align: center;
    margin-bottom: 28px;
}

.person-count-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.person-count-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 24px 16px;
    background: var(--white-05);
    border: 2px solid var(--white-10);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.person-count-btn:hover {
    border-color: var(--turquoise-400);
    background: rgba(45, 212, 191, 0.08);
    transform: translateY(-2px);
}

.count-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--turquoise-400);
    line-height: 1;
}

.count-label {
    font-size: 0.8rem;
    color: var(--white-50);
}

.res-step2-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.res-step2-header .res-step-title {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
}

.res-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    color: var(--white-70);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.res-back-btn:hover {
    background: var(--white-10);
    color: var(--white);
}

.person-form-card {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.person-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.person-form-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--navy-900);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.person-form-label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.person-form-badge {
    padding: 4px 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sand-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white-50);
    letter-spacing: 0.3px;
}

.form-input {
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-base);
    outline: none;
}

.form-input::placeholder {
    color: var(--white-30);
}

.form-input:focus {
    border-color: var(--turquoise-400);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.res-submit-row {
    margin-top: 24px;
    text-align: center;
}

.res-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.res-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.3);
}

.res-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.res-confirm-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.res-confirm-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.res-confirm-text {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto 28px;
}

.res-confirm-btn {
    padding: 14px 36px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    color: var(--white-90);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.res-confirm-btn:hover {
    background: var(--white-10);
    border-color: var(--turquoise-400);
}

@media (max-width: 600px) {
    .reservation-container {
        padding: 24px 16px;
    }

    .person-count-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-text .section-tag,
    .about-text .section-title {
        text-align: center;
    }

    .about-description {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .calendar-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-gallery {
        height: 280px;
    }

    .gallery-btn {
        opacity: 1;
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-container {
        grid-template-columns: 1fr;
    }

    .modal-info {
        max-height: none;
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Mobile Navbar */
    .navbar-hamburger {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 26, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        transform: translateY(-100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 99;
    }

    .navbar-links.open {
        transform: translateY(0);
    }

    .navbar-links li a {
        font-size: 1.4rem;
        padding: 14px 32px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .about-grid {
        gap: 40px;
    }

    .about-image-frame {
        width: 240px;
        height: 290px;
    }

    .about-stats {
        gap: 24px;
    }

    .calendar-container {
        padding: 20px;
    }

    .calendar-info {
        padding: 24px;
    }

    .guest-select-row {
        padding: 12px 0;
    }

    .offer-gallery {
        height: 240px;
    }

    .offer-body {
        padding: 24px;
        text-align: center;
    }

    .offer-desc {
        text-align: left;
    }

    .offer-amenities {
        justify-content: center;
    }

    .offer-total {
        text-align: center;
    }

    .offer-link {
        align-self: center;
    }

    .facebook-cta {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .modal-overlay {
        padding: 16px;
    }

    .modal-gallery {
        padding: 12px;
    }

    .modal-container {
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-main-img {
        max-height: 300px;
    }

    .person-count-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .cal-day {
        font-size: 0.8rem;
    }

    .calendar-container {
        padding: 16px;
    }

    .calendar-info {
        padding: 20px;
    }

    .guest-select {
        font-size: 0.85rem;
        padding: 6px 30px 6px 10px;
    }

    .search-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .offer-gallery {
        height: 200px;
    }

    .offer-body {
        padding: 20px 16px;
    }

    .offer-title {
        font-size: 1.15rem;
    }

    .offer-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .offer-amenities {
        gap: 6px;
    }

    .amenity {
        padding: 4px 8px;
        font-size: 0.72rem;
    }

    .offer-total {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .offer-price-badge {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .gallery-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        opacity: 1;
    }

    .facebook-cta {
        padding: 32px 16px;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .cta-desc {
        font-size: 0.9rem;
    }

    .rule-card {
        padding: 24px 20px;
    }

    .rule-title {
        font-size: 1rem;
    }

    .rule-text {
        font-size: 0.85rem;
    }

    .modal-overlay {
        padding: 8px;
    }

    .modal-container {
        border-radius: 16px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .modal-info {
        padding: 20px 16px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-desc {
        font-size: 0.85rem;
    }

    .modal-thumbs {
        gap: 6px;
    }

    .modal-thumb {
        width: 48px;
        height: 36px;
    }

    .modal-nav {
        width: 32px;
        height: 32px;
    }

    .reservation-container {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .reservation-title {
        font-size: 1.3rem;
    }

    .person-count-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .person-count-btn {
        padding: 14px 8px;
    }

    .person-form-card {
        padding: 16px 12px;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .res-submit-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .info-label {
        font-size: 0.82rem;
    }

    .info-value {
        font-size: 0.88rem;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--navy-900);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: var(--transition-base);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.4);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
#testimonials-section {
    background: var(--navy-900);
    text-align: center;
    position: relative;
}

#testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
    transition: transform 0.5s var(--ease-out);
}

.testimonial-stars {
    color: var(--sand-300);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white-90);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--turquoise-400);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--turquoise-400);
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--white-50);
    margin-top: 4px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white-10);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dot.active {
    background: var(--turquoise-400);
    transform: scale(1.2);
}

/* ============================================
   WHY SARDINIA SECTION
   ============================================ */
#why-section {
    background: var(--navy-800);
    text-align: center;
    position: relative;
}

#why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.why-card:hover {
    border-color: var(--turquoise-400);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-text {
    font-size: 0.88rem;
    color: var(--white-70);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SORTING TOOLBAR
   ============================================ */
.offers-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    color: var(--white-70);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.sort-btn:hover,
.sort-btn.active {
    background: rgba(45, 212, 191, 0.1);
    border-color: var(--turquoise-400);
    color: var(--turquoise-400);
}

/* ============================================
   EXPANDED FOOTER
   ============================================ */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 0.88rem;
    color: var(--white-50);
    line-height: 1.8;
    display: block;
}

.footer-col a:hover {
    color: var(--turquoise-400);
}

.footer-col .footer-brand-desc {
    max-width: 280px;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--white-70);
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--gradient-accent);
    color: var(--navy-900);
    border-color: transparent;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--white-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-30);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================
   GALLERY COUNTER BADGE
   ============================================ */
.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 3;
}

/* ============================================
   LEAFLET MAP
   ============================================ */
#map-section {
    background: var(--navy-900);
    position: relative;
}

.leaflet-map {
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.leaflet-popup-content-wrapper {
    background: var(--navy-800) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid var(--turquoise-400) !important;
}

.leaflet-popup-content {
    margin: 10px 14px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
}

.leaflet-popup-content b {
    color: var(--turquoise-400);
    font-family: var(--font-display);
    font-size: 1rem;
}

.leaflet-popup-tip {
    background: var(--navy-800) !important;
    border: 1px solid var(--turquoise-400) !important;
}

.leaflet-popup-close-button {
    color: var(--white-70) !important;
}

@media (max-width: 768px) {
    .leaflet-map {
        height: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .leaflet-map {
        height: 350px;
    }
}