/* CSS Custom Properties */
:root {
    --primary-gold: 45 85% 65%; /* #D4AF37 */
    --secondary-gold: 40 75% 55%; /* #C8991F */
    --dark-bg: 220 15% 12%; /* #1A1F2E */
    --darker-bg: 220 20% 8%; /* #131825 */
    --light-text: 0 0% 95%; /* #F2F2F2 */
    --medium-text: 0 0% 80%; /* #CCCCCC */
    --dark-text: 220 15% 25%; /* #353B4D */
    --overlay-dark: 220 15% 12%; /* #1A1F2E with opacity */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 80px;
    --mobile-header-height: 60px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: hsla(var(--dark-bg), 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(var(--primary-gold), 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: hsla(var(--darker-bg), 0.98);
    border-bottom-color: hsla(var(--primary-gold), 0.3);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo {
    margin-right: auto;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: hsl(var(--primary-gold));
    font-style: italic;
    letter-spacing: 1px;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: hsl(var(--light-text));
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary-gold));
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: hsl(var(--darker-bg));
    min-width: 300px;
    box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.4);
    border: 1px solid hsla(var(--primary-gold), 0.2);
    border-radius: 8px;
    z-index: 1000;
    padding: 20px 0;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown-content a {
    display: block;
    padding: 14px 28px;
    color: hsl(var(--light-text));
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-content a:hover {
    background: hsla(var(--primary-gold), 0.15);
    color: hsl(var(--primary-gold));
    border-left-color: hsl(var(--primary-gold));
    padding-left: 32px;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Extended hover area for better UX */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    z-index: 999;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(var(--primary-gold));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: hsl(var(--light-text));
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero-image,
.hero-image-next {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(1px) brightness(0.6) contrast(1.1);
    transition: opacity 0.8s ease;
}

.hero-image-next {
    opacity: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsla(var(--overlay-dark), 0.8) 0%,
        hsla(var(--overlay-dark), 0.6) 50%,
        hsla(var(--overlay-dark), 0.75) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: hsl(var(--primary-gold));
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: hsl(var(--light-text));
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.hero-title-accent {
    color: hsl(var(--primary-gold));
    font-style: italic;
    display: inline-block;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: hsla(var(--light-text), 0.1);
    border: 2px solid hsla(var(--light-text), 0.3);
    border-radius: 50%;
    color: hsl(var(--light-text));
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: hsla(var(--primary-gold), 0.2);
    border-color: hsl(var(--primary-gold));
    color: hsl(var(--primary-gold));
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 80px;
}

.carousel-next {
    right: 80px;
}

/* Water Reflection Effect */
.water-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    overflow: hidden;
    z-index: -1;
}

.reflection-image,
.reflection-image-next {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    object-position: center top;
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(1px);
    mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.4) 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.4) 100%);
    transition: opacity 0.8s ease;
}

.reflection-image-next {
    opacity: 0;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: var(--mobile-header-height);
    }
    
    .book-now-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .nav {
        position: fixed;
        top: var(--mobile-header-height);
        left: 0;
        width: 100%;
        background: hsl(var(--darker-bg));
        border-top: 1px solid hsla(var(--primary-gold), 0.2);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: clamp(24px, 8vw, 36px);
        letter-spacing: 1px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
    
    .water-reflection {
        height: 20%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

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

.hero-subtitle,
.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.carousel-nav:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid hsl(var(--primary-gold));
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: hsla(var(--overlay-dark), 0.8);
    }
    
    .nav-link,
    .carousel-nav {
        border: 1px solid hsl(var(--light-text));
    }
}

/* Welcome Section */
.welcome {
    background: hsl(var(--darker-bg));
    padding: 120px 0;
    position: relative;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.welcome-text {
    color: hsl(var(--light-text));
}

.welcome-label {
    color: hsl(var(--primary-gold));
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.welcome-label::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: hsl(var(--primary-gold));
}

.welcome-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
    color: hsl(var(--light-text));
}

