﻿/* ============================================================
   TAILORFIT — GLOBAL STYLESHEET
   ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --space-lg: 24px;
    --radius-full: 50px;
    --space-md: 16px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --dark-bg: #ffffff;
    --white: #ffffff;
    --primary-color: #6366f1;
    --secondary-color: #4a6b5c;

    --tf-ink: #0f0e17;
    --tf-ink-soft: #3a3a4a;
    --tf-ink-muted: #6b6b80;
    --tf-surface: #ffffff;
    --tf-surface-2: #f7f7fb;
    --tf-surface-3: #efeffa;
    --tf-accent: #4f46e5;
    --tf-accent-2: #7c3aed;
    --tf-accent-glow: rgba(79, 70, 229, 0.15);
    --tf-green: #10b981;
    --tf-orange: #ff7a18;
    --tf-radius: 14px;
    --tf-radius-lg: 20px;
    --tf-shadow-sm: 0 2px 8px rgba(15, 14, 23, 0.06);
    --tf-shadow-md: 0 8px 32px rgba(15, 14, 23, 0.10);
    --tf-shadow-lg: 0 20px 60px rgba(15, 14, 23, 0.14);
    --tf-font-display: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    --tf-font-body: 'DM Sans', 'Segoe UI', sans-serif;
    --tf-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── GLOBAL ──────────────────────────────────────────────── */
body {
    margin: 0;
    font-family: var(--tf-font-body);
    color: var(--tf-ink);
    background: var(--tf-surface);
}

/* ── PAGE OFFSET (IMPORTANT FOR FIXED HEADER) ───────────── */
.page-content {
    /*padding-top: 90px;*/
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.main-navbar {
    height: 75px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.navbar-brand {
    font-size: 24px;
    font-family: var(--tf-font-display);
    font-weight: 800;
}

    .navbar-brand img {
        height: 45px;
        width: auto;
        object-fit: contain;
    }

/* Target the Get Started Button */
/* Update the Get Started Button size */
.nav-item .btn-primary {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    border: none !important;
    /* 1. Reduced Padding for a smaller size */
    padding: 9px 25px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    /* 3. Ensure it centers vertically in the header */
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
    /* Keep the smooth interaction */
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

    .nav-item .btn-primary:hover {
        background-color: #4338ca !important;
        transform: translateY(-1px); /* Smaller lift for a smaller button */
        box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
    }



/* ── CITY BUTTON ─────────────────────────────────────────── 
.city-btn {
    background: linear-gradient(135deg, var(--tf-accent), var(--tf-accent));
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    padding: 6px 14px;
    transition: all var(--tf-transition);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

    .city-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
    }
    */
/* Target the City Button */
.city-btn {
    background-color: #4f46e5; /* Subtle glass effect */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 9999px !important; /* Perfect Pill Shape */
    padding: 8px 20px !important;
    font-size: 15px !important; /* Matches common nav link size */
    font-weight: 600 !important; /* Makes it bolder and more readable */
    transition: all 0.2s ease-in-out !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
}

    .city-btn:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        border-color: #4f46e5 !important; /* Glows with your brand color */
    }

/* ── CITY DROPDOWN ───────────────────────────────────────── */
.city-dropdown-menu {
    width: 260px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

    .city-dropdown-menu input {
        border-radius: 8px;
    }

.scrollable-menu {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* --- CITY BUTTON HOVER FIX --- */

/* 1. Target the button in all states: hover, focus (clicked), and active (dropdown open) */
.city-btn,
.city-btn:hover,
.city-btn:focus,
.city-btn:active,
.btn.city-btn.show {
    background-color: #5d3df3 !important; /* Forces the purple background */
    color: #ffffff !important; /* Forces white text */
    border: none !important;
    box-shadow: none !important; /* Removes any default grey/blue glow */
    outline: none !important;
}

    /* 2. Ensure the icon stays yellow even on hover */
    .city-btn:hover i,
    .btn.city-btn.show i {
        color: #ffc107 !important;
    }

/* --- HOVER DROPDOWN FIX --- */

/* 1. Show the menu when the parent is hovered */
.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* Ensures no gap so the menu doesn't disappear when moving mouse down */
}

/* 2. Optional: Add a slight fade-in effect for a smoother feel */
.dropdown-menu {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Form Container Styling */
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 450px;
    font-family: 'Inter', sans-serif; /* Modern, clean font */
}

/* 2. Headline Styling */
h2 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

p.subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* 3. Input Field Styling */
input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    outline: none;
    background-color: #f9fafb;
}

    /* 4. Brand Highlight on Focus */
    input:focus {
        border-color: #4f46e5; /* Your brand color */
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); /* Soft brand glow */
    }

/* 5. The "Start Free Trial" Button */
/* 1. Target the correct class from your HTML */
.trial-btn {
    background-color: #4f46e5 !important; /* Your brand color */
    color: #ffffff !important; /* White text */
    /* 2. The "Pill" Shape & Sizing */
    border-radius: 9999px !important; /* Perfect pill shape */
    padding: 14px 28px !important; /* Modern, airy padding */
    width: 100%; /* Matches the input fields */
    /* 3. Modern Typography */
    font-weight: 600 !important;
    font-size: 16px !important;
    border: none !important;
    /* 4. Layout for the Arrow */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px; /* Space between text and → */
    /* 5. Depth (Indigo Glow) */
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

    /* 6. Interaction State */
    .trial-btn:hover {
        background-color: #4338ca !important; /* Darker indigo on hover */
        transform: translateY(-2px); /* Lifts up slightly */
        box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
    }

    .trial-btn:active {
        transform: translateY(0);
    }


/* ── NAV LINKS ───────────────────────────────────────────── */
.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color var(--tf-transition);
}

    .nav-link:hover {
        color: var(--tf-accent) !important;
    }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    background: var(--tf-accent);
    border: none;
    font-family: var(--tf-font-display);
    font-weight: 700;
    border-radius: 10px;
    transition: background var(--tf-transition), transform var(--tf-transition), box-shadow var(--tf-transition);
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.30);
}

    .btn-primary:hover {
        background: var(--tf-accent-2);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(79, 70, 229, 0.40);
    }

