@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --dark: #0a0a0a;
    --dark-deep: #141414;
    --dark-main: #1a1a1a;
    --dark-mid: #2a2a2a;
    --accent: #ffffff;
    --accent-soft: #e0e0e0;
    --accent-glow: #ffffff;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --white: #ffffff;
    --gray-light: #c0c0c0;
    --gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NAVBAR */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.navbar-brand span {
    color: var(--gray);
}

.nav-link {
    color: var(--gray-light) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    margin: 0 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.btn-nav {
    background: var(--white);
    color: var(--dark) !important;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        var(--dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    position: relative;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
    animation: fadeUp 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-btns {
    animation: fadeUp 0.8s ease-out 0.6s both;
}

.btn-primary-custom {
    background: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    color: var(--dark);
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    animation: fadeUp 0.8s ease-out 0.8s both;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald';
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SECTIONS */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title .highlight {
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #555555, #ffffff);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* SERVICES */
.services-section {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(20, 20, 20, 0.8) 50%, var(--dark) 100%);
}

.service-category-title {
    font-family: 'Oswald';
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-category-title i {
    font-size: 1.2rem;
}

.service-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
    margin-bottom: 12px;
}

.service-item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(30, 30, 30, 0.8);
}

.service-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-light);
    transition: all 0.3s;
}

.service-item:hover .service-item-icon {
    background: var(--white);
    color: var(--dark);
}

.service-item h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.service-item p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.service-price {
    font-family: 'Oswald';
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

/* ABOUT */
.about-section {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #141414, #2a2a2a);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about-img-wrapper img {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.about-img-wrapper .brand-text {
    font-family: 'Oswald';
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.1;
    letter-spacing: 8px;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.about-feature h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.about-feature p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* GALLERY */
.gallery-section {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(20, 20, 20, 0.5) 50%, var(--dark) 100%);
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #141414, #222222);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Oswald';
    font-size: 1rem;
    letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    color: var(--gray);
    font-size: 0.8rem;
}

/* PRICING */
.pricing-section {
    background: linear-gradient(180deg, var(--dark), rgba(20, 20, 20, 0.6), var(--dark));
}

.pricing-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.03);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.pricing-card-header h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.pricing-card-header .pricing-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--gray-light);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li .item-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list li .item-name i {
    color: var(--white);
    font-size: 0.75rem;
}

.pricing-list li .item-price {
    font-family: 'Oswald';
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

/* CONTACT / BOOKING */
.booking-section {
    position: relative;
}

.booking-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
}

.form-floating .form-control,
.form-floating .form-select {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    height: 56px;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.95);
}

.form-floating label {
    color: var(--gray);
}

.form-floating .form-control:focus~label,
.form-floating .form-control:not(:placeholder-shown)~label {
    color: var(--white);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

.btn-book {
    background: var(--white);
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    width: 100%;
    transition: all 0.3s;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    color: var(--dark);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-item h6 {
    font-size: 0.8rem;
    color: var(--gray);
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin: 0;
    font-size: 1rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 250px;
    background: linear-gradient(135deg, #141414, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 30px;
}

.footer-brand {
    font-family: 'Oswald';
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-brand span {
    color: var(--gray);
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 40px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero p {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center !important;
    }

    .hero-stats {
        justify-content: center !important;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .booking-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }

    .stat-item {
        margin-bottom: 16px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .service-item-info {
        flex-direction: column;
    }
}