.welcome-title-accent {
    color: hsl(var(--primary-gold));
    font-style: italic;
}

.welcome-description {
    margin-bottom: 40px;
}

.welcome-description p {
    font-size: 16px;
    line-height: 1.7;
    color: hsl(var(--medium-text));
    margin-bottom: 20px;
}

.welcome-description p:last-child {
    margin-bottom: 0;
}

.welcome-signature {
    position: relative;
}

.signature-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: hsl(var(--primary-gold));
    font-weight: 400;
}

/* Welcome Section Responsive */
@media (max-width: 768px) {
    .welcome {
        padding: 80px 0;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-label::before {
        left: -30px;
        width: 20px;
    }
    
    .welcome-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .welcome-description p {
        font-size: 15px;
    }
    
    .signature-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .welcome {
        padding: 60px 0;
    }
    
    .welcome-content {
        gap: 30px;
    }
    
    .welcome-label::before {
        display: none;
    }
    
    .welcome-description p {
        font-size: 14px;
    }
}

/* Services Section */
.services {
    background: hsl(var(--dark-bg));
    padding: 120px 0;
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-label {
    color: hsl(var(--primary-gold));
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-style: italic;
}

.services-description {
    font-size: 18px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
    max-width: 600px;
    margin: 24px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: hsl(var(--darker-bg));
    border: 1px solid hsla(var(--primary-gold), 0.1);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary-gold)), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    border-color: hsla(var(--primary-gold), 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px hsla(var(--primary-gold), 0.15);
}

.service-icon {
    color: hsl(var(--primary-gold));
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 48px;
    color: hsl(var(--light-text));
}

.services-title-accent {
    color: hsl(var(--primary-gold));
    font-style: italic;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid hsla(var(--primary-gold), 0.2);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item:hover {
    transform: translateX(8px);
}

.service-number {
    color: hsl(var(--primary-gold));
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-heading);
    flex-shrink: 0;
    min-width: 20px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--light-text));
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
}

.services-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(var(--dark-bg), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-image:hover .services-image-overlay {
    opacity: 1;
}

.explore-btn {
    background: transparent;
    border: 2px solid hsl(var(--primary-gold));
    color: hsl(var(--primary-gold));
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.explore-btn:hover {
    background: hsl(var(--primary-gold));
    color: hsl(var(--dark-bg));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--primary-gold), 0.3);
}

/* Services Section Responsive */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-desc {
        font-size: 13px;
    }
}

/* Statistics & Testimonials Section */
.stats-testimonials {
    background: hsl(var(--darker-bg));
    padding: 120px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    color: hsl(var(--primary-gold));
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-unit {
    font-size: 16px;
    color: hsl(var(--primary-gold));
    font-weight: 500;
    font-style: italic;
}

.stat-text {
    font-size: 16px;
    color: hsl(var(--medium-text));
    font-style: italic;
    text-transform: lowercase;
}

.testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    color: hsl(var(--primary-gold));
    margin-bottom: 40px;
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid hsl(var(--primary-gold));
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    margin-bottom: 32px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--primary-gold));
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: hsl(var(--medium-text));
    font-style: italic;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: hsl(var(--light-text));
    font-style: italic;
    margin-bottom: 40px;
    quotes: none;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border: 2px solid hsla(var(--primary-gold), 0.3);
    background: transparent;
    color: hsl(var(--primary-gold));
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: hsl(var(--primary-gold));
    background: hsl(var(--primary-gold));
    color: hsl(var(--dark-bg));
    transform: scale(1.1);
}

