/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Google Fonts for luxury typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Luxury Color Palette */
:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2d3748;
    --accent-gold: #d69e2e;
    --accent-gold-light: #f6ad55;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --white: #ffffff;
    --gray-light: #f7fafc;
    --gray-medium: #e2e8f0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

/* Typography - Luxury Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px var(--shadow-heavy);
    letter-spacing: 0.02em;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.upcoming-events h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.social-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.charter-features h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.ship-specs h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Luxury Styling */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--gray-medium);
    height: 60px;
    min-height: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 60px;
}

.logo img {
    height: 56px;
    width: auto;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-logo {
    height: 112px;
    max-height: 200px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.logo img.header-logo {
    height: 100%;
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .header-logo {
        height: 80px;
        max-height: 120px;
    }
    .header {
        height: 48px;
    }
    .header-content {
        height: 48px;
    }
    .logo img.header-logo {
        max-height: 48px;
    }
}

/* Navigation - Luxury Styling */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--accent-gold);
    background: rgba(214, 158, 46, 0.1);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: center;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--accent-gold);
    background: rgba(214, 158, 46, 0.15);
    font-weight: 600;
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Mobile Menu - Luxury Styling */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(214, 158, 46, 0.1);
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

/* Hero Section - Luxury Redesign */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.4) 0%,
        rgba(45, 55, 72, 0.3) 50%,
        rgba(214, 158, 46, 0.2) 100%
    );
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    animation: heroZoom 25s ease-in-out infinite;
    display: block;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    margin-bottom: 3rem;
}

.hero-logo {
    display: block;
    margin-bottom: 2.5rem;
}

.hero-logo img {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(4px 4px 12px var(--shadow-heavy));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    text-shadow: 2px 2px 8px var(--shadow-heavy);
    line-height: 1.6;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Luxury Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(214, 158, 46, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    border-color: var(--accent-gold-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(214, 158, 46, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Sections - Luxury Spacing with Gradients */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(135deg, var(--gray-light) 0%, rgba(247, 250, 252, 0.8) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

/* Content Grid - Luxury Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-heavy);
}

/* Ship Specs - Luxury Styling */
.ship-specs {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.ship-specs h4 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.ship-specs ul {
    list-style: none;
}

.ship-specs li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-medium);
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 1.1rem;
}

.ship-specs li:last-child {
    border-bottom: none;
}

.ship-specs strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services Grid - Luxury Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-light);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 30px 60px var(--shadow-medium);
    border-color: var(--accent-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow-light);
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(214, 158, 46, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-gold);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

/* Upcoming Events - Luxury Styling */
.upcoming-events {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-medium);
    text-align: center;
    background: var(--gray-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.upcoming-events h3 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.upcoming-events p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.upcoming-events a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.upcoming-events a:hover {
    color: var(--primary-blue);
}

/* Charter Features - Luxury Styling */
.charter-features {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-gold);
}

.charter-features h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.charter-features ul {
    list-style: none;
}

.charter-features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 1.1rem;
}

.charter-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Grid - Luxury Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    color: #0066cc;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Social Links - Luxury Styling */
.social-links p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--gray-light);
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.3);
}

.social-icon-svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icons a:hover .social-icon-svg {
    transform: scale(1.1);
}

.social-text {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Footer social icons - Luxury Styling */
.footer .social-links {
    margin-top: 2rem;
}

.footer .social-icons {
    gap: 1rem;
}

.footer .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
}

.footer .social-icons a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer .social-icon-svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form h3 {
    color: #0066cc;
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

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

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

/* Responsive Design - Luxury Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 1rem 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 15px 40px var(--shadow-medium);
        border-top: 1px solid var(--gray-medium);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        display: flex;
        animation: fadeInUp 0.3s ease-out;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
        border-radius: 12px;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        min-width: 48px;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background: var(--text-dark);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero {
        height: 80vh;
        min-height: 600px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: block;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.7) contrast(1.1);
        animation: heroZoom 25s ease-in-out infinite;
        display: block;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn {
        min-height: 48px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-year {
        width: fit-content;
        margin-bottom: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-icons a {
        flex-direction: column;
        text-align: center;
        min-width: 140px;
        min-height: 48px;
        padding: 1.25rem 1rem;
    }
    
    .social-text {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .upcoming-events h3 {
        font-size: 1.6rem;
    }
    
    .upcoming-events p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: none;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 1.1rem;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 500px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: block;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.6) contrast(1.1);
        animation: heroZoom 25s ease-in-out infinite;
        display: block;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-logo img {
        max-width: 350px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-image img {
        height: 160px;
    }
    
    .timeline-item {
        margin-bottom: 3rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-icons a {
        min-width: 120px;
        padding: 1rem 0.75rem;
    }
    
    .upcoming-events {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem 1.5rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

.content-text {
    animation: fadeInLeft 0.8s ease-out;
}

.content-image {
    animation: fadeInRight 0.8s ease-out;
}

.service-card {
    animation: scaleIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
    
    .btn-secondary:hover {
        background: #000;
        color: #fff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 

/* Timeline - Luxury Styling */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: -4rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--primary-blue));
    border-radius: 2px;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.3);
    font-family: 'Inter', sans-serif;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

/* Membership Contact - Luxury Styling */
.membership-contact {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--gray-light);
    border-radius: 16px;
    border-left: 4px solid var(--accent-gold);
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.membership-types li:last-child {
    border-bottom: none;
} 

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: var(--white);
    margin: 0 auto 0.5rem;
    border-radius: 1px;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
} 