/* ============================================
   FLORIDA VEHICLE TRANSPORT - MAIN STYLESHEET
   Modern, bold, animated, gradient-rich
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #FF3D00;
    --primary-dark: #CC3000;
    --primary-light: #FF6B3D;
    --secondary: #0A1F44;
    --secondary-light: #1A3566;
    --accent: #FFB800;
    --accent-light: #FFD24D;
    
    --gradient-primary: linear-gradient(135deg, #FF3D00 0%, #FF6B3D 50%, #FFB800 100%);
    --gradient-secondary: linear-gradient(135deg, #0A1F44 0%, #1A3566 50%, #2D4A85 100%);
    --gradient-mesh: radial-gradient(at 20% 30%, #FF3D00 0%, transparent 50%),
                     radial-gradient(at 80% 70%, #FFB800 0%, transparent 50%),
                     radial-gradient(at 50% 100%, #0A1F44 0%, transparent 60%);
    --gradient-glow: linear-gradient(135deg, rgba(255,61,0,0.15), rgba(255,184,0,0.15));
    
    --bg: #FAFAF7;
    --bg-alt: #F0EFEA;
    --surface: #FFFFFF;
    --text: #0A1F44;
    --text-light: #4A5878;
    --text-muted: #8892B0;
    --border: rgba(10, 31, 68, 0.08);
    
    --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
    --shadow: 0 8px 32px rgba(10, 31, 68, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 61, 0, 0.25);
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --font-display: 'Bricolage Grotesque', -apple-system, sans-serif;
    --font-body: 'Bricolage Grotesque', -apple-system, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --container: 1280px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

.serif-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient-primary);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 100%;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 61, 0, 0.35);
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 61, 0, 0.45);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

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

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 184, 0, 0.4);
}

.btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ---------- TOPBAR ---------- */
.topbar {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 10px 0;
}

.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--accent); }

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-info {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-info i { margin-right: 6px; color: var(--accent); }

.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
}

.lang-switch a {
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-switch a.active {
    background: var(--primary);
    color: white;
}

.social-mini {
    display: flex;
    gap: 14px;
}

.social-mini a:hover { color: var(--accent); transform: translateY(-2px); }

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

/* ---------- HEADER ---------- */
.site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
}

.logo img { height: 48px; width: auto; }

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(255, 61, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
}

.logo-text {
    line-height: 1.1;
}

.main-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-nav a {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    transition: var(--transition-fast);
}

.main-nav a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.main-nav a.active {
    background: var(--secondary);
    color: white;
}

.header-cta { padding: 12px 22px; font-size: 0.9rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1100px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(360px, 85%);
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 6px;
        padding: 100px 28px 32px;
        box-shadow: -10px 0 50px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        align-items: stretch;
        z-index: 99;
    }
    .main-nav.open { right: 0; }
    .main-nav a { font-size: 1.1rem; padding: 14px 20px; }
    .menu-toggle { display: flex; z-index: 101; }
    .header-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: var(--secondary);
    color: white;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(255, 184, 0, 0); }
}

