/* ============================================================
   GET NEW DOT — Stylesheet
   Mirrors MOTUS CSS variables & class patterns
   ============================================================ */

:root {
    --color-navy:    #314152;
    --color-wine:    #983d34;
    --color-grey:    #4d4d4d;
    --color-light:   #f5f5f7;
    --color-white:   #ffffff;
    --color-border:  rgba(0,0,0,0.08);
    --transition-smooth: all 0.3s ease;
    --font-primary: 'Lato', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    color: var(--color-grey);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
img { max-width: 100%; }

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
    border-bottom: 1px solid var(--color-border);
    padding: 0.875rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--color-grey);
    font-weight: 700;
    margin-top: 0.2rem;
    text-align: center;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-grey) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}
.nav-link:hover { color: var(--color-wine) !important; }

.nav-contact { text-align: right; padding-left: 1.5rem; border-left: 1px solid var(--color-border); margin-left: 1rem; }
.phone-number { font-size: 1.0625rem; font-weight: 900; color: var(--color-navy); letter-spacing: 0.5px; display: block; }
.phone-number:hover { color: var(--color-wine); }
.nav-contact-hours { font-size: 0.6rem; letter-spacing: 1px; color: var(--color-grey); font-weight: 700; line-height: 1.4; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--color-wine);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(152,61,52,0.3);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition-smooth);
}
.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.6) 0%, rgba(20,20,20,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%       { transform: translateY(-10px); opacity: 1; }
}

/* ── Intro Band ───────────────────────────────────────── */
.intro-band {
    background: var(--color-navy);
    padding: 2.5rem 0;
}

.intro-band-text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ── Section Shared ───────────────────────────────────── */
.content-section { padding: 7rem 0; }
.bg-light-grey   { background: var(--color-light); }

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--color-wine);
    margin-bottom: 1rem;
    display: block;
}
.section-eyebrow.light { color: rgba(255,255,255,0.5); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.section-title strong { font-weight: 900; }
.section-title.light  { color: var(--color-white); }

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-grey);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* ── Feature Cards ────────────────────────────────────── */
.feature-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}
.feature-text {
    font-size: 0.9375rem;
    color: var(--color-grey);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ── Dark Section ─────────────────────────────────────── */
.dark-section {
    background: var(--color-navy);
    padding: 7rem 0;
}

/* ── Process Items ────────────────────────────────────── */
.process-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.process-item:last-child { border-bottom: none; }

.process-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-wine);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.process-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ── Checklist ────────────────────────────────────────── */
.checklist { list-style: none; padding: 0; margin: 0; }

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    color: var(--color-grey);
    font-weight: 400;
    line-height: 1.5;
}
.checklist-item:last-child { border-bottom: none; }

.check-icon {
    color: var(--color-wine);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.2px;
    transition: var(--transition-smooth);
}
.faq-question:hover { color: var(--color-wine); }

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-wine);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-answer {
    padding-bottom: 1.5rem;
}
.faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-grey);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
    background: var(--color-light);
    padding: 7rem 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: var(--color-grey);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.btn-lg-cta {
    font-size: 1rem;
    padding: 1.125rem 3rem;
}

.cta-phone {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}
.cta-phone:hover { color: var(--color-wine); }

.cta-hours {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--color-grey);
    font-weight: 700;
    margin: 0;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
    background: var(--color-navy);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,0.7);
}

.footer-brand img { margin-bottom: 0.75rem; display: block;
    filter: brightness(0) saturate(100%) invert(1) sepia(1) saturate(2) hue-rotate(190deg);
}
.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-section-title {
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    font-weight: 300;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--color-white); }

.footer-division {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.3rem;
}
.footer-address p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}
.footer-links a:hover { color: var(--color-white); }

.footer-legal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-weight: 300;
}
.footer-legal p { margin-bottom: 0.5rem; }

.copyright {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

/* ── Modal ────────────────────────────────────────────── */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-navy), #253345);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.modal-header .btn-close { filter: brightness(0) invert(1); opacity: 0.7; }
.modal-header .btn-close:hover { opacity: 1; }

.modal-body {
    padding: 0;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

/* ── Animations ───────────────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s ease forwards;
}
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.25s; }
.fade-in-up:nth-child(3) { animation-delay: 0.4s; }
.fade-in-up:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 992px) {
    .nav-contact { display: none; }
    .content-section { padding: 5rem 0; }
    .dark-section { padding: 5rem 0; }
    .cta-section { padding: 5rem 0; }
}

@media (max-width: 768px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
    .process-item { flex-direction: column; gap: 0.75rem; }
    .process-number { font-size: 1.75rem; width: auto; }
    .cta-phone { font-size: 1.5rem; }
}


/* ==========================================
   TERMS PAGE SPECIFIC STYLES
   Add this to your existing motus-styles-fixed.css
   ========================================== */

/* Terms Section */
.terms-section {
    padding: 120px 0 80px;
    background: var(--color-white);
    min-height: 100vh;
}

.terms-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
}

.terms-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-wine);
}

.terms-block {
    margin-bottom: 3rem;
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.terms-subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.terms-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-grey);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.terms-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-grey);
    margin-bottom: 1rem;
}

.terms-text strong {
    font-weight: 700;
    color: var(--color-navy);
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-grey);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-main-title {
        font-size: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.25rem;
    }
    
    .terms-subsection-title {
        font-size: 1.125rem;
    }
}

