@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Modern Color Palette - 2024 Trends */
    --brand-primary: #6366f1;
    /* Indigo */
    --brand-secondary: #8b5cf6;
    /* Violet */
    --brand-accent: #06b6d4;
    /* Cyan */
    --brand-success: #10b981;
    /* Emerald */
    --brand-warning: #f59e0b;
    /* Amber */
    --brand-dark: #0f0f23;
    /* Deep Purple Navy */

    /* Backgrounds */
    --bg-main: #fefefe;
    --bg-soft: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.25);
    --bg-dark: #0f0f23;
    --bg-card: rgba(255, 255, 255, 0.8);

    /* Modern Gradients */
    --grad-main: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --grad-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --grad-surface:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Enhanced Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);

    /* Modern Radii */
    --radius-full: 9999px;
    --radius-3xl: 3rem;
    --radius-2xl: 2rem;
    --radius-xl: 1.5rem;
    --radius-lg: 1rem;
    --radius-md: 0.75rem;

    /* Smooth Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition: all 0.4s var(--ease-out);
    --transition-spring: all 0.6s var(--ease-spring);
}

/* Global Reset & Underline Fix */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--brand-dark);
    background: var(--bg-main);
    background-image: var(--grad-surface);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 60px;
    /* Space for fixed bottom strip */
}

img {
    max-width: 100%;
    height: auto;
    border-radius: inherit;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    list-style: none;
}

/* Advanced Glassmorphism Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glass);
    padding: 0.75rem 0;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

header.scrolled::before {
    opacity: 1;
}

.nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 90px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.nav-links {
    display: flex !important;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.nav-links a {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--brand-primary);
    opacity: 1;
}

/* Next-Gen Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-spring);
    border: none;
    cursor: pointer;
    gap: 0.75rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--grad-main);
    color: white;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--brand-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-image-container {
    position: relative;
}

.hero-image-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: floating 3s ease-in-out infinite alternate;
}

.stat-1 {
    top: 10%;
    left: -10%;
}

.stat-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.5s;
}

.stat-3 {
    top: 50%;
    left: -15%;
    animation-delay: 3s;
}

@keyframes floating {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-20px);
    }
}

/* Modern Service Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--grad-card);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 2.5rem;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* Modern Feature Section */
.features-dark {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1a1a3e 100%);
    border-radius: var(--radius-3xl);
    padding: 8rem;
    color: white;
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.features-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    opacity: 0.7;
}

.features-dark>* {
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.feature-item {
    text-align: center;
    transition: var(--transition-spring);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
}

/* Modern Form Styles */
.quote-card {
    background: var(--grad-card);
    backdrop-filter: blur(20px);
    padding: 4.5rem;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.5;
}

.quote-card>* {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--brand-dark);
}

.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #94a3b8;
}

/* Modern Footer */
footer {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1a1a3e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

footer>* {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-grid h4 {
    color: #e2e8f0;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-grid a {
    color: #cbd5e1;
    transition: var(--transition);
    font-weight: 500;
}

.footer-grid a:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .service-cards,
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-stat {
        display: none;
    }
}

@media (max-width: 640px) {

    .service-cards,
    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .features-dark {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }
}

/* Modern Cursor Effects */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
}

.cursor-dot {
    width: 100%;
    height: 100%;
    background: var(--brand-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-cursor.cursor-hover {
    transform: scale(2);
}

.custom-cursor.cursor-hover .cursor-dot {
    background: var(--brand-secondary);
    opacity: 0.8;
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--grad-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    z-index: 10000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.notification-success {
    border-left: 4px solid var(--brand-success);
}

.notification-success .fa-check-circle {
    color: var(--brand-success);
    font-size: 1.25rem;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .service-cards,
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .floating-stat {
        display: none;
    }

    .features-dark {
        padding: 4rem 2rem;
    }

    .quote-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.75rem;
    }

    .service-cards,
    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-dark {
        padding: 3rem 1.5rem;
        margin: 1rem;
        border-radius: var(--radius-xl);
    }

    .quote-card {
        padding: 2rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .nav-links {
        display: none;
    }

    .custom-cursor {
        display: none;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-main: #0a0a0f;
        --bg-soft: #1a1a2e;
        --brand-dark: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }

    .service-card {
        border: 2px solid var(--brand-primary);
    }
}

/* Print Styles */
@media print {

    .floating-stat,
    .custom-cursor,
    .notification {
        display: none !important;
    }

    .hero {
        padding: 2rem 0;
    }

    .features-dark {
        background: white !important;
        color: black !important;
    }
}

/* Fixed Bottom TFN Strip */
.tfn-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-dark);
    /* Using dark theme color */
    color: white;
    /* White text for contrast */
    padding: 0.75rem 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease-out;
}

.tfn-strip span.tfn-label {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tfn-strip a {
    color: var(--brand-success);
    /* Green for visibility */
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none !important;
    /* Ensure no underline */
}

.tfn-strip a:hover {
    color: white;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    /* glow effect */
}

.tfn-pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .tfn-strip {
        padding: 0.75rem;
        flex-direction: row;
        justify-content: center;
    }

    .tfn-strip span.tfn-label {
        font-size: 0.9rem;
        display: none;
        /* Hide label on smaller mobile screens if needed */
    }

    /* Show icon on mobile */
    .tfn-strip i {
        display: inline-block;
    }

    .tfn-strip a {
        font-size: 1.25rem;
    }
}

/* Responsive Global Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--brand-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Header & Menu */
@media (max-width: 1024px) {
    .nav {
        padding: 0 1rem;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    /* Override existing display:none if present */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 8rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        align-items: center;
        gap: 2.5rem;
        margin-top: 0;
        /* Reset */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand-dark);
        display: block;
        padding: 1rem;
    }

    /* Hide the desktop button container on mobile */
    .nav-actions {
        display: none !important;
    }

    /* Make sure header stays on top */
    header {
        z-index: 2001;
        /* Above toggle */
    }

    /* Mobile Home Page Fixes */
    .hero {
        padding-top: 140px;
        /* More space for header */
        padding-bottom: 4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem !important;
        /* Smaller text for mobile */
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }

    .hero-image-card {
        margin: 2rem 1rem;
    }

    .floating-stat {
        display: none !important;
        /* Explicitly hide floating stats on mobile */
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .hero-text h1 {
        font-size: 2rem !important;
    }

    .tfn-strip span.tfn-label {
        display: none;
    }

    .tfn-strip {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .tfn-strip a {
        font-size: 1.1rem;
    }
}

@media (min-width: 1025px) {
    .mobile-only-link {
        display: none !important;
    }
}

/* Quote Section Responsive Fixes */
.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-info {
        align-items: center;
        margin-bottom: 2rem;
    }

    .support-item {
        justify-content: center;
        text-align: left;
    }

    /* Enhance mobile form readability */
    .form-group label {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .quote-container {
        gap: 3rem;
    }
}