/* ── FOOTER ──────────────────────────────────────────────── */
/*.footer {
    background: #f9fafc;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

    .footer h2 {
        font-family: var(--tf-font-display);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer h4 {
        font-family: var(--tf-font-display);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer p {
        color: #666;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 10px;
        }

            .footer ul li a {
                text-decoration: none;
                color: #666;
                transition: color var(--tf-transition);
            }

                .footer ul li a:hover {
                    color: var(--tf-accent);
                }*/

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-bg);
    color: black;
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
    margin-bottom: var(--space-xl);
}

.footer-brand h3 {
    color: black;
    font-size: 28px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.692);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: var(--transition-normal);
    }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

.footer-links h4,
.footer-contact h4,
.newsletter h4 {
    color: black;
    margin-bottom: var(--space-lg);
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    transition: var(--transition-normal);
}

    .footer-links a:hover {
        color: rgb(0, 0, 0);
        padding-left: 4px;
    }

.footer-contact p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.newsletter form {
    display: flex;
    margin-top: var(--space-md);
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    background: rgba(0, 0, 0, 0.1);
    color: var(--white);
}

    .newsletter input::placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

.newsletter button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.241);
    padding-top: var(--space-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ── SOCIAL ICONS ────────────────────────────────────────── */
.social-icons a {
    margin-right: 12px;
    font-size: 18px;
    color: #4a4a4a;
    transition: color var(--tf-transition);
}

    .social-icons a:hover {
        color: var(--tf-accent);
    }

/* ── FOOTER BOTTOM ───────────────────────────────────────── */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: var(--tf-font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    opacity: 1.0;
    margin-bottom: 25px;
    color: #f8b514;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*
.cta-btn {
    background: white;
    color: var(--tf-accent);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: background var(--tf-transition), color var(--tf-transition);
}

    .cta-btn:hover {
        background: #ebebff;
        color: var(--tf-accent-2);
    }
*/
.cta-btn {
    /* 1. The Pill Shape */
    border-radius: 9999px !important; /* Use a very large number for a perfect pill shape */
    /* 2. Colors & Style */
    background-color: #ffffff !important;
    color: #4f46e5 !important; /* Your brand color for the text */
    /* 3. Sizing (Adjusted to look like the image) */
    padding: 10px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* 4. Text & Border */
    font-weight: 700 !important;
    font-size: 15px !important;
    border: none !important;
    text-decoration: none !important;
    /* 5. Modern Interaction */
    cursor: pointer;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    /* Hover effect to keep it interactive */
    .cta-btn:hover {
        background-color: #f8fafc !important; /* Extremely light gray */
        transform: scale(1.03); /* Subtle pop effect */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }



/* ============================================================
   INDEX PAGE — CITY / PRODUCT LANDING
   ============================================================ */

/* ── Breadcrumbs ─────────────────────────────────────────── */
.tf-breadcrumbs {
    background: var(--tf-surface-2);
    border-bottom: 1px solid #e8e8f0;
    padding: 12px 0;
}

    .tf-breadcrumbs .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .tf-breadcrumbs ol {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .tf-breadcrumbs li {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
        color: var(--tf-ink-muted);
    }

    .tf-breadcrumbs a {
        color: var(--tf-accent);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--tf-transition);
    }

        .tf-breadcrumbs a:hover {
            color: var(--tf-accent-2);
        }

    .tf-breadcrumbs .sep {
        color: #c4c4d4;
        font-size: 12px;
    }

/* ── Hero ────────────────────────────────────────────────── */
.tf-hero {
    background: linear-gradient(135deg, #fafafa 0%, #f0efff 50%, #faf5ff 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

    .tf-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -120px;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tf-hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -80px;
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(79, 70, 229, 0.10) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tf-hero .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 1;
    }

.tf-hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
}

/* Hero Badge */
.tf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #e0deff;
    color: var(--tf-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--tf-shadow-sm);
}

    .tf-hero-badge .dot {
        width: 6px;
        height: 6px;
        background: var(--tf-accent);
        border-radius: 50%;
        animation: tf-pulse 2s infinite;
    }

@keyframes tf-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* Hero H1 */
.tf-hero-h1 {
    font-family: var(--tf-font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--tf-ink);
    letter-spacing: -0.02em;
}

/* Hero Sub */
.tf-hero-sub {
    font-size: 17px;
    color: var(--tf-ink-soft);
    line-height: 1.65;
    margin: 0 0 32px;
    font-weight: 400;
    max-width: 520px;
}

/* Hero CTA Buttons */
.tf-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tf-accent);
    color: white;
    font-family: var(--tf-font-display);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--tf-transition), transform var(--tf-transition), box-shadow var(--tf-transition);
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
}

    .tf-btn-primary:hover {
        background: var(--tf-accent-2);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(79, 70, 229, 0.45);
        color: white;
        text-decoration: none;
    }