/* Statistics & Testimonials Responsive */
@media (max-width: 768px) {
    .stats-testimonials {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .stat-number {
        font-size: clamp(36px, 8vw, 48px);
    }
    
    .stat-unit,
    .stat-text {
        font-size: 14px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .stats-testimonials {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: clamp(32px, 10vw, 40px);
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }
}

/* Features Section */
.features {
    background: hsl(var(--dark-bg));
    padding: 120px 0;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-label {
    color: hsl(var(--primary-gold));
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-style: italic;
}

.features-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: hsl(var(--primary-gold));
    text-transform: capitalize;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: hsl(var(--darker-bg));
    border: 1px solid hsla(var(--primary-gold), 0.1);
    border-radius: 8px;
    padding: 40px 32px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, hsl(var(--primary-gold)), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    border-color: hsla(var(--primary-gold), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px hsla(var(--primary-gold), 0.1);
}

.feature-icon {
    color: hsl(var(--primary-gold));
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

.feature-number {
    color: hsl(var(--primary-gold));
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--light-text));
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: hsl(var(--medium-text));
}

/* Features Section Responsive */
@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 24px;
        gap: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 24px 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .feature-title {
        font-size: 16px;
    }
}

/* Footer Section */
.footer {
    background: hsl(var(--dark-bg));
}

/* Instagram Gallery */
.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 120px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Footer Content */
.footer-content {
    background: hsl(var(--darker-bg));
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-section {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--light-text));
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: hsl(var(--primary-gold));
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.footer-logo-decoration {
    width: 60px;
    height: 2px;
    background: hsl(var(--primary-gold));
    margin: 0 auto 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid hsla(var(--primary-gold), 0.3);
    background: transparent;
    color: hsl(var(--medium-text));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: hsl(var(--primary-gold));
    color: hsl(var(--primary-gold));
    background: hsla(var(--primary-gold), 0.1);
}

/* Footer Bottom */
.footer-bottom {
    background: hsl(var(--dark-bg));
    padding: 24px 0;
    border-top: 1px solid hsla(var(--primary-gold), 0.1);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: hsl(var(--medium-text));
}

.envato-link {
    color: hsl(var(--primary-gold));
    text-decoration: none;
    font-weight: 500;
}

.envato-link:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: hsl(var(--medium-text));
}

.footer-scroll-top {
    text-align: right;
}

.scroll-top-btn,
.scroll-to-top {
    width: 40px;
    height: 40px;
    background: hsl(var(--primary-gold));
    border: none;
    border-radius: 4px;
    color: hsl(var(--dark-bg));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-top-btn:hover,
.scroll-to-top:hover {
    background: hsl(var(--light-gold));
    transform: translateY(-2px);
}

.scroll-to-top span {
    display: none;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .instagram-gallery {
        grid-template-columns: repeat(4, 1fr);
        height: 100px;
    }
    
    .footer-content {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section,
    .footer-right {
        text-align: center;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr auto;
        gap: 16px;
        text-align: left;
    }
    
    .footer-credits {
        justify-content: flex-start;
    }
    
    .footer-scroll-top {
        justify-content: flex-end;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
        height: 80px;
    }
    
    .footer-content {
        padding: 40px 0;
    }
    
    .footer-grid {
        gap: 32px;
    }
    
    .footer-logo h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        gap: 12px;
    }
}

/* Travel Services Section */
.travel-services {
    background: hsl(var(--dark-bg));
    padding: 120px 0;
}

.travel-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.travel-label {
    color: hsl(var(--primary-gold));
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-style: italic;
}

.travel-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: hsl(var(--light-text));
    margin-bottom: 24px;
    line-height: 1.2;
}

.travel-title-accent {
    color: hsl(var(--primary-gold));
    font-style: italic;
}

