/* ═══════════════════════════════════════════════
   RUFF — Shared Design System
   ═══════════════════════════════════════════════ */

/* ── Directional Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: translate(0) scale(1); }

/* Stagger delays */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── Ambient Background Effects ── */
.bg-glow {
    position: relative;
    overflow: hidden;
}

.bg-glow::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,76,60,0.06) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
    z-index: 0;
    animation: glowDrift 18s ease-in-out infinite alternate;
}

.bg-glow-left::after {
    right: auto; left: -200px;
    top: auto; bottom: -200px;
    animation-direction: alternate-reverse;
}

@keyframes glowDrift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
    100% { transform: translate(20px, -20px); }
}

/* Subtle noise overlay */
.noise-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Gradient line divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231,76,60,0.2) 30%, rgba(231,76,60,0.2) 70%, transparent);
    border: none;
    margin: 0;
}

/* ══════════════════════════════════════
   FAQ / COMMON QUESTIONS — Unified
   ══════════════════════════════════════ */
.faq-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: #0a0a0a;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 24px;
    margin-bottom: 48px;
    gap: 40px;
}
.faq-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}
.faq-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin: 0;
    text-align: right;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
    padding: 25px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    color: rgba(255,255,255,0.85);
    gap: 20px;
}
.faq-question:hover {
    color: #fff;
}
.faq-question .plus-icon {
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.4);
}
.faq-item.open .plus-icon {
    transform: rotate(45deg);
    color: #e74c3c;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-item.open .faq-answer {
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-answer p {
    padding-bottom: 25px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .faq-header {
        flex-direction: column;
        gap: 8px;
    }
    .faq-header p {
        text-align: left;
    }
}

/* ══════════════════════════════════════
   QUOTE BUILDER / CART 
   ══════════════════════════════════════ */

/* Floating cart toggle */
.quote-toggle {
    position: fixed;
    bottom: 28px; left: 28px;
    z-index: 998;
    width: 56px; height: 56px;
    background: rgba(231,76,60,0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(231,76,60,0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(231,76,60,0.4);
}

.quote-toggle .badge-count {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 20px; height: 20px;
    background: #fff;
    color: #e74c3c;
    border-radius: 10px;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    padding: 0 5px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quote-toggle .badge-count.has-items {
    transform: scale(1);
}

/* Cart panel */
.quote-panel {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    max-width: 460px;
    max-height: 85vh;
    z-index: 1001;
    background: rgba(12,12,12,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-right: 1px solid rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-top-right-radius: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.quote-panel.open {
    transform: translateY(0);
}

/* Panel backdrop */
.quote-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.quote-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.quote-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.quote-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quote-close {
    background: none; border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.quote-close:hover { color: #fff; }

/* Cart items */
.quote-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 28px;
}

.quote-items::-webkit-scrollbar { width: 3px; }
.quote-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.quote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.quote-item:last-child { border-bottom: none; }

.quote-item-info {
    flex: 1;
}

.quote-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.quote-item-price {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.quote-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(231,76,60,0.15);
    border-color: rgba(231,76,60,0.3);
}

.qty-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.quote-item-total {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e74c3c;
    min-width: 90px;
    text-align: right;
}

/* Empty state */
.quote-empty {
    padding: 48px 28px;
    text-align: center;
    color: rgba(255,255,255,0.3);
}

.quote-empty svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

.quote-empty p {
    font-size: 14px;
    line-height: 1.6;
}

/* Footer / totals */
.quote-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.quote-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.quote-total-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

.quote-total-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.quote-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.quote-send-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.quote-clear-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.quote-clear-btn:hover { color: #e74c3c; }

/* Add-to-quote button (inline on product cards) */
.add-to-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.2);
    color: #e74c3c;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
}

.add-to-quote:hover {
    background: rgba(231,76,60,0.2);
    border-color: rgba(231,76,60,0.4);
    transform: translateY(-1px);
}

.add-to-quote.added {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.3);
    color: #25D366;
}

/* Structured tile-option buttons (product selector with label + price) */
.add-to-quote.tile-option {
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.add-to-quote.tile-option.in-kart {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.3);
}
.add-to-quote.tile-option.in-kart span:first-child {
    color: #25D366;
}
.add-to-quote.tile-option.in-kart span:last-child {
    color: rgba(37,211,102,0.7);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .quote-panel {
        max-width: 100%;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-right: none;
    }
    .quote-toggle {
        bottom: 20px;
        left: 20px;
        width: 48px; height: 48px;
    }
}


/* ══════════════════════════════════════
   CTA — Option 5 (Stacked Blocks)
   Product pages
   ══════════════════════════════════════ */
.cta-5 { padding: clamp(60px, 10vw, 120px) 0; }

.cta-5-top {
    background: #111;
    padding: clamp(40px, 6vw, 70px) clamp(30px, 5vw, 60px);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
}
.cta-5-top h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}
.cta-5-top p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 500px;
}
.cta-5-top .visit-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}
.cta-5-top .visit-note strong {
    color: rgba(255,255,255,0.5);
}
.cta-5-bottom {
    background: #e74c3c;
    padding: clamp(24px, 4vw, 36px) clamp(30px, 5vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-5-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
}
.cta-5-btns a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s;
    text-decoration: none; color: #fff;
}
.cta-5-btns a:first-child {
    background: #fff;
    color: #e74c3c;
    border-radius: 8px;
}
.cta-5-btns a:first-child:hover { background: #f0f0f0; }
.cta-5-btns a:last-child {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
}
.cta-5-btns a:last-child:hover { border-color: #fff; }
.cta-5-phones {
    display: flex; gap: 20px; align-items: center;
}
.cta-5-phones a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px; font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
    text-decoration: none;
}
.cta-5-phones a:hover { color: #fff; }
.cta-5-phones .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
    .cta-5-bottom { justify-content: center; }
    .cta-5-phones { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   CTA — Option 3 (Type-Only)
   ruff-main.html
   ══════════════════════════════════════ */
.cta-3 {
    padding: clamp(80px, 14vw, 160px) 0;
    text-align: center;
}
.cta-3 h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 9vw, 100px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 40px;
}
.cta-3 h2 em {
    font-style: normal;
    color: #e74c3c;
}
.cta-3-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-3-actions a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 28px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
}
.cta-3-actions a:first-child {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}
.cta-3-actions a:first-child:hover {
    color: #fff;
    border-bottom-color: #fff;
}
.cta-3-actions a:last-child {
    color: rgba(255,255,255,0.5);
}
.cta-3-actions a:last-child:hover {
    color: #fff;
}
.cta-3-phone {
    margin-top: 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 4px;
}


/* ══════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════ */
.contact-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: #080808;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #e74c3c;
}
.contact-detail-text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.contact-detail-text strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-detail-text a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-detail-text a:hover { color: #fff; }
.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: clamp(28px, 4vw, 44px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(231,76,60,0.4);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: #111; color: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #e74c3c;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}
.form-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION — Unified Nested Nav
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 32px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-inner {
    max-width: 1500px; margin: 0 auto; padding: 0 48px;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px; font-weight: 300; letter-spacing: 6px;
    text-transform: uppercase;
}

.nav-logo span { color: #e74c3c; }

.nav-links { display: flex; gap: 48px; align-items: center; }

.nav-link {
    font-size: 10px; font-weight: 400; text-transform: uppercase;
    letter-spacing: 2.5px; color: rgba(255,255,255,0.6);
    transition: color 0.4s; position: relative;
    padding-bottom: 4px;
}

.nav-link:hover { color: #fff; }

.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: #e74c3c;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after { width: 100%; }

.nav-link.active { color: #fff; }
.nav-link.active::after { width: 100%; }
.nav-dropdown-trigger.active { color: #fff; }
.nav-dropdown-trigger.active::after { width: 100%; }
.nav-dropdown-menu a.active { color: #fff; background: rgba(231,76,60,0.08); }

.nav-cta {
    font-size: 10px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 2.5px; color: #fff;
    padding-bottom: 6px; border-bottom: 1px solid #e74c3c;
    transition: all 0.4s;
}

.nav-cta:hover { border-color: #fff; }

/* ── Products Dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    font-size: 10px; font-weight: 400; text-transform: uppercase;
    letter-spacing: 2.5px; color: rgba(255,255,255,0.6);
    transition: color 0.4s; position: relative;
    padding-bottom: 4px;
    background: none; border: none; cursor: pointer;
    font-family: inherit;
    display: flex; align-items: center; gap: 6px;
}

.nav-dropdown-trigger:hover { color: #fff; }

.nav-dropdown-trigger::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: #e74c3c;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-trigger:hover::after { width: 100%; }

.nav-dropdown-trigger svg {
    transition: transform 0.3s;
}

.nav-dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 24px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: all 0.3s;
}

.nav-dropdown-menu a:hover {
    color: #fff;
    background: rgba(231,76,60,0.08);
    padding-left: 30px;
}

/* Mobile Nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 28px; height: 1px;
    background: #fff; margin: 7px 0;
    transition: all 0.3s;
}

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

@media (max-width: 922px) {
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .navbar { padding: 20px 0; }

    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 28px 24px;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 12px;
        gap: 0;
        align-items: stretch;
    }

    .nav-links.open .nav-link,
    .nav-links.open .nav-dropdown-trigger {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 13px;
    }

    .nav-links.open .nav-cta {
        margin-top: 12px;
        padding: 14px 0;
        border-bottom: none;
        color: #e74c3c;
        text-align: left;
        border-bottom: 2px solid #e74c3c;
        display: inline-block;
        align-self: flex-start;
    }

    /* Mobile dropdown */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        transition: max-height 0.35s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
        padding: 0 0 8px 0;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 12px;
        color: rgba(255,255,255,0.4);
        border-radius: 0;
    }

    .nav-dropdown-menu a:hover {
        color: #fff;
        background: rgba(255,255,255,0.03);
    }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

/* ═══════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 32px;
    z-index: 998;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: rgba(231,76,60,0.15);
    border-color: rgba(231,76,60,0.4);
    color: #fff;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section { padding: 120px 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex; gap: 3px;
    margin-bottom: 20px;
    color: #f1c40f;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 14px;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(231,76,60,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #e74c3c;
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.testimonial-role {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* ── Footer ── */
.footer {
    padding: 0;
    border-top: 1px solid var(--border);
    background: #050505;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.footer-brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 300px;
}
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.footer-socials a {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}
.footer-socials a:hover {
    color: #fff;
}
.footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col a,
.footer-col p {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.5;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}
.footer-bottom a {
    color: var(--red);
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .back-to-top { bottom: 84px; right: 20px; }
    .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 36px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
