* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #f8f8f8;
    --bg-light: #f0eee9;
    --text-primary: #333333;
    --text-secondary: #6b5f68;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-hover: rgba(240, 238, 233, 0.95);
    --accent: #9a8c98;
    --accent-dark: #4a4a4a;
    --border-color: rgba(154, 140, 152, 0.15);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    background-image:
        linear-gradient(rgba(248, 248, 248, 0.75), rgba(240, 238, 233, 0.80)),
        url('https://ugc.production.linktr.ee/3e28057e-a429-4dad-80e3-f46310f9557c_77B7D0B5-2E55-4129-8B87-B1DD190BFFF7.jpeg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    position: relative;
    z-index: 1;
}

/* Desktop Layout - keep it neat and centered */
@media (min-width: 768px) {
    .container {
        max-width: 560px;
        padding: 40px 24px 60px;
    }

    .profile-section {
        padding-top: 8vh;
        margin-bottom: 32px;
    }

    .profile-title {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .profile-bio {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .link-card {
        padding: 24px 28px;
    }

    .date-item {
        padding: 14px 0;
    }

    .social-section {
        margin-bottom: 32px;
    }

    .modal-content {
        max-width: 520px;
    }
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 10vh;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.profile-image-wrapper:hover .profile-image {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-dark);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-size: 16px;
    border: 2px solid var(--bg-primary);
    box-shadow: var(--shadow);
}

.profile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.profile-bio {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.link-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.link-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.link-content-with-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.link-text {
    flex: 1;
}

.link-content h3,
.link-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.link-text h3:not(:last-child) {
    margin-bottom: 8px;
}

.link-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

.link-arrow {
    font-size: 24px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-card:hover .link-arrow {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Primary Card - 2026 Available */
.primary-card {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-color: rgba(79, 172, 254, 0.3);
}

.primary-card::before {
    background: var(--accent-gradient-3);
    opacity: 0.1;
}

.primary-card:hover {
    border-color: rgba(79, 172, 254, 0.5);
}

/* Sold Out Card */
.sold-out-card {
    opacity: 0.5;
    cursor: default;
    background: var(--bg-light);
}

.sold-out-card:hover {
    transform: none;
    background: var(--bg-light);
    box-shadow: var(--shadow);
}

.sold-out-badge {
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.sold-out-text {
    color: var(--text-secondary);
}

/* Package Details */
.package-details {
    margin-top: 12px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--accent-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.package-list,
.rules-list {
    list-style: none;
    margin-top: 12px;
}

.package-list li,
.rules-list li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.package-list li::before,
.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: normal;
}

/* Availability Overview Card */
.availability-overview {
    cursor: default;
}

.availability-overview:hover {
    transform: none;
}


.availability-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.month-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.month-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 4px;
}

.date-item {
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(154, 140, 152, 0.08);
    text-decoration: none;
    color: inherit;
}

.date-item:hover {
    background: rgba(255, 255, 255, 0.3);
    margin: 0 -12px;
    padding: 12px 12px;
    border-radius: 12px;
}

.date-item .link-arrow {
    font-size: 18px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.date-item:hover .link-arrow {
    color: var(--text-primary);
    transform: translateX(4px);
}

.date-range {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-primary);
}

.location {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
}

.spots-indicator {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    padding: 3px 8px;
    border-radius: 3px;
    text-align: right;
}

.spots-indicator.urgent {
    background: rgba(154, 140, 152, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent-dark);
    border-radius: 20px;
}

.spots-indicator.available {
    color: var(--text-secondary);
}


.price-section {
    margin-bottom: 16px;
}

.price-section .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--accent-dark);
}

.price-section .duration {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-left: 4px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cta-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--accent-dark);
    color: white;
    box-shadow: var(--shadow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn.primary:hover {
    background: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn.secondary:hover {
    background: var(--bg-light);
    border-color: var(--accent);
}

/* Expandable Package Cards */
.expandable-package {
    cursor: pointer;
    transition: all 0.4s ease;
}

.expandable-package:hover {
    background: var(--card-hover);
}

.package-summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

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

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.summary-left {
    flex: 1;
}

.summary-left h3 {
    margin-bottom: 4px;
}

.available-dates {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.summary-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-right .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--accent-dark);
}

.expand-icon {
    font-size: 28px;
    color: var(--text-secondary);
    transition: all 0.5s ease;
    font-weight: 300;
}

.expandable-package[open] .expand-icon {
    transform: rotate(45deg);
    color: var(--text-primary);
}

.expandable-package[open] {
    background: var(--card-hover);
}

.expandable-package .package-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Location Badges */
.location-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-badge.portugal {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.location-badge.lanzarote {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Package Cards */
.package-card {
    cursor: default;
}

.package-card:hover {
    transform: none;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.package-header h3 {
    margin-top: 4px;
    margin-bottom: 0;
}

.price-tag {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-tag .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.price-tag .duration {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.package-intro {
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 12px;
    margin-bottom: 4px;
}

.extra-info {
    margin-top: 16px;
    cursor: pointer;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.extra-info:hover {
    border-color: var(--accent);
}

.extra-info summary {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    letter-spacing: 1px;
}

.extra-info summary:hover {
    color: var(--accent-dark);
}

.extra-info[open] summary {
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.extra-info[open] {
    background: white;
}

.package-list.not-included {
    margin-top: 8px;
}

.package-list.not-included li::before {
    content: '×';
    color: #f5576c;
}


/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 8px 0;
    background: transparent;
    z-index: 10;
}

.footer .company-name {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 300;
    opacity: 0.7;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Waves Background */
.waves-background {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.waves {
    width: 100%;
    height: 100%;
}

.wave-parallax use:nth-child(1) {
    animation: wave-move 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    fill: rgba(154, 140, 152, 0.3);
}

.wave-parallax use:nth-child(2) {
    animation: wave-move 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    animation-delay: -5s;
    fill: rgba(154, 140, 152, 0.2);
}

.wave-parallax use:nth-child(3) {
    animation: wave-move 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    animation-delay: -10s;
    fill: rgba(154, 140, 152, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave-move {
    0%, 100% {
        transform: translate3d(-90px, 0, 0);
    }
    50% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Stagger animation delays for link cards */
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 16px 30px;
    }

    .camp-detail-page.container {
        padding-top: 0;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-title {
        font-size: 28px;
    }

    .link-card {
        padding: 20px;
    }

    .link-content h3 {
        font-size: 16px;
    }

    .price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 32px 12px 24px;
    }

    .camp-detail-page.container {
        padding-top: 0;
    }

    .profile-image {
        width: 90px;
        height: 90px;
    }

    .verified-badge {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .profile-title {
        font-size: 24px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .link-card {
        padding: 18px;
    }

    .link-content h3 {
        font-size: 15px;
    }

    .link-subtitle {
        font-size: 13px;
    }

    .package-list li,
    .rules-list li {
        font-size: 13px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Camp Detail Page */
.camp-detail-page {
    padding-top: 0;
}

.camp-detail-page.container {
    padding-top: 0;
}

.camp-detail-page .link-card {
    animation-delay: 0s;
}

.back-link {
    position: fixed;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.back-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
    transform: translateX(-2px);
}

.detail-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 0;
}

.camp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.camp-dates {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.spots-badge-large {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
}

.spots-badge-large.urgent {
    background: rgba(154, 140, 152, 0.25);
    color: var(--accent-dark);
}

.price-card {
    margin-bottom: 20px;
}

.price-hero {
    text-align: center;
    padding: 20px;
}

.price-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--accent-dark);
    display: block;
    line-height: 1;
}

.duration-large {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* Package Combined Section */
.package-combined .section-divider {
    margin-top: 24px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Booking Rules Section Spacing */
.booking-rules-section {
    margin-top: 24px;
}

/* FAQ Section */
.faq-section {
    margin-top: 16px;
}

.faq-section h3 {
    margin-bottom: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--accent-dark);
}

.faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

/* Hero Carousel */
.hero-carousel {
    margin: 0 0 20px;
    animation: fadeInUp 0.6s ease-out;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

.carousel-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 11px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

@media (max-width: 480px) {
    .hero-carousel {
        margin: 0 -12px 16px;
    }

    .carousel-container {
        border-radius: 0;
        aspect-ratio: 4 / 3;
    }

    .carousel-prev,
    .carousel-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}

/* Desktop Camp Detail Page - keep it neat */
@media (min-width: 768px) {
    .camp-detail-page.container {
        max-width: 600px;
        padding: 0 24px 60px;
    }

    .carousel-container {
        border-radius: 20px;
    }

    .carousel-prev,
    .carousel-next {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .camp-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .camp-dates {
        font-size: 17px;
    }

    .price-large {
        font-size: 52px;
    }

    .back-link {
        top: 24px;
        left: 24px;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 0;
    z-index: 1000;
    max-width: 640px;
    width: calc(100% - 40px);
}

.sticky-cta-content {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 12px 0;
}

.sticky-cta-left {
    display: none;
}

.sticky-cta-buttons {
    display: flex;
    gap: 12px;
}

.sticky-cta-buttons .cta-btn {
    padding: 12px 24px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.sticky-cta-buttons .cta-btn.primary {
    background: rgba(51, 51, 51, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.sticky-cta-buttons .cta-btn.primary:hover {
    background: rgba(51, 51, 51, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.sticky-cta-buttons .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta-buttons .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

/* Responsive for sticky CTA */
@media (max-width: 640px) {
    .sticky-cta {
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .sticky-cta-content {
        padding: 10px 0;
    }

    .sticky-cta-buttons {
        width: 100%;
        gap: 8px;
    }

    .sticky-cta-buttons .cta-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Desktop sticky CTA */
@media (min-width: 768px) {
    .sticky-cta {
        max-width: 400px;
    }

    .sticky-cta-buttons .cta-btn {
        padding: 12px 28px;
    }
}

/* Selection colors */
::selection {
    background: var(--accent);
    color: white;
}

::-moz-selection {
    background: var(--accent);
    color: white;
}

/* Button styles for booking rules, collaboration, and FAQ */
.booking-rules-button,
.collaboration-button,
.faq-button {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.booking-rules-button h3,
.collaboration-button h3,
.faq-button h3 {
    margin: 0;
    font-weight: 300;
    color: var(--text-secondary);
}

/* FAQ iframe */
.faq-iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: 4px;
}

#faq-modal .modal-body {
    padding: 20px;
}

#faq-modal .modal-content {
    max-width: 560px;
}

#faq-modal .faq-list {
    gap: 10px;
}

#faq-modal .faq-item {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-body .rules-list {
    margin-top: 0;
}

.modal-body .rules-list li {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-body .rules-list li::before {
    color: var(--accent);
    font-weight: 400;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: rgba(51, 51, 51, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: rgba(51, 51, 51, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
    .modal {
        padding: 10px;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px 20px 12px;
    }

    .modal-body {
        padding: 20px;
    }
}