.travel-description {
    font-size: 18px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.travel-card {
    background: hsl(var(--darker-bg));
    border: 1px solid hsla(var(--primary-gold), 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.travel-card:hover {
    border-color: hsla(var(--primary-gold), 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px hsla(var(--primary-gold), 0.15);
}

.travel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.travel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel-card:hover .travel-image img {
    transform: scale(1.05);
}

.travel-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: hsl(var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: hsl(var(--dark-bg));
}

.travel-number {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
}

.travel-content {
    padding: 32px;
}

.travel-service-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: hsl(var(--light-text));
    margin-bottom: 16px;
    line-height: 1.3;
}

.travel-service-desc {
    font-size: 15px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
}

.travel-service-price {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-tier {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: hsl(var(--medium-text));
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--primary-gold));
    letter-spacing: 0.5px;
}

/* Travel Services Responsive */
@media (max-width: 768px) {
    .travel-services {
        padding: 80px 0;
    }
    
    .travel-header {
        margin-bottom: 60px;
    }
    
    .travel-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .travel-description {
        font-size: 16px;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .travel-image {
        height: 250px;
    }
    
    .travel-content {
        padding: 24px;
    }
    
    .travel-service-title {
        font-size: 20px;
    }
    
    .travel-service-desc {
        font-size: 14px;
    }
}

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


/* Membership Page Styles */
.membership-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.membership-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membership-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.membership-hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.membership-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid hsla(var(--primary-gold), 0.2);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--text-light));
    margin-bottom: 16px;
}

.hero-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--text-muted));
}

.membership-features {
    padding: 120px 0;
    background: hsl(var(--dark-bg));
}

.membership-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.membership-features-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(var(--text-light));
    margin-bottom: 48px;
}

.membership-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.membership-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(var(--text-muted));
}

.feature-bullet {
    color: hsl(var(--primary-gold));
    font-weight: bold;
    margin-top: 2px;
}

.membership-tiers-showcase {
    background: hsl(var(--darker-bg));
    border-radius: 12px;
    padding: 40px;
    border: 1px solid hsla(var(--primary-gold), 0.1);
}

.membership-tier-card {
    text-align: center;
    margin-bottom: 32px;
}

.tier-header {
    margin-bottom: 24px;
}

.tier-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary-gold));
    letter-spacing: 2px;
}

.tier-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(var(--text-light));
    margin-bottom: 16px;
}

