@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-dark: #050505;
    --bg-light: #FFFFFF;
    --text-main: #FFFFFF;
    --text-inv: #000000;
    --gold-primary: #D4AF37;
    --gold-light: #F2D24B;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

/* Lenis */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* Navbar (Consistent) */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: var(--glass-border);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

.nav-link {
    color: #A1A1AA !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

/* Hero */
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), #050505);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-serif);
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Sections */
.section-white {
    background: #FFFFFF;
    color: #000000;
    padding: 100px 0;
}

.sec-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
}

/* Form Styling */
.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.btn-submit {
    padding: 16px 40px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    background: var(--gold-primary);
    color: #000;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-submit:hover {
    background: #b4941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.4);
}

/* Contact Info Card */
.contact-info-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-detail a {
    color: var(--gold-primary);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
}

/* Footer CTA */
.footer-cta {
    padding: 120px 0;
    background: radial-gradient(600px 300px at 20% 0%, rgba(194, 31, 48, .35), transparent 60%), radial-gradient(800px 400px at 80% 100%, rgba(242, 210, 75, .3), transparent 60%), #0a0a0c;
    text-align: center;
    border-top: 1px solid #222;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #111;
}

/* Form Message */
.form-message {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Button Loading State */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
}

.floating-btn.call {
    background: linear-gradient(135deg, var(--gold-primary), #B4941F);
}

.floating-btn.call:hover {
    background: linear-gradient(135deg, #B4941F, #8B7016);
    color: #fff;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-btn.whatsapp {
    animation: pulse 2s infinite;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .header {
        padding: 15px 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
    }

    .navbar-nav {
        gap: 0 !important;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero {
        height: auto;
        min-height: 40vh;
        padding: 100px 20px 60px;
    }

    .page-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-white {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 30px;
        margin-top: 30px;
    }

    .footer-cta {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 35vh;
        padding: 80px 15px 50px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .sec-heading {
        font-size: 1.75rem;
    }

    .section-white {
        padding: 50px 0;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 30px;
    }

    .footer-cta {
        padding: 60px 0;
    }

    .footer-cta h2 {
        font-size: 1.5rem !important;
    }

    footer {
        padding: 30px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .sec-heading {
        font-size: 1.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .floating-btn:hover {
        transform: none;
    }

    .btn-submit:hover {
        transform: none;
    }

    .social-icon:hover {
        background: transparent;
        border-color: #ddd;
        color: #333;
    }
}