:root {
    --bg-color: #050505;
    --surface-color: #121214;
    --primary-gradient: linear-gradient(135deg, #AA771C 0%, #D4AF37 30%, #F3E5AB 50%, #D4AF37 70%, #8B6508 100%);
    --secondary-gradient: linear-gradient(135deg, #1f1f22, #0f0f11);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A5;
    --accent-color: #D4AF37;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.logo img {
    height: 45px;
    object-fit: contain;
}

#logo-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#logo-text span {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-secondary);
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.secondary-btn:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.outline-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    margin-top: 1.5rem;
    width: 100%;
}

.outline-btn:hover {
    background: var(--primary-gradient);
    color: #000;
    border-color: transparent;
}

.google-btn {
    background: #fff;
    color: #121214;
    margin-top: 1rem;
}
.google-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.hero-bg-grid::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-content {
    animation: fadeUp 1s ease-out forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeUp 1.2s ease-out forwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    padding: 1px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s;
}

.hero-main-img:hover {
    filter: grayscale(0%) contrast(1.1);
}

.floating-card {
    position: absolute;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-1 i {
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}

.card-1 h4 {
    font-size: 1.1rem;
}

.card-1 p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 3s;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.avatars {
    display: flex;
}

.avatars i {
    font-size: 1.5rem;
    margin-right: -0.5rem;
    color: #fff;
    background: var(--surface-color);
    border-radius: 50%;
    border: 2px solid var(--surface-color);
}

.card-2 p {
    font-size: 0.85rem;
    font-weight: 600;
}

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

/* Sections Global */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-color);
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: var(--primary-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.service-info {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-card:hover::after {
    opacity: 1;
}

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

.service-card:hover i {
    transform: scale(1.1);
}

/* Packages */
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    background: var(--primary-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    border-color: transparent;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card:hover::after {
    opacity: 1;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.package-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Reviews */
.reviews {
    background: var(--surface-color);
    border-radius: 30px;
    padding: 5rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.reviews-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-card {
    padding: 2rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.review-author {
    font-weight: 600;
    color: var(--accent-color);
}

.google-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 30px;
    filter: grayscale(80%) sepia(20%) hue-rotate(5deg);
    border: 1px solid var(--glass-border);
}
.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.about-signature {
    margin-top: 2rem;
}

/* Booking Section */
.booking-card {
    padding: 4rem 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(5,5,5,0.8));
    border: 1px solid rgba(212,175,55,0.2);
    text-align: center;
}
.booking-info p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.booking-features {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.booking-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.booking-features i {
    color: var(--accent-color);
}

/* Location Section */
.location-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}
.map-wrapper iframe {
    border-radius: 20px;
    filter: grayscale(100%) invert(90%) contrast(80%);
}
.location-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.location-details .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.location-details .info-item i {
    font-size: 2rem;
    color: var(--accent-color);
}
.location-details .info-item p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    background: #020202;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.footer-info i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .about-container, .location-container {
        grid-template-columns: 1fr;
    }

    .booking-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    section {
        padding: 4rem 1.5rem;
    }
}
