/* ===== PREMIUM ENHANCEMENTS ===== */

/* Enhanced Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Navigation */
.navbar {
    background: rgba(10, 37, 64, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, transparent 100%);
    z-index: 3;
}

.hero-content {
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-title {
    position: relative;
    display: inline-block;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-tagline {
    font-weight: 500;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

/* Premium Intro Section */
.intro-section {
    position: relative;
    padding: 8rem 0;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
}

.intro-content {
    position: relative;
}

.intro-content::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 2;
    position: relative;
    padding: 1rem 0;
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Premium Membership Cards */
.membership-card {
    position: relative;
    overflow: visible;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.membership-card:hover::before {
    opacity: 0.5;
}

.membership-card.featured {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

.membership-card.featured::before {
    opacity: 1;
}

.card-header {
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.card-header i {
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

/* Enhanced Price Box */
.price-box {
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: priceShine 3s infinite;
}

@keyframes priceShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.price {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Premium Benefits List */
.benefits-list.premium li {
    position: relative;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.benefits-list.premium li:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    padding-left: 20px;
}

.benefits-list.premium li i {
    transition: all 0.3s ease;
}

.benefits-list.premium li:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* Enhanced Financing Section */
.financing-section {
    position: relative;
    overflow: hidden;
}

.financing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

.financing-option {
    position: relative;
    overflow: hidden;
}

.financing-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.financing-option:hover::before {
    width: 400px;
    height: 400px;
}

.financing-icon {
    position: relative;
    z-index: 2;
}

.financing-price {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Premium Amenities */
.amenity-card {
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-icon {
    position: relative;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.3);
}

.amenity-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.2;
}

/* Enhanced Commitment Section */
.commitment-box {
    position: relative;
    overflow: hidden;
}

.commitment-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--secondary-color));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.commitment-box::after {
    content: '⚓';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 100px;
    opacity: 0.05;
}

/* Premium CTA Section */
.cta-section {
    position: relative;
}

.cta-content {
    animation: ctaFloat 3s ease-in-out infinite;
}

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

.cta-content h2 {
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Enhanced Buttons */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Premium Footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-logo i {
    animation: anchorSway 3s ease-in-out infinite;
}

@keyframes anchorSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

/* Scroll Animations */
[data-aos] {
    pointer-events: auto;
}

/* Premium Scroll Indicator */
.scroll-indicator {
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--accent-gold);
    opacity: 0.5;
}

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

.container > * {
    animation: pageLoad 0.8s ease-out backwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }

/* Premium Hover Effects */
.membership-card, .amenity-card, .financing-option {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glassmorphism Effects */
.featured-badge {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Gold Accent Glow */
.accent-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Premium Text Selection */
::selection {
    background: var(--accent-gold);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--primary-color);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c19b2e;
}

/* Premium Focus States */
a:focus, button:focus, input:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Enhanced Mobile Experience */
@media (max-width: 968px) {
    .hero-title::after {
        width: 60px;
    }
    
    .section-title::after {
        width: 80px;
    }
    
    .membership-card.featured {
        transform: scale(1);
    }
}

/* Print Styles */
@media print {
    .navbar, .scroll-indicator, .btn-primary, .btn-secondary {
        display: none;
    }
}
