/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --brand-orange: #f5793b;
    --brand-charcoal: #222831;
    --brand-white: #ffffff;
    --brand-gray-light: #f9fafb;
    --brand-gray: #6b7280;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--brand-charcoal);
    background-color: var(--brand-white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Exo', sans-serif;
    color: var(--brand-charcoal);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Forms & Inputs */
input, textarea, select {
    font-family: 'Open Sans', sans-serif;
}

/* Buttons */
.btn-primary {
    background-color: #f5793b;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    background-color: #222831;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 121, 59, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #222831;
    border: 2px solid #222831;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-secondary:hover {
    background-color: #f5793b;
    border-color: #f5793b;
    color: #fff;
}




.btn-primary.btn-inactive {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}

/* Links */
a {
    color: var(--brand-orange);
    transition: color 0.3s ease;
}

a:hover {
    color: #e0682f;
}

/* Utilities */
.bg-brand-white {
    background-color: var(--brand-white);
}

.bg-brand-orange {
    background-color: var(--brand-orange);
}

.text-brand-orange {
    color: var(--brand-orange);
}

.text-brand-charcoal {
    color: var(--brand-charcoal);
}

/* Header Styles */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--brand-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
}

.nav-links a {
    color: var(--brand-charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover:not(.btn-inactive),
.nav-links a[aria-current="page"] {
    color: var(--brand-orange);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-white);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        display: block;
        border-bottom: 1px solid #f3f4f6;
    }
}

/* ─────────────────────────────────────────
   HERO MESH GRADIENT
───────────────────────────────────────── */
@keyframes meshDrift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-mesh {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff5f0 35%,
        #ffffff 55%,
        #fff8f5 75%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    animation: meshDrift 12s ease infinite;
}

/* ─────────────────────────────────────────
   FAQ SMOOTH SLIDE ACCORDION
───────────────────────────────────────── */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.25s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-content.open {
    max-height: 500px;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

.faq-icon-plus {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    color: #00aaff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

/* ─────────────────────────────────────────
   TAP TO RENT CTA PULSE (3s interval)
───────────────────────────────────────── */
@keyframes btnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,170,255,0.55); }
    50%  { box-shadow: 0 0 0 14px rgba(0,170,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,170,255,0); }
}

.btn-pulse {
    animation: btnPulse 0.6s ease-out both;
}

.faq-icon-plus.open {
    transform: rotate(45deg);
}

/* ─────────────────────────────────────────
   TAP MODAL PING RIPPLE
───────────────────────────────────────── */
@keyframes pingRipple {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.8); opacity: 0; }
}

.tap-ping {
    animation: pingRipple 1.1s ease-out infinite;
}

@keyframes cardApproach {
    0%   { transform: translateX(55px) rotate(8deg); opacity: 0.2; }
    65%  { transform: translateX(3px)  rotate(1deg); opacity: 1; }
    80%  { transform: translateX(8px)  rotate(3deg); }
    100% { transform: translateX(3px)  rotate(1deg); }
}

.card-approach {
    animation: cardApproach 1.4s cubic-bezier(0.34, 1.4, 0.64, 1) both;
    animation-delay: 0.2s;
}

/* ─────────────────────────────────────────
   FORM FOCUS STATES
───────────────────────────────────────── */
.form-body input:focus,
.form-body textarea:focus,
.form-body select:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(245,121,59,0.15);
}

/* ─────────────────────────────────────────
   FAQ ITEM — Electric Blue hover state
───────────────────────────────────────── */
.faq-item:hover {
    border-color: rgba(0,170,255,0.45) !important;
    box-shadow: 0 2px 12px rgba(0,170,255,0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nrg-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; }

/* Support Grid Tiles */
.support-card { display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; height: 100%; }



.support-card .btn-secondary { opacity: 1; transition: 0.3s ease; margin-top: auto; }
.support-card:hover .btn-secondary { background-color: #f5793b; border-color: #f5793b; color: #fff; transform: translateY(-2px); }