/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --space-dark: rgb(199, 231, 251);
    --space-darker: rgb(179, 220, 248);
    --pink-primary: #FF1693;
    --pink-hover: #E73C8E;
    --yellow-primary: #FF9500;
    --yellow-hover: #FF7A00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #2c3e50;
    --text-dark: #1a1a1a;
    --star-color: #FFE66D;

    /* Fonts */
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--space-dark);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   ANIMATED BACKGROUND
======================================== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Stars */
.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--star-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--star-color);
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 45%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Rocket - REMOVED */

/* Planet */
.planet {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.planet::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Bear - Styled SVG-like */
.bear {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    animation: floatBear 8s ease-in-out infinite;
}

.bear::before {
    content: '🧸';
    font-size: 60px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 182, 193, 0.5));
}

@keyframes floatBear {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Octopus */
.octopus {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 90px;
    height: 90px;
    animation: floatOctopus 10s ease-in-out infinite;
}

.octopus::before {
    content: '🐙';
    font-size: 70px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 22, 147, 0.5));
}

@keyframes floatOctopus {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(-5deg); }
}

/* Balloons */
.balloon {
    position: absolute;
    font-size: 50px;
    animation: floatBalloon 8s ease-in-out infinite;
}

.balloon-1 {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

@keyframes floatBalloon {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-50px) rotate(3deg); }
}

/* Cloud */
.cloud {
    position: absolute;
    font-size: 60px;
    animation: floatCloud 12s ease-in-out infinite;
}

.cloud-1 {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes floatCloud {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

/* Butterfly */
.butterfly {
    position: absolute;
    font-size: 40px;
    animation: floatButterfly 6s ease-in-out infinite;
}

.butterfly {
    bottom: 40%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatButterfly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-20px, -50px) rotate(-10deg); }
    75% { transform: translate(15px, -30px) rotate(5deg); }
}

/* ========================================
   CONTAINER & UTILITIES
======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-shadow: 2px 2px 10px rgba(255, 22, 147, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-pink {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-hover));
    color: var(--white);
}

.btn-pink:hover {
    background: linear-gradient(135deg, var(--pink-hover), #d12d7a);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 22, 147, 0.5);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-hover));
    color: white;
}

.btn-yellow:hover {
    background: linear-gradient(135deg, var(--yellow-hover), #ff6600);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--space-dark);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(199, 231, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(179, 220, 248, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--pink-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Floating Call Button (Mobile) */
.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-hover));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--space-dark);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 180px 20px 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-shadow: 2px 2px 8px rgba(255, 22, 147, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #333;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.social-proof .stars {
    display: flex;
    gap: 5px;
    font-size: 1.2rem;
    color: var(--yellow-primary);
}

.social-proof p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.5);
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 22, 147, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 15px 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 4px solid var(--pink-primary);
    transition: all 0.3s ease;
}

.about-list li:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(5px);
}

.about-list i {
    color: var(--pink-primary);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: var(--section-padding);
}

.services-subtitle {
    margin: 60px 0 30px;
    text-align: center;
}

.services-subtitle h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--pink-primary);
    box-shadow: 0 10px 30px rgba(255, 22, 147, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Photo Gallery Slider */
.photo-gallery {
    margin: 50px 0;
}

.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slider img {
    min-width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--pink-primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--pink-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--pink-primary);
    transform: scale(1.3);
}

/* Attractions List */
.attractions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.attraction-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 22, 147, 0.2);
}

.attraction-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.attraction-info h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.attraction-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.testimonial-item {
    min-width: 500px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--yellow-primary);
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-item .author {
    font-weight: 700;
    color: var(--pink-primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.testimonials-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    background: rgba(255, 255, 255, 1);
}

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

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--pink-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 2px solid #2ed573;
}

.form-message.error {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 2px solid #ff4757;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FF9500 !important;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: var(--white);
}

.social-btn.oferteo {
    background: #FFD700;
    color: var(--white);
}

.social-btn.olx {
    background: #002F34;
    color: var(--white);
}

.social-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.contact-detail {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #FF9500;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--pink-primary);
}

.contact-detail a {
    color: #FF9500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--pink-primary);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 60px 20px 30px;
    background: rgba(255, 255, 255, 0.6);
    border-top: 2px solid rgba(255, 22, 147, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yellow-primary);
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #FF9500 !important;
    font-weight: 600;
}

.footer-col p i {
    color: #FF9500 !important;
}

.footer-col a {
    color: var(--pink-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-col a:hover {
    color: var(--pink-hover);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--pink-primary);
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
}

/* ========================================
   COOKIE CONSENT
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--pink-primary);
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-text p {
    color: #555;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.cookie-buttons .btn {
    color: var(--white);
    font-weight: 600;
}

.cookie-buttons .btn-outline {
    color: var(--text-dark);
    background: transparent;
    border: 2px solid var(--pink-primary);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cookie-buttons .btn-outline:hover {
    background: var(--pink-primary);
    color: var(--white);
}

/* Hlavní tlačítko - velké a výrazné */
#acceptAllCookies {
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--pink-primary);
}

.cookie-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: rgba(255, 22, 147, 0.1);
    color: var(--pink-primary);
    transform: rotate(90deg);
}

.cookie-modal-content {
    position: relative;
}

.cookie-modal-content h2 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 50px;
    color: var(--text-dark);
}

.cookie-modal-content > p {
    margin-bottom: 30px;
    color: #555;
}

.cookie-option {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Toggle Switch (iOS style) */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 3px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--pink-primary), var(--yellow-primary));
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.toggle-switch input:disabled + .toggle-slider:before {
    cursor: not-allowed;
}

.cookie-option-text {
    flex: 1;
}

.cookie-option-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cookie-option-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cookie-modal-buttons .btn-outline {
    color: var(--text-dark);
    background: transparent;
    border: 2px solid var(--pink-primary);
}

.cookie-modal-buttons .btn-outline:hover {
    background: var(--pink-primary);
    color: var(--white);
}

.cookie-option-text small {
    display: inline-block;
    margin-top: 8px;
    color: #888;
    font-size: 0.85rem;
}

.cookie-option-text code {
    background: rgba(255, 22, 147, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--pink-primary);
    font-family: 'Courier New', monospace;
}

/* Floating Cookie Settings Icon */
.cookie-float-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--yellow-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(255, 22, 147, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.cookie-float-icon.show {
    opacity: 1;
    transform: scale(1);
}

.cookie-float-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 22, 147, 0.6);
}

.cookie-float-icon i {
    font-size: 28px;
    color: white;
    animation: cookieBounce 2s infinite;
}

@keyframes cookieBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(199, 231, 251, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .floating-call-btn {
        display: flex;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        min-width: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .social-proof {
        flex-direction: column;
    }

    .gallery-slider img {
        height: 350px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Cookie Banner & Modal - Mobile */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    /* Na mobilu zachovat velikostní rozdíl */
    #acceptAllCookies {
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .cookie-buttons .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cookie-modal-content {
        padding: 25px 20px;
        max-height: 85vh;
    }

    .cookie-modal-content h2 {
        font-size: 1.5rem;
    }

    .cookie-option {
        margin-bottom: 20px;
    }

    .cookie-option-text strong {
        font-size: 1rem;
    }

    .cookie-option-text p {
        font-size: 0.9rem;
    }

    .cookie-option-text small {
        font-size: 0.75rem;
    }

    .cookie-modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-modal-buttons .btn {
        width: 100%;
    }

    .cookie-float-icon {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .cookie-float-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 20px 80px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .services-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        min-width: 280px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .gallery-slider img {
        height: 250px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .attractions-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state for form */
.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
