/* MAXWELL BROKER - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
    --bg: #FFFFFF;
    --bg2: #F8FAFC;
    --bg3: #EEF2F7;
    --ink: #0F172A;
    --muted: #64748B;
    --rule: #E2E8F0;
    --accent: #0F2D5E;
    --accent2: #1E5BB5;
    --accent-light: #E8EEF7;
    --cta: #E8552A;
    --cta-hover: #D14820;
    --success: #059669;
    --warning: #D97706;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

p {
    margin-bottom: 1.2em;
}

h2, h3, h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Top Utility Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--accent);
    padding: 0.5rem 0;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 1.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link svg {
    width: 16px;
    height: 16px;
}

.top-bar-login {
    background: var(--cta);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.top-bar-login:hover {
    background: var(--cta-hover);
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 3px solid var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    box-shadow: var(--shadow);
    border-bottom-width: 2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
}

.nav.scrolled .nav-container {
    height: 64px;
}

/* Transparent Navigation for Homepage Hero */
.nav-transparent {
    background: transparent;
    border-bottom: none;
}

.nav-transparent .nav-link,
.nav-transparent .nav-dropdown-toggle {
    color: white;
}

.nav-transparent .nav-link:hover,
.nav-transparent .nav-dropdown-toggle:hover {
    color: var(--cta);
}

.nav-transparent .nav-link::after {
    background: var(--cta);
}

.nav-transparent .logo {
    color: white;
}

.nav-transparent .logo-img {
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-transparent.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--accent);
}

.nav-transparent.scrolled .nav-link,
.nav-transparent.scrolled .nav-dropdown-toggle {
    color: var(--accent);
}

.nav-transparent.scrolled .nav-link:hover,
.nav-transparent.scrolled .nav-dropdown-toggle:hover {
    color: var(--cta);
}

.nav-transparent.scrolled .logo {
    color: var(--accent);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon svg {
    width: 36px;
    height: 36px;
}

.logo-icon::before {
    display: none;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--cta);
}

.nav-link.active {
    color: var(--cta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--cta);
    transition: width 0.3s;
}

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

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: var(--cta);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

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

.nav-dropdown-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
    color: var(--cta);
}

.nav-dropdown-toggle.active {
    color: var(--cta);
}

.nav-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.nav-dropdown-item {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item:hover {
    background: var(--accent);
    color: white;
}

.nav-dropdown-item.active {
    background: var(--cta);
    color: white;
}

/* Hero Section */
.page-hero {
    padding: 120px 2rem 60px;
    background: transparent;
    color: white;
    position: relative;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--rule);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--accent2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--accent);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.card:hover .card-link svg {
    transform: translateX(4px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Buttons */
.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--cta);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 85, 42, 0.35);
}

.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--bg2);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--rule);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--bg3);
    border-color: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Stats Section */
.stats-section {
    background: var(--accent);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
}

.feature-text {
    font-size: 1rem;
    color: var(--ink);
}

.feature-text strong {
    color: var(--accent);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contact Form */
.contact-form {
    background: var(--bg2);
    padding: 2rem;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--ink);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}

.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--ink);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-select option {
    background: white;
    color: var(--ink);
    padding: 0.5rem;
}

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--ink);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
}

.social-link:hover {
    background: var(--accent2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg2);
    border-radius: var(--radius);
}

.process-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.process-title {
    font-size: 0.9rem;
    color: var(--ink);
}

/* Market Partners */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.partner-item {
    padding: 1rem;
    background: var(--bg2);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink);
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg2);
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.location-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.location-item span {
    font-weight: 600;
    color: var(--ink);
}

.location-icon {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-grid,
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--rule);
        display: block;
        color: var(--ink);
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Page Content Styles */
.page-content {
    padding: 4rem 2rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    margin-bottom: 2rem;
}

