﻿/* Modern Ocean Theme - Dark Luxury Design */
/* Color Palette */
:root {
    --ocean-deep: #0c4a6e;
    --ocean-medium: #38bdf8;
    --ocean-light: #7dd3fc;
    --ocean-turquoise: #06b6d4;
    --sand-gold: #fbbf24;

    /* Dark Luxury Glass */
    --glass-bg: rgba(10, 25, 47, 0.85);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.4);

    --text-main: #f8fafc;
    --text-secondary: #cbd5e1;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    overflow-x: hidden;
    background-color: #0b1121;
}

/* No Dark Overlay */
body::before {
    display: none;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo-container img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sand-gold);
}

.nav-btn {
    background: var(--sand-gold);
    color: #0c4a6e;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.nav-btn:hover {
    background: #fff;
    color: #0c4a6e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    /* Increased top padding for fixed header */
    position: relative;
    background-image: url('../images/hero-bg-lifestyle-final.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 30, 55, 0.95);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--sand-gold);
    color: #0c4a6e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
    background: #fcd34d;
}

/* Features Section */
.features {
    padding: 4rem 2rem 6rem;
    position: relative;
    background-color: #0b1121;
    z-index: 2;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

/* Feature Card */
.feature-card {
    background: rgba(18, 30, 60, 0.8);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(25, 40, 80, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-description {
    font-size: 1rem;
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card,
.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Experience Section */
.experience {
    padding: 6rem 2rem;
    background-color: #0b1121;
    position: relative;
    overflow: hidden;
}

.expanded-container {
    max-width: 1300px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    color: var(--sand-gold);
    border: 1px solid var(--sand-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.experience-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check-icon {
    color: var(--sand-gold);
    font-weight: bold;
}

.secondary-cta {
    background: transparent;
    border: 2px solid var(--sand-gold);
    color: var(--sand-gold);
}

.secondary-cta:hover {
    background: var(--sand-gold);
    color: #0b1121;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Mood Break Section */
.mood-break {
    padding: 0 2rem 6rem;
    background-color: #0b1121;
}

.mood-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mood-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mood-image-wrapper:hover img {
    transform: scale(1.03);
}

.mood-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
}

.mood-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0b1121, #0f172a);
}

.center-title {
    text-align: center;
}

.center-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card-small {
    background: rgba(18, 30, 60, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.glass-card-small:hover {
    transform: translateY(-5px);
    background: rgba(18, 30, 60, 0.6);
}

.stars {
    color: var(--sand-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
}

.author-type {
    font-size: 0.85rem;
    color: #64748b;
}

/* Footer */
footer {
    background: #0b1121;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.footer-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--sand-gold);
}

.copyright {
    font-size: 0.9rem;
    color: #64748b;
}

/* RESPONSIVE DESIGN */
.hamburger-menu,
.mobile-sidebar,
.sidebar-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-header {
        height: 70px;
        position: fixed;
        background: rgba(10, 25, 47, 0.95);
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s linear;
    }

    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(20px);
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 6rem 3rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .mobile-sidebar.active {
        transform: translateX(0);
    }

    .close-sidebar {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    .mobile-nav-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-nav-link {
        text-decoration: none;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 500;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
    }

    .mobile-nav-btn {
        background: var(--sand-gold);
        color: #0c4a6e;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-align: center;
        border: none;
        font-weight: 700;
        margin-top: 1.5rem;
    }

    /* Overlay */
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Responsive grids */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .experience-list li {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .mobile-sidebar {
        width: 280px;
        padding: 5rem 2rem;
    }

    .features {
        padding: 3rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.5rem;
    }

    .footer-link {
        padding: 0.5rem 0;
        display: block;
    }

    footer {
        padding: 3rem 1.5rem 5rem;
    }

    /* Mood Section Mobile */
    .mood-break {
        padding-bottom: 4rem;
    }

    .mood-image-wrapper {
        height: 300px;
        border-radius: 20px;
    }

    .mood-text {
        font-size: 1.5rem;
        padding: 0;
    }

    .mood-overlay {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}