.tf-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--tf-ink);
    font-family: var(--tf-font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1.5px solid #d8d8e8;
    text-decoration: none;
    transition: border-color var(--tf-transition), box-shadow var(--tf-transition), transform var(--tf-transition), color var(--tf-transition);
    box-shadow: var(--tf-shadow-sm);
}

    .tf-btn-outline:hover {
        border-color: var(--tf-accent);
        box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
        transform: translateY(-2px);
        color: var(--tf-accent);
        text-decoration: none;
    }

/* Hero Stats */
.tf-hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.tf-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-stat-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: var(--tf-shadow-sm);
    flex-shrink: 0;
}

.tf-stat-text strong {
    display: block;
    font-family: var(--tf-font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--tf-ink);
    line-height: 1.1;
}

.tf-stat-text span {
    font-size: 12px;
    color: var(--tf-ink-muted);
    font-weight: 500;
}

/* Hero Form Card */
.tf-hero-card {
    background: white;
    border-radius: var(--tf-radius-lg);
    box-shadow: var(--tf-shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 28px 28px 24px;
    position: relative;
}

    .tf-hero-card::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 28px;
        right: 28px;
        height: 3px;
        background: linear-gradient(90deg, var(--tf-accent), var(--tf-accent-2));
        border-radius: 0 0 4px 4px;
    }

    .tf-hero-card h3 {
        font-family: var(--tf-font-display);
        font-weight: 700;
        font-size: 17px;
        margin: 0 0 4px;
        color: var(--tf-ink);
    }