.content-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* Highlight Box */
.highlight-box {
    background: var(--bg3);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.highlight-box-title {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.data-table th,
.data-table td {
    padding: 1rem;
    border: 1px solid var(--rule);
    text-align: left;
}

.data-table th {
    background: var(--accent);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background: var(--bg2);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--bg2);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb-link {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: var(--accent2);
}

.breadcrumb-separator {
    color: var(--muted);
}

.breadcrumb-current {
    color: var(--ink);
}

/* News Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem 0;
}

.news-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--muted);
}

.news-card h3 {
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.news-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.news-link {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--accent2);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.news-link:hover {
    color: var(--cta);
}

.bg-light {
    background: var(--bg2);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.newsletter-box h2 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    max-width: 400px;
    padding: 0.875rem 1rem;
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 1rem;
}

.btn.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--cta);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        max-width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================================
   UI ENHANCEMENT: Scroll Animations
   ============================================================ */

/* Fade in up */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in right */
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   UI ENHANCEMENT: Service Card & Industry Card Shadows
   ============================================================ */

.service-card-compact {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-compact:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.industry-item {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ============================================================
   UI ENHANCEMENT: Hero Buttons Gradient & Shadow
   ============================================================ */

.btn-hero-primary {
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 35, 0.4) !important;
}

/* ============================================================
   UI ENHANCEMENT: Form Row (for contact/claims pages)
   ============================================================ */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ============================================================
   UI ENHANCEMENT: Mobile Navigation Overlay
   ============================================================ */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   UI ENHANCEMENT: Responsive Breakpoints
   ============================================================ */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
    /* Mobile nav button - larger touch target */
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(0,0,0,0.05);
        transition: background 0.2s;
    }

    .mobile-menu-btn:active {
        background: rgba(0,0,0,0.1);
    }

    .mobile-menu-btn svg {
        width: 26px;
        height: 26px;
    }

    /* Mobile menu slide from right */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: white;
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        flex-direction: column;
        gap: 0;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--rule);
        display: block;
        color: var(--ink);
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 1.5rem;
        text-align: center;
        display: block;
        width: 100%;
    }

    /* Hero mobile adjustments */
    .page-hero {
        padding: 100px 1.5rem 40px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    /* Form mobile: single column */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Form input min font size to prevent iOS zoom */
    .form-input,
    .form-select,
    textarea.form-input {
        font-size: 16px;
    }

    /* Buttons full width on mobile */
    .btn-primary,
    .btn-secondary,
    .btn-hero-primary,
    .btn.btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Service cards: 1 column on mobile */
    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    /* Industry cards: 2 columns on mobile */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* News cards: 1 column on mobile */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    /* Footer mobile: 2 columns, brand full width */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small mobile: max-width 480px */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================================
   UI ENHANCEMENT: Hero Stat Number Gradient
   ============================================================ */

.hero-stat-number {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   UI ENHANCEMENT: Team Stat Value (claims page)
   ============================================================ */

.team-stat-value {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   UI ENHANCEMENT: Testimonial Card Shadow
   ============================================================ */

.testimonial-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   UI ENHANCEMENT: Circular Card Shadow
   ============================================================ */

.circular-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   UI ENHANCEMENT: Claim Step Card Shadow
   ============================================================ */

.claim-step {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.claim-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   UI ENHANCEMENT: Contact Form Grid (claims page)
   ============================================================ */

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   UI ENHANCEMENT: Insurance Checkboxes Mobile
   ============================================================ */

@media (max-width: 768px) {
    .insurance-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   UI ENHANCEMENT: Partner Logo & Market Location Hover
   ============================================================ */

.partner-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.market-location {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-location:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   UI ENHANCEMENT v2: Global Enhancements
   ============================================================ */

/* Selection color */
::selection {
    background: rgba(232, 85, 42, 0.25);
    color: var(--ink);
}

::-moz-selection {
    background: rgba(232, 85, 42, 0.25);
    color: var(--ink);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--accent2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent2) var(--bg2);
}

/* Page content fade-in on load */
body {
    animation: pageContentFadeIn 0.4s ease forwards;
}

@keyframes pageContentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Image loading shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

img {
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out;
}

img[src] {
    background: none;
    animation: none;
}

/* ============================================================
   UI ENHANCEMENT v2: Service Cards Enhancement
   ============================================================ */

.service-card-compact {
    position: relative;
    overflow: hidden;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.service-card-compact img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card-compact:hover::after {
    opacity: 1;
}

.service-card-compact:hover img {
    transform: scale(1.05);
}

.service-card-compact:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* "Learn More" slide-up on hover for service-card-compact */
.service-card-compact .service-link-compact {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   UI ENHANCEMENT v2: Card (generic) Enhancement
   ============================================================ */

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card .card-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.card:hover::after {
    opacity: 1;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card .card-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   UI ENHANCEMENT v2: Hero Section Improvements
   ============================================================ */

/* Home hero animated gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.55) 0%, rgba(0, 102, 204, 0.40) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Parallax-like effect for hero backgrounds */
.hero-bg-image {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Product detail pages hero: gradient overlay for text readability */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 204, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    z-index: 0;
    pointer-events: none;
}

/* Product hero specific */
.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    z-index: 0;
    pointer-events: none;
}

/* Wave SVG overlay for page heroes */
.page-hero-bg {
    z-index: -1;
}

/* ============================================================
   UI ENHANCEMENT v2: Section Headers Enhancement
   ============================================================ */

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cta), #FF8C5A);
    border-radius: 2px;
}

/* Section headers fade in from bottom on scroll */
.section-header.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UI ENHANCEMENT v2: Claims Step Cards Enhancement
   ============================================================ */

.claim-step {
    position: relative;
}

.claim-step-number {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, var(--cta) 0%, #FF8C5A 100%) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(232, 85, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.claim-step:hover .claim-step-number {
    animation: badgePulse 0.6s ease;
    box-shadow: 0 6px 20px rgba(232, 85, 42, 0.4);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Connecting dotted lines between claim steps */
.claims-steps {
    position: relative;
}

.claims-steps .claim-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: calc(100% / var(--steps-cols, 6) * 0.5);
    height: 0;
    border-top: 2px dashed rgba(0, 0, 0, 0.12);
    pointer-events: none;
    z-index: 1;
}

/* Claims process cards (claims page) */
.claims-process-number {
    background: linear-gradient(135deg, var(--cta) 0%, #FF8C5A 100%) !important;
    box-shadow: 0 4px 15px rgba(232, 85, 42, 0.3);
    color: white !important;
}

.claims-process-card:hover .claims-process-number {
    animation: badgePulse 0.6s ease;
    box-shadow: 0 6px 20px rgba(232, 85, 42, 0.4);
}

/* ============================================================
   UI ENHANCEMENT v2: Testimonial Cards Enhancement
   ============================================================ */

.testimonial-card {
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--cta) !important;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 8rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(232, 85, 42, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

/* ============================================================
   UI ENHANCEMENT v2: News/Insights Cards Enhancement
   ============================================================ */

.news-card {
    position: relative;
    overflow: hidden;
}

.news-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Category badge styling */
.news-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta) 0%, #FF8C5A 100%);
    color: white !important;
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Date badge overlay on news images */
.news-card img {
    position: relative;
}

/* ============================================================
   UI ENHANCEMENT v2: Industries Section Enhancement
   ============================================================ */

.industry-item .industry-icon-small {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover .industry-icon-small {
    transform: scale(1.15);
    animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.2);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1.15);
    }
}

.industry-item:hover {
    background: linear-gradient(135deg, #E8F0F8 0%, #F0F4FA 100%) !important;
}

/* ============================================================
   UI ENHANCEMENT v2: Footer Enhancement
   ============================================================ */

.footer {
    background: linear-gradient(180deg, #0a1628 0%, #0F172A 40%, #162033 100%) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cta), var(--accent2), var(--cta));
}

/* Footer link hover: slide right with orange indicator */
.footer-links a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--cta);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 12px;
}

.footer-links a:hover::before {
    height: 100%;
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cta) 0%, #FF8C5A 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(232, 85, 42, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 85, 42, 0.5);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   UI ENHANCEMENT v2: Form Enhancement
   ============================================================ */

/* Floating label effect */
.form-group {
    position: relative;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input.filled ~ .form-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--cta);
    background: var(--bg);
    padding: 0 0.25rem;
}

/* Improved select dropdown */
.form-select {
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-select:hover {
    border-color: var(--accent2);
}

.form-select:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(232, 85, 42, 0.15);
}

/* Success state */
.form-input.success,
.form-select.success {
    border-color: var(--success);
}

.form-input.success:focus,
.form-select.success:focus {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Error state */
.form-input.error,
.form-select.error {
    border-color: #DC2626;
}

.form-input.error:focus,
.form-select.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Submit button gradient */
.btn-primary[type="submit"],
.contact-form .btn-primary,
.btn.btn-primary[type="submit"] {
    background: linear-gradient(135deg, var(--cta) 0%, #FF8C5A 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary[type="submit"]::before,
.contact-form .btn-primary::before,
.btn.btn-primary[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary[type="submit"]:hover::before,
.contact-form .btn-primary:hover::before,
.btn.btn-primary[type="submit"]:hover::before {
    left: 100%;
}

.btn-primary[type="submit"]:hover,
.contact-form .btn-primary:hover,
.btn.btn-primary[type="submit"]:hover {
    background: linear-gradient(135deg, var(--cta-hover) 0%, var(--cta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 85, 42, 0.35);
}

/* ============================================================
   UI ENHANCEMENT v2: Mobile Responsive Additions
   ============================================================ */

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .testimonial-card::before {
        font-size: 5rem;
        top: -5px;
        right: 10px;
    }

    .section-title::after {
        width: 40px;
    }

    /* Hide connecting lines on mobile for claim steps */
    .claims-steps .claim-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title::after {
        width: 30px;
    }
}