.tier-description {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

.membership-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.nav-arrow {
    background: none;
    border: 1px solid hsla(var(--primary-gold), 0.3);
    color: hsl(var(--primary-gold));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: hsl(var(--primary-gold));
    color: hsl(var(--dark-bg));
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsla(var(--primary-gold), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: hsl(var(--primary-gold));
}

.inquiry-btn {
    background: transparent;
    border: 2px solid hsl(var(--primary-gold));
    color: hsl(var(--primary-gold));
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.inquiry-btn:hover {
    background: hsl(var(--primary-gold));
    color: hsl(var(--dark-bg));
}

/* Membership Pricing Styles */
.membership-pricing {
    padding: 80px 0;
    background: hsl(var(--dark-bg));
}

.pricing-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tier-card {
    background: white;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tier-card.essential {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #dee2e6;
}

.tier-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    border-color: #4a5568;
}

.tier-card.limitless {
    background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
    color: #1a202c;
    border-color: #d69e2e;
    position: relative;
}

.tier-card.limitless::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.tier-card-header {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.tier-card.essential .tier-card-header {
    background: rgba(108, 117, 125, 0.1);
    border-color: rgba(108, 117, 125, 0.2);
}

.tier-card.premium .tier-card-header {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
}

.tier-card.limitless .tier-card-header {
    background: rgba(26, 32, 44, 0.15);
    border-color: rgba(26, 32, 44, 0.2);
}

.tier-icon {
    color: #6c757d;
    width: 16px;
    height: 16px;
}

.tier-card.premium .tier-icon {
    color: #f7fafc;
}

.tier-card.limitless .tier-icon {
    color: #1a202c;
}

.tier-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: -0.025em;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.025em;
}

.tier-card.essential .tier-price {
    color: #495057;
}

.tier-card.premium .tier-price {
    color: #f7fafc;
}

.tier-card.limitless .tier-price {
    color: #1a202c;
}

.price-period {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    margin-top: 1px;
    opacity: 0.7;
    letter-spacing: 0.025em;
}

.tier-description {
    font-size: 0.75rem;
    line-height: 1.3;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 12px;
}

.tier-join-btn {
    width: 100%;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-card.essential .tier-join-btn {
    background: #495057;
    color: white;
}

.tier-card.essential .tier-join-btn:hover {
    background: #343a40;
    transform: translateY(-1px);
}

.tier-card.premium .tier-join-btn {
    background: white;
    color: #1a1a1a;
}

.tier-card.premium .tier-join-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.tier-card.limitless .tier-join-btn {
    background: #1a202c;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.tier-card.limitless .tier-join-btn:hover {
    background: #d4af37;
    color: #1a202c;
    transform: translateY(-1px);
}

.features-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 150px 150px 150px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.feature-row:last-child {
    border-bottom: none;
}

.header-row {
    background: #f8f8f8;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.feature-name {
    padding: 20px 24px;
    text-align: left;
}

.feature-name strong {
    color: #2c2c2c;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.feature-name small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

.feature-value {
    padding: 20px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: #2c2c2c;
}

.essential-header {
    color: #666;
    font-weight: 600;
}

.premium-header {
    color: #2c2c2c;
    font-weight: 600;
}

.limitless-header {
    color: #d4af37;
    font-weight: 700;
}

.cta-row {
    background: #f8f8f8;
    border-top: 2px solid #e0e0e0;
}

.tier-button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.essential-btn {
    background: #e0e0e0;
    color: #666;
}

.premium-btn {
    background: #2c2c2c;
    color: white;
}

.limitless-btn {
    background: #d4af37;
    color: white;
}

.tier-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    /* Membership page mobile responsiveness */
    .membership-hero-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-card {
        padding: 24px;
    }
    
    .tier-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .tier-card {
        padding: 20px 16px;
    }
    
    .features-table {
        overflow-x: auto;
    }
    
    .feature-row {
        display: block;
        margin-bottom: 24px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .header-row {
        display: none;
    }
    
    .feature-name {
        padding: 16px;
        background: #f8f8f8;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .feature-value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .feature-value::before {
        content: "";
        font-weight: 600;
        font-size: 0.85rem;
        color: #666;
        min-width: 80px;
    }
    
    .feature-row .feature-value:nth-child(2)::before {
        content: "Essential:";
    }
    
    .feature-row .feature-value:nth-child(3)::before {
        content: "Premium:";
    }
    
    .feature-row .feature-value:nth-child(4)::before {
        content: "Limitless:";
    }
    
    .cta-row {
        background: #f8f8f8;
        padding: 16px;
        margin-top: 32px;
    }
    
    .cta-row .feature-value {
        margin-bottom: 12px;
        background: white;
        border-radius: 6px;
        border: none;
    }
    
    .tier-button {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .membership-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    /* Mobile Navigation Dropdown */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: hsl(var(--dark-bg));
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .nav-list li {
        width: 100%;
        margin-bottom: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid hsla(var(--primary-gold), 0.1);
        width: 100%;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .dropdown-content {
        position: static;
        background: hsl(var(--darker-bg));
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown.active .dropdown-content {
        max-height: 400px;
    }
    
    .dropdown-content a {
        padding: 12px 20px;
        border-bottom: 1px solid hsla(var(--primary-gold), 0.05);
        font-size: 0.9rem;
    }
    
    .dropdown-content a:hover {
        background: hsla(var(--primary-gold), 0.1);
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    /* Mobile Navigation Overlay - completely disabled */
    .nav-overlay {
        display: none !important;
    }
    

    
    .membership-hero-content {
        padding: 60px 0;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #2a2a2a;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

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

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 15px 0;
    font-family: serif;
}

.modal-header p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
}

.membership-form {
    padding: 20px 40px 40px;
}

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

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

.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #d4af37;
}

.form-group select {
    background: #2a2a2a;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.form-group select option {
    background: #2a2a2a;
    color: white;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 140px;
}

.btn-primary {
    background: #d4af37;
    color: #2a2a2a;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #999;
}

.thank-you-message {
    padding: 30px;
    text-align: center;
}

.thank-you-content {
    max-width: 400px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: hsl(var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: hsl(var(--dark-bg));
    margin: 0 auto 20px;
    font-weight: bold;
}

.thank-you-message h3 {
    color: hsl(var(--primary-gold));
    font-size: 24px;
    margin-bottom: 15px;
}

.thank-you-message p {
    color: hsl(var(--light-text));
    line-height: 1.6;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px 0;
    }
    
    .modal-header,
    .membership-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .membership-hero-title {
        font-size: 2.5rem;
    }
}

/* Policy Content Styles */
.policy-content {
    background: hsl(var(--dark-bg));
    padding: 120px 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.policy-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: hsl(var(--primary-gold));
    margin-bottom: 16px;
    line-height: 1.2;
}

.policy-subtitle {
    font-size: 16px;
    color: hsl(var(--medium-text));
    font-style: italic;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.policy-section {
    background: hsl(var(--darker-bg));
    border: 1px solid hsla(var(--primary-gold), 0.1);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: hsla(var(--primary-gold), 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsla(var(--primary-gold), 0.1);
}

.policy-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: hsl(var(--primary-gold));
    margin-bottom: 16px;
    line-height: 1.3;
}

.policy-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--light-text));
    margin: 20px 0 12px 0;
    line-height: 1.3;
}

.policy-section p {
    font-size: 15px;
    color: hsl(var(--medium-text));
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-section ul,
.policy-section ol {
    margin: 16px 0;
    padding-left: 20px;
}

.policy-section li {
    font-size: 15px;
    color: hsl(var(--medium-text));
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-section li strong {
    color: hsl(var(--light-text));
    font-weight: 600;
}

.contact-info {
    background: hsla(var(--primary-gold), 0.05);
    border-left: 3px solid hsl(var(--primary-gold));
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-info a {
    color: hsl(var(--medium-text));
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: hsl(var(--primary-gold));
}

@media (max-width: 768px) {
    .policy-content {
        padding: 80px 0;
    }
    
    .policy-wrapper {
        max-width: none;
        margin: 0 20px;
    }
    
    .policy-section {
        padding: 24px 20px;
    }
    
    .policy-title {
        font-size: clamp(28px, 8vw, 36px);
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-section h4 {
        font-size: 16px;
    }
}

/* Service CTA Section */
.service-cta-section {
    text-align: center;
    padding: 60px 40px;
    margin-top: 40px;
    background: #1a1a1a;
    position: relative;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, hsla(var(--primary-gold), 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-cta-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-cta-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: hsl(var(--light-text));
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.service-cta-description {
    font-size: 0.95rem;
    color: hsl(var(--text-secondary));
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.service-cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: hsl(var(--primary-gold));
    color: hsl(var(--dark-bg));
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid hsl(var(--primary-gold));
}

.service-cta-button:hover {
    background: transparent;
    color: hsl(var(--primary-gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px hsla(var(--primary-gold), 0.2);
}

@media (max-width: 768px) {
    .service-cta-section {
        padding: 60px 20px;
        margin-top: 40px;
    }
    
    .service-cta-title {
        font-size: 1.8rem;
    }
    
    .service-cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .service-cta-button {
        padding: 16px 32px;
        font-size: 0.9rem;
    }
    
    .membership-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .membership-features-title {
        font-size: 2rem;
    }
}

/* Payment Logos */
.payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    justify-content: flex-end;
}

.payment-logo-container {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.payment-logo-container:hover {
    transform: scale(1.05);
}

.payment-logo-container img {
    height: 24px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .payment-logos {
        justify-content: center;
        margin-top: 16px;
    }
}
