/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.08);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.navbar-logo:hover { transform: scale(1.05); }

.navbar-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}

.navbar-logo .logo-sub {
    font-size: 0.6rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.navbar-links {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 10;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(30px);
    z-index: var(--z-modal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.68rem;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--deep-red);
    color: white;
}

.btn-secondary:hover {
    background: var(--deep-red-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(178, 34, 34, 0.3);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-pill {
    border-radius: var(--radius-full);
    padding: 16px 40px;
}

.btn-lg { padding: 18px 48px; font-size: 0.72rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: var(--space-xl);
}

/* Comment Card */
.comment-card {
    background: var(--bg-card);
    border-left: 4px solid var(--deep-red);
    padding: var(--space-xl);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: all var(--transition-base);
}

.comment-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(8px);
}

.comment-card .quote {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.comment-card .author {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
}

/* Feature Card */
.feature-card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-card .icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.feature-card .label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal-overlay.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.modal-close:hover { color: white; }

.modal-title {
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: white;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    color-scheme: dark;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input option {
    background: var(--black);
    color: white;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(15deg);
    cursor: pointer;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    white-space: nowrap;
}

.float-btn .btn-text {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-left: 0;
}

.float-btn:hover .btn-text {
    max-width: 200px;
    opacity: 1;
    margin-left: 10px;
}

.float-btn:hover {
    transform: scale(1.05);
    padding-right: 20px;
}

.float-btn.phone {
    background: var(--deep-red);
    color: white;
    border: 1px solid var(--gold);
}

.float-btn.whatsapp {
    background: #25D366;
    color: white;
}

.float-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .overline {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--deep-red);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--border-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--bg-card);
    transition: background var(--transition-fast);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question .icon {
    color: var(--gold);
    transition: transform var(--transition-base);
    font-size: 0.9rem;
}

.faq-item.open .faq-question .icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(212, 175, 55, 0.03);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-top: var(--space-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .section-header h2 { font-size: 1.8rem; }

    .modal-content { padding: var(--space-xl); }
}
