:root {
    --color-coral: #FF6B6B;
    --color-teal: #4ECDC4;
    --color-purple: #9B59B6;
    --color-amber: #F39C12;
    --color-indigo: #5B7FE8;
    --color-rose: #E84393;
    
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 4px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 30px 60px rgba(0,0,0,0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.nav-link.active {
    color: var(--color-coral);
}

.nav-link.nav-cta {
    background: var(--color-coral);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.nav-link.nav-cta:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--color-coral);
    color: white;
}

.mobile-menu-btn,
.mobile-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover,
.mobile-close-btn:hover {
    color: var(--color-coral);
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link.nav-cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 8px;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.7) 0%, rgba(78, 205, 196, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.accent-word {
    color: var(--color-amber);
    position: relative;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 72px;
        min-height: 500px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--color-coral);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-coral);
    transform: translateY(-3px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-coral), var(--color-rose));
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-coral {
    background: linear-gradient(135deg, var(--color-coral) 0%, #ff8787 100%);
    color: white;
}

.section-teal {
    background: linear-gradient(135deg, var(--color-teal) 0%, #6de2db 100%);
    color: white;
}

.section-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, #b370d6 100%);
    color: white;
}

.section-amber {
    background: linear-gradient(135deg, var(--color-amber) 0%, #f5b041 100%);
    color: white;
}

.section-indigo {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #7b9df5 100%);
    color: white;
}

.section-rose {
    background: linear-gradient(135deg, var(--color-rose) 0%, #f260ab 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.25);
}

.feature-card-large {
    grid-column: span 2;
}

@media (max-width: 968px) {
    .feature-card-large {
        grid-column: span 1;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.feature-list i {
    color: rgba(255, 255, 255, 0.8);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.25);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-text {
    opacity: 0.9;
    line-height: 1.7;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.4);
}

.package-featured {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-amber);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.package-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.package-duration {
    opacity: 0.8;
    font-size: 1.1rem;
}

.package-features {
    margin-bottom: 24px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    opacity: 0.9;
}

.package-feature i {
    font-size: 18px;
    opacity: 0.8;
}

.package-ideal {
    opacity: 0.8;
    font-style: italic;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.package-note {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.package-note i {
    margin-right: 8px;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.split-text {
    color: white;
}

.split-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
}

.split-image img,
.content-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equipment-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.equipment-item i {
    font-size: 24px;
    opacity: 0.8;
    flex-shrink: 0;
}

.equipment-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.equipment-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Portfolio Carousel */
.portfolio-swiper {
    padding: 20px 0 60px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 32px 24px 24px;
    color: white;
}

.portfolio-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-caption p {
    opacity: 0.9;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
}

/* Two Column Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d3561 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 24px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-coral);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact i {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-coral);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-coral), var(--color-rose));
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 72px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: -52px;
    top: 0;
    width: 80px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        position: static;
        margin-bottom: 12px;
        width: auto;
        display: inline-block;
    }
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.25);
}

.tip-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tip-card p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tip-detail {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip-detail strong {
    display: block;
    margin-bottom: 6px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.team-role {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-description {
    opacity: 0.9;
    line-height: 1.7;
}

/* Philosophy */
.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.philosophy-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.philosophy-item i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.philosophy-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Capability List */
.capability-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.capability-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0.9;
    line-height: 1.6;
}

.capability-list i {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Evolution */
.evolution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.evolution-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
    text-align: center;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.evolution-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.evolution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.evolution-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Province Cards */
.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.province-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.province-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.province-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.province-header i {
    font-size: 28px;
    opacity: 0.8;
}

.province-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.province-description {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.province-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-value {
    opacity: 0.9;
    line-height: 1.6;
}

/* Logistics Grid */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.logistics-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.logistics-card i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.logistics-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.logistics-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Venue Types */
.venue-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.venue-type-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.venue-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.venue-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.venue-type-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.venue-type-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Booking Grid */
.booking-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.booking-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.booking-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Wedding Tips */
.wedding-tips {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wedding-tip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wedding-tip-reverse {
    direction: rtl;
}

.wedding-tip-reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .wedding-tip-row,
    .wedding-tip-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.wedding-tip-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.wedding-tip-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

.wedding-tip-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Corporate Tips */
.corporate-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.corporate-tip-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.corporate-tip-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.corporate-tip-card p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.corporate-tip-card p:last-child {
    margin-bottom: 0;
}

/* Communication Grid */
.communication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.communication-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.communication-card i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.communication-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.communication-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* After Event */
.after-event-content {
    max-width: 1000px;
    margin: 0 auto;
}

.after-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.after-event-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.after-event-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.after-event-item p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.after-event-item p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {
    color: white;
}

.contact-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-detail-content p {
    opacity: 0.9;
    line-height: 1.7;
}

.contact-detail-content a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-content a:hover {
    opacity: 0.8;
}

/* Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.6;
}

.form-checkbox a {
    color: white;
    text-decoration: underline;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-answer {
    opacity: 0.9;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

.thanks-submessage {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 40px;
}

.thanks-submessage a {
    color: white;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-section {
    background: white;
    padding: 140px 0 80px;
    margin-top: 72px;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 40px;
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    margin-top: 16px;
}

.legal-block p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text);
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block li {
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-block a {
    color: var(--color-coral);
    text-decoration: underline;
}

.legal-block strong {
    font-weight: 700;
    color: var(--color-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: var(--color-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    font-weight: 700;
    color: var(--color-dark);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--color-text);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-coral);
    color: white;
}

.cookie-btn-accept:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: var(--color-text-light);
    color: white;
}

.cookie-btn-reject:hover {
    background: var(--color-text);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--color-coral);
    border: 2px solid var(--color-coral);
}

.cookie-btn-customize:hover {
    background: var(--color-coral);
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-settings.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    gap: 16px;
}

.cookie-category h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.cookie-category p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--color-coral);
}

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

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.cookie-settings-buttons .cookie-btn {
    flex: 1;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-settings-content {
        padding: 24px;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}

/* Coverage Intro */
.coverage-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .portfolio-item img {
        height: 350px;
    }
}