:root {
    --primary: #00BFFF;
    --primary-dark: #0099cc;
    --accent: #FFEBCD;
    --highlight: #CC3333;
    --text-main: #2C3E50;
    --text-light: #5A6C7D;
    --bg-main: #ffffff;
    --bg-light: #f0faff;
    --bg-cream: #fff9f0;
    --shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 191, 255, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.w-full { width: 100%; }
.text-sm { font-size: 0.875rem; }
.text-gray { color: rgba(255,255,255,0.7); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

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

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 191, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

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

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.btn-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

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

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Step Map */
.step-map {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--primary);
    margin-top: 30px;
    opacity: 0.3;
}

.mini-price-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mini-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 250px;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.compact-booking-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    font-family: var(--font-body);
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.slide-1 { background: linear-gradient(135deg, #00BFFF, #005f99); }
.slide-2 { background: linear-gradient(135deg, #CC3333, #800000); }
.slide-3 { background: linear-gradient(135deg, #2ecc71, #008000); }
.slide-4 { background: linear-gradient(135deg, #9b59b6, #4a235a); }

.slide-content h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Accordion */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

/* Circular About */
.circular-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.circular-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.circular-item {
    position: absolute;
    text-align: center;
    width: 140px;
    transform: translate(-50%, -50%);
}

.bubble {
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    display: inline-block;
}

.circular-item span {
    font-size: 0.85rem;
    display: block;
}

/* Positions for circular items */
.item-1 { top: 10%; left: 50%; }
.item-2 { top: 25%; left: 85%; }
.item-3 { top: 75%; left: 85%; }
.item-4 { top: 90%; left: 50%; }
.item-5 { top: 75%; left: 15%; }
.item-6 { top: 25%; left: 15%; }

/* Schedule Table */
.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.schedule-table th, .schedule-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-main);
}

.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #f9fbfc; }

.status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status.green { background: #e8f5e9; color: #2ecc71; }
.status.orange { background: #fff3e0; color: #f39c12; }

/* Price Cards */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 { font-size: 1.25rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.price-features { margin-bottom: 30px; text-align: left; flex-grow: 1; }
.price-features li { margin-bottom: 10px; color: var(--text-light); }

/* Calculator */
.calculator-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.calc-group { margin-bottom: 25px; }
.calc-group label { display: block; font-weight: 600; margin-bottom: 10px; }
.calc-slider { width: 100%; cursor: pointer; }
.calc-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

.calc-result {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-main);
}

.calc-result span { color: var(--primary); font-size: 2rem; }

/* Text Section */
.text-section { background: white; }
.large-decorative-heading { font-size: 3rem; color: var(--primary); margin-bottom: 40px; line-height: 1.1; }
.rich-text p { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-main); line-height: 1.8; }
.rich-text p:first-letter { font-size: 3rem; float: left; margin-right: 10px; color: var(--highlight); font-family: var(--font-heading); line-height: 1; }

/* Direction Cards */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.direction-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.direction-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.dir-icon { font-size: 3rem; margin-bottom: 15px; }
.direction-card h3 { margin-bottom: 15px; font-size: 1.2rem; }
.direction-card p { margin-bottom: 20px; color: var(--text-light); font-size: 0.95rem; flex-grow: 1; }

/* Infographic */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 20px;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.info-item h4 { margin-bottom: 10px; font-size: 1.1rem; }
.info-item p { color: var(--text-light); font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-weight: 500;
}

.gallery-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(0,0,0,0.05);
    font-family: serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.stars { color: #f1c40f; letter-spacing: 2px; font-size: 0.8rem; }

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
.footer a:hover { color: var(--primary); }
.footer p { color: rgba(255,255,255,0.7); margin-bottom: 5px; font-size: 0.9rem; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer; color: var(--text-light);
}

.modal-form input {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body);
}

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px; left: 0; width: 100%;
    background: white; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1500; padding: 20px 0;
    transition: bottom 0.5s ease;
}

.cookie-banner.show { bottom: 0; }
.cookie-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; gap: 20px; }
.cookie-btns { display: flex; gap: 10px; }

/* Legal pages */
.legal-content { max-width: 800px; margin: 120px auto 60px; background: white; padding: 40px; border-radius: 16px; box-shadow: var(--shadow); }
.legal-content h1 { margin-bottom: 30px; }
.legal-content h2 { margin: 25px 0 15px; font-size: 1.5rem; }
.legal-content p { margin-bottom: 15px; }

/* Thanks page */
.thanks-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.thanks-icon { font-size: 5rem; color: #2ecc71; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1200px) {
    .prices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .directions-grid, .infographic-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .step-map { flex-direction: column; align-items: center; }
    .step-connector { width: 2px; height: 30px; margin: 0; }
    .step-item { margin-bottom: 10px; }
    .circular-wrapper { transform: scale(0.8); margin: -60px auto; }
}

@media (max-width: 768px) {
    .nav { position: fixed; top: 60px; left: -100%; width: 100%; background: white; flex-direction: column; padding: 20px 0; box-shadow: 0 10px 10px rgba(0,0,0,0.1); transition: 0.3s; }
    .nav.active { left: 0; }
    .mobile-menu-btn { display: flex; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { align-items: center; }
    .form-row { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .prices-grid, .directions-grid, .infographic-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .mini-price-cards { flex-direction: column; align-items: center; }
    .circular-wrapper { transform: scale(0.5); margin: -120px auto; }
    .carousel-slide { padding: 20px; }
    .slide-content h3 { font-size: 1.8rem; }
}