.hero h1 {
    color: white;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-stat {
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 16px;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 540px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 260px;
    animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
    bottom: 80px;
    right: 0;
    width: 280px;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 40px;
    width: 240px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.hero-card-2 .hero-card-icon { background: var(--accent); color: var(--secondary); }
.hero-card-3 .hero-card-icon { background: rgba(255,255,255,0.2); }

.hero-card-title {
    color: white;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.hero-card-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.hero-truck {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 320px;
    height: 220px;
    z-index: 0;
    opacity: 0.9;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 360px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- SECTIONS ---------- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.services-section {
    background: var(--bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--gradient-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 10px 24px rgba(255, 61, 0, 0.3);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-card:hover .service-link { gap: 14px; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
    background: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.how-section .section-header h2,
.how-section .section-header .eyebrow {
    color: white;
}

.how-section .eyebrow { color: var(--accent); }
.how-section .eyebrow::before { background: var(--accent); }

.how-section .section-subtitle { color: rgba(255,255,255,0.75); }

.steps-container {
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(to right, var(--accent) 50%, transparent 0%);
    background-size: 16px 2px;
    background-repeat: repeat-x;
    opacity: 0.4;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.step-card:hover .step-num {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 61, 0, 0.5);
}

.step-num i {
    font-size: 2.4rem;
    color: var(--accent);
    transition: var(--transition);
}

.step-card:hover .step-num i { color: white; }

.step-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(255, 61, 0, 0.5);
}

.step-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-grid::before { display: none; }
}
@media (max-width: 500px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- ESCROW SECTION ---------- */
.escrow-section { background: var(--bg-alt); }

.escrow-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.escrow-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background: var(--gradient-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.escrow-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.escrow-cubes {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.escrow-cube {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: cubeFloat 4s ease-in-out infinite;
}

.escrow-cube-top {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    background: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(255,61,0,0.5);
    animation: cubeFloat 4s ease-in-out infinite;
}

.escrow-cube-1 { background: linear-gradient(135deg, #a8753d, #8b5a2b); animation-delay: 0.2s; }
.escrow-cube-2 { background: linear-gradient(135deg, #c89968, #a8753d); animation-delay: 0.4s; }
.escrow-cube-3 { background: linear-gradient(135deg, #a8753d, #8b5a2b); animation-delay: 0.6s; }

@keyframes cubeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes cubeFloatTop {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

.escrow-visual h2 {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-top: 16px;
}

.escrow-content h2 {
    margin-bottom: 20px;
}

.escrow-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* Escrow steps (the visual flow with dotted lines) */
.escrow-flow {
    margin-top: 56px;
}

.escrow-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.escrow-flow-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 80px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 80'><path d='M0,40 Q200,0 400,40 T800,40' stroke='%23FF3D00' stroke-width='2' stroke-dasharray='6,8' fill='none' opacity='0.4'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 0;
}

.escrow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.escrow-step-num {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.escrow-step-num i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.escrow-step:hover .escrow-step-num {
    background: var(--primary);
    transform: scale(1.08) rotate(-5deg);
}

.escrow-step:hover .escrow-step-num i { color: white; }

.escrow-step-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(255,61,0,0.4);
}

.escrow-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.escrow-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Escrow accounts block */
.escrow-accounts {
    margin-top: 96px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.escrow-accounts::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.escrow-accounts-content { position: relative; }

.escrow-accounts-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.escrow-accounts-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.escrow-accounts-illustration {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #E6F0FF 0%, #F0E6FF 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coin-rain {
    position: absolute;
    color: #4ade80;
    animation: coinFall 3s ease-in-out infinite;
}

.coin-rain:nth-child(1) { left: 20%; top: 10%; font-size: 2rem; animation-delay: 0s; }
.coin-rain:nth-child(2) { left: 50%; top: 5%; font-size: 1.5rem; animation-delay: 0.5s; }
.coin-rain:nth-child(3) { left: 70%; top: 15%; font-size: 1.8rem; animation-delay: 1s; }
.coin-rain:nth-child(4) { left: 30%; top: 20%; font-size: 1.3rem; animation-delay: 1.5s; }

@keyframes coinFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(20px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(60px) rotate(360deg); opacity: 0; }
}

.phone-wallet {
    background: white;
    border: 4px solid var(--secondary);
    border-radius: 28px;
    width: 130px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(10,31,68,0.15);
    position: relative;
    z-index: 1;
}

.phone-wallet i { font-size: 2.5rem; color: #4ade80; }
.phone-wallet-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.escrow-shield {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(255,61,0,0.4);
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.08) rotate(-5deg); }
}

@media (max-width: 900px) {
    .escrow-intro { grid-template-columns: 1fr; gap: 40px; }
    .escrow-flow-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .escrow-flow-grid::before { display: none; }
    .escrow-accounts { grid-template-columns: 1fr; padding: 40px 28px; }
}
@media (max-width: 500px) {
    .escrow-flow-grid { grid-template-columns: 1fr; }
}

/* ---------- WHY US ---------- */
.why-section { background: var(--bg); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--surface);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255,61,0,0.3);
}

.why-card:nth-child(2) .why-icon { background: var(--gradient-secondary); box-shadow: 0 8px 20px rgba(10,31,68,0.3); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--accent), #ff8c00); box-shadow: 0 8px 20px rgba(255,184,0,0.3); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #4ade80, #16a34a); box-shadow: 0 8px 20px rgba(74,222,128,0.3); }

.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- QUOTE CALCULATOR ---------- */
.quote-section {
    background: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.25;
}

.quote-section .section-header h2,
.quote-section .section-header .eyebrow { color: white; }
.quote-section .eyebrow { color: var(--accent); }
.quote-section .eyebrow::before { background: var(--accent); }
.quote-section .section-subtitle { color: rgba(255,255,255,0.75); }

.quote-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(255,184,0,0.15);
}

.form-field input::placeholder { color: rgba(255,255,255,0.4); }

.form-field select option { background: var(--secondary); color: white; }

.transport-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.transport-option {
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.transport-option:hover { background: rgba(255,255,255,0.12); }

.transport-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255,61,0,0.4);
}

.transport-option i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
}

.transport-option span {
    font-size: 0.9rem;
    font-weight: 600;
}

.quote-result {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(255,61,0,0.15));
    border: 1px solid rgba(255,184,0,0.3);
    border-radius: var(--radius);
    text-align: center;
    display: none;
}

.quote-result.visible {
    display: block;
    animation: fadeUp 0.5s ease;
}

.quote-result-label {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.quote-result-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.quote-result-distance {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.quote-result-disclaimer {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 24px;
}

@media (max-width: 600px) {
    .quote-form-grid { grid-template-columns: 1fr; }
    .quote-card { padding: 28px 20px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 24px;
    font-family: var(--font-serif);
    font-size: 7rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author-info { line-height: 1.3; }

.testimonial-author-name {
    font-weight: 700;
    color: var(--secondary);
}

.testimonial-author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-alt); }

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.open {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- TRACKING PAGE ---------- */
.tracking-section { padding-top: 60px; }

.tracking-search-card {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto 48px;
    border: 1px solid var(--border);
}

.tracking-search-card label {
    color: var(--text);
}

.tracking-search-card .form-field input {
    background: var(--bg-alt);
    color: var(--text);
    border-color: var(--border);
    font-size: 1.1rem;
    padding: 18px 22px;
}

.tracking-search-card .form-field input::placeholder { color: var(--text-muted); }

.tracking-search-card .form-field input:focus { 
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255,61,0,0.1);
}

.tracking-result {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tracking-header {
    background: var(--gradient-secondary);
    color: white;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tracking-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.tracking-number-display {
    position: relative;
    z-index: 1;
}

.tracking-number-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.tracking-number-value {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.tracking-status-pill {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(255,61,0,0.4);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tracking-status-pill .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Tracking map */
.tracking-map-wrap {
    position: relative;
    height: 480px;
    background: #e8eef5;
}

#tracking-map { width: 100%; height: 100%; }

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    gap: 14px;
    align-items: center;
}

.map-overlay-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay-text { line-height: 1.3; }
.map-overlay-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.map-overlay-value { font-weight: 700; color: var(--secondary); font-size: 0.95rem; }

/* Custom Leaflet markers */
.truck-marker {
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    width: 48px !important;
    height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(255,61,0,0.5);
    animation: truckPulse 2s infinite;
}

@keyframes truckPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255,61,0,0.5); }
    50% { box-shadow: 0 8px 24px rgba(255,61,0,0.8), 0 0 0 12px rgba(255,61,0,0.15); }
}

.pickup-marker, .delivery-marker {
    background: white;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.9rem;
}

.delivery-marker { border-color: var(--accent); color: var(--accent); }

/* Tracking content sections */
.tracking-content { padding: 40px; }

.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tracking-info-card {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.tracking-info-card h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.tracking-info-card .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.tracking-info-card .sub {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Tracking timeline */
.tracking-timeline-section {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.tracking-timeline-section h3 {
    margin-bottom: 32px;
    font-size: 1.4rem;
}

.tracking-timeline {
    position: relative;
    padding-left: 40px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-event {
    position: relative;
    padding-bottom: 28px;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-event.current::before {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(255,61,0,0.2);
    animation: pulse 2s infinite;
}

.timeline-event-status {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-event-location {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timeline-event-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.timeline-event-time {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Progress bar */
.progress-section {
    margin: 32px 0;
    padding: 32px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-header h4 {
    font-size: 1.05rem;
    color: var(--secondary);
}

.progress-percent {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.progress-bar {
    height: 12px;
    background: var(--bg-alt);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 999px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.progress-stages span { text-align: center; font-weight: 500; }
.progress-stages span.done { color: var(--primary); font-weight: 700; }
.progress-stages span.current { color: var(--secondary); font-weight: 700; }

@media (max-width: 800px) {
    .tracking-header { grid-template-columns: 1fr; text-align: center; }
    .tracking-info-grid { grid-template-columns: 1fr; }
    .tracking-content { padding: 24px; }
    .tracking-timeline-section { padding: 24px; }
    .tracking-search-card { padding: 28px 20px; }
}

/* ---------- FOOTER CTA ---------- */
.footer-cta {
    background: var(--gradient-secondary);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-inner h3 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 6px;
}

.cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #050D24;
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 72px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: white; margin-bottom: 20px; }

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    display: inline-block;
}
.footer-col ul a:hover { color: var(--accent); transform: translateX(4px); }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-tag i { animation: heartBeat 2s infinite; }

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255,61,0,0.4);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* ---------- PAGE BANNERS ---------- */
.page-banner {
    background: var(--secondary);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.page-banner-content { position: relative; z-index: 1; }

.page-banner h1 {
    color: white;
    margin-bottom: 14px;
}

.page-banner .breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.page-banner .breadcrumb a { color: var(--accent); }
.page-banner .breadcrumb i { margin: 0 10px; opacity: 0.5; font-size: 0.7rem; }

/* ---------- FORMS - LIGHT THEME ---------- */
.form-light .form-field label { color: var(--text); }

.form-light .form-field input,
.form-light .form-field select,
.form-light .form-field textarea {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--text);
}

.form-light .form-field input::placeholder,
.form-light .form-field textarea::placeholder { color: var(--text-muted); }

.form-light .form-field input:focus,
.form-light .form-field select:focus,
.form-light .form-field textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255,61,0,0.08);
}

.form-light .form-field select option { background: white; color: var(--text); }

/* ---------- ALERTS ---------- */
.alert {
    padding: 16px 22px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #15803d;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}

.alert i { font-size: 1.2rem; margin-top: 2px; }

/* ---------- ABOUT / GENERIC CONTENT ---------- */
.content-section { padding: 80px 0; }

.content-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.content-text h2 { margin-bottom: 20px; }
.content-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-text h3 {
    margin: 32px 0 12px;
    color: var(--secondary);
}

.content-image {
    position: sticky;
    top: 100px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    background: var(--gradient-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.content-image i { position: relative; z-index: 1; opacity: 0.7; }

@media (max-width: 900px) {
    .content-layout { grid-template-columns: 1fr; }
    .content-image { aspect-ratio: 16/9; font-size: 4rem; }
}

/* ---------- ANIMATIONS ON SCROLL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.full-width { width: 100%; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