.tf-card-sub {
    font-size: 13px;
    color: var(--tf-ink-muted);
    margin: 0 0 20px;
}

/* Lead Form */
.tf-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tf-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .tf-form-group label {
        font-size: 12px;
        font-weight: 600;
        color: var(--tf-ink-soft);
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .tf-form-group input {
        padding: 10px 13px;
        border: 1.5px solid #e4e4f0;
        border-radius: 9px;
        font-family: var(--tf-font-body);
        font-size: 14px;
        color: var(--tf-ink);
        background: var(--tf-surface-2);
        transition: border-color var(--tf-transition), box-shadow var(--tf-transition);
        outline: none;
        width: 100%;
        box-sizing: border-box;
    }

        .tf-form-group input:focus {
            border-color: var(--tf-accent);
            box-shadow: 0 0 0 3px var(--tf-accent-glow);
            background: white;
        }

        .tf-form-group input::placeholder {
            color: #b0b0c4;
        }

.tf-form-submit {
    padding: 13px;
    background: var(--tf-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--tf-font-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--tf-transition), transform var(--tf-transition), box-shadow var(--tf-transition);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.30);
    margin-top: 4px;
    width: 100%;
}

    .tf-form-submit:hover {
        background: var(--tf-accent-2);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.40);
    }

    .tf-form-submit:disabled {
        opacity: 0.7;
        transform: none;
        cursor: not-allowed;
    }

.tf-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--tf-ink-muted);
    flex-wrap: wrap;
    margin-top: 2px;
}

    .tf-form-note span {
        display: flex;
        align-items: center;
        gap: 3px;
    }

        .tf-form-note span::before {
            content: '✓';
            color: var(--tf-green);
            font-weight: 700;
            font-size: 11px;
        }

.tf-form-message {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: none;
    margin-top: 4px;
}

    .tf-form-message.success {
        background: #ecfdf5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }

    .tf-form-message.error {
        background: #fef2f2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }

/* ── Trust Strip ─────────────────────────────────────────── */
.tf-trust-strip {
    background: var(--tf-ink);
    padding: 18px 0;
}

    .tf-trust-strip .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

.tf-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tf-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 500;
}

    .tf-trust-item .icon {
        font-size: 18px;
    }

    .tf-trust-item strong {
        color: white;
        font-weight: 700;
    }

.tf-trust-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Main Content Layout ─────────────────────────────────── */
.tf-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.tf-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

/* ── Section Base ────────────────────────────────────────── */
.tf-section {
    margin-bottom: 52px;
}

.tf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tf-accent);
    margin-bottom: 10px;
}

    .tf-section-label::before {
        content: '';
        display: inline-block;
        width: 18px;
        height: 2px;
        background: var(--tf-accent);
        border-radius: 2px;
    }

.tf-section h2 {
    font-family: var(--tf-font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--tf-ink);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.tf-section p {
    font-size: 15.5px;
    color: var(--tf-ink-soft);
    line-height: 1.72;
    margin: 0 0 16px;
}

/* ── Features Grid ───────────────────────────────────────── */
.tf-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tf-feature-card {
    background: var(--tf-surface);
    border: 1.5px solid #ebebf5;
    border-radius: var(--tf-radius);
    padding: 22px 20px;
    transition: border-color var(--tf-transition), box-shadow var(--tf-transition), transform var(--tf-transition);
    position: relative;
    overflow: hidden;
}

    .tf-feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--tf-surface-3), transparent 60%);
        opacity: 0;
        transition: opacity var(--tf-transition);
    }

    .tf-feature-card:hover {
        border-color: #c4c0f4;
        box-shadow: 0 6px 24px rgba(79, 70, 229, 0.10);
        transform: translateY(-3px);
    }

        .tf-feature-card:hover::before {
            opacity: 1;
        }

.tf-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    position: relative;
    background: var(--tf-surface-3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tf-feature-card h3 {
    font-family: var(--tf-font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--tf-ink);
    margin: 0 0 7px;
}

.tf-feature-card p {
    font-size: 13.5px;
    color: var(--tf-ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── City Content Block ──────────────────────────────────── */
.tf-city-block {
    background: linear-gradient(135deg, #f7f7ff, #fff);
    border: 1.5px solid #e4e2fc;
    border-radius: var(--tf-radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

    .tf-city-block::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 70%);
        pointer-events: none;
    }

    .tf-city-block h2 {
        margin-bottom: 18px;
    }

/* ── About Block ─────────────────────────────────────────── */
.tf-about-block {
    background: var(--tf-surface-2);
    border-radius: var(--tf-radius-lg);
    padding: 32px;
    border: 1.5px solid #ebebf5;
}

    .tf-about-block h2 {
        margin-bottom: 16px;
    }

/* ── Sidebar ─────────────────────────────────────────────── */
.tf-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* Sidebar CTA Card */
.tf-cta-card {
    background: white;
    border: 1.5px solid #e4e4f0;
    border-radius: var(--tf-radius-lg);
    padding: 26px 24px 22px;
    box-shadow: var(--tf-shadow-md);
    position: relative;
    overflow: hidden;
}

    .tf-cta-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--tf-accent), var(--tf-accent-2));
    }

    .tf-cta-card h3 {
        font-family: var(--tf-font-display);
        font-size: 16px;
        font-weight: 800;
        color: var(--tf-ink);
        margin: 0 0 5px;
    }

.tf-cta-sub {
    font-size: 12.5px;
    color: var(--tf-ink-muted);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .tf-cta-sub span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .tf-cta-sub span::before {
            content: '✓';
            color: var(--tf-green);
            font-weight: 800;
            font-size: 11px;
        }

/* Trust Badges */
.tf-trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tf-badge-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--tf-surface-2);
    border: 1px solid #e8e8f0;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--tf-ink-soft);
}

/* Related Cities */
.tf-related-cities {
    background: white;
    border: 1.5px solid #ebebf5;
    border-radius: var(--tf-radius);
    padding: 20px;
}

    .tf-related-cities h4 {
        font-family: var(--tf-font-display);
        font-size: 13px;
        font-weight: 700;
        color: var(--tf-ink-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 14px;
    }

    .tf-related-cities ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .tf-related-cities li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 12px;
        border-radius: 9px;
        text-decoration: none;
        color: var(--tf-ink-soft);
        font-size: 14px;
        font-weight: 500;
        transition: background var(--tf-transition), color var(--tf-transition), border-color var(--tf-transition);
        border: 1px solid transparent;
    }

        .tf-related-cities li a:hover {
            background: var(--tf-surface-3);
            color: var(--tf-accent);
            border-color: #dddcf8;
        }

.tf-city-state-tag {
    font-size: 11px;
    color: var(--tf-ink-muted);
    background: var(--tf-surface-2);
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .tf-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tf-hero-card {
        max-width: 460px;
    }

    .tf-content-grid {
        grid-template-columns: 1fr;
    }

    .tf-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .city-btn {
        margin-top: 10px;
    }

    .navbar-collapse {
        background: white;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .nav-link {
        padding: 10px 0;
    }

    .btn-primary {
        width: 100%;
    }

    .tf-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tf-hero {
        padding: 48px 0 40px;
    }

    .tf-features-grid {
        grid-template-columns: 1fr;
    }

    .tf-form-row {
        grid-template-columns: 1fr;
    }

    .tf-trust-inner {
        gap: 20px;
    }

    .tf-trust-divider {
        display: none;
    }

    .tf-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .tf-city-block,
    .tf-about-block {
        padding: 22px 18px;
    }

    .tf-main {
        padding: 40px 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-banner {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .tf-hero-cta {
        flex-direction: column;
    }

    .tf-btn-primary,
    .tf-btn-outline {
        text-align: center;
        justify-content: center;
    }
}
/* Footer Layout Fix */
.footer .row {
    display: flex;
    justify-content: space-between;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li a {
        display: block;
        line-height: 1.6;
        margin-bottom: 8px;
        text-decoration: none;
        color: inherit;
        /* This prevents the long text from breaking the layout */
        white-space: normal;
        max-width: 180px;
    }
