/* MODERN BRAND PALETTE */
:root {
    --primary: #920901; 
    --primary-light: #AD1003;
    --primary-dark: #600500;
    --accent: #E58D20;  
    --accent-hover: #C6761A;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.1);
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.grid { display: grid; gap: 32px; }

/* UTILS */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-8 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-section { padding: 100px 0; }
.text-gray { color: var(--text-muted); }
.max-w-content { max-width: 800px; margin: 0 auto; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px 0 rgba(146, 9, 1, 0.39); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(146, 9, 1, 0.23); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px 0 rgba(229, 141, 32, 0.39); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(229, 141, 32, 0.23); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; }

/* HEADER & NAVIGATION */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 0;
    font-weight: 500;
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-info span { margin-right: 25px; opacity: 0.9; }

.main-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.logo-accent { color: var(--accent); font-weight: 400; }

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); position: relative; }
.nav-links a.btn { color: #fff; }
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-links a:hover:not(.btn)::after, .nav-links a.active:not(.btn)::after { width: 100%; }
.nav-links a.active:not(.btn) { color: var(--primary); }
.nav-links a.btn.active { color: #fff; }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: #fff; border-radius: var(--radius-md); padding: 12px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(15px); transition: var(--transition); list-style: none;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 15px; border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.85rem; }
.dropdown-menu a:hover { background: var(--bg-body); color: var(--primary); transform: translateX(5px); }

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #000;
    padding-top: 40px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.5;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(to top, var(--bg-body), transparent);
}
.hero-content { position: relative; z-index: 10; max-width: 700px; color: #fff; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 24px; }
.hero-usp { list-style: none; margin-bottom: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.hero-usp li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1.05rem; }
.hero-usp li svg { color: var(--accent); }

/* CARDS & CONTAINERS */
.card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); }

.fleet-grid { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }
.fleet-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition);
    display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.fleet-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img { transform: scale(1.05); }
.fleet-body { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.fleet-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.fleet-specs { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.fleet-specs li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.9rem; color: var(--text-muted); }

/* PAGE HEADERS */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%;
    background: rgba(255,255,255,0.05); transform: rotate(45deg); pointer-events: none;
}
.page-header h1 { color: #fff; font-size: 3rem; margin-bottom: 16px; }

/* TESTIMONIALS */
.testi-card {
    background: #fff; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border);
    position: relative; display: flex; flex-direction: column;
}
.testi-quote { font-size: 1.1rem; color: var(--text-main); font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-author span { font-weight: 700; color: var(--text-dark); }

/* FOOTER */
.footer { background: #0f172a; color: #94a3b8; padding: 100px 0 0; }
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; }
.footer h4 { color: #fff; margin-bottom: 30px; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-logo .logo-text { color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: inherit; }
.footer-links a:hover { color: var(--accent); padding-left: 8px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 20px; word-break: break-all; }
.footer-contact i { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 0; margin-top: 60px; font-size: 0.85rem; }

/* RESPONSIVE */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary); font-size: 1.8rem; }

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

@media (max-width: 768px) {
    .top-info { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: #fff; flex-direction: column; padding: 30px; gap: 20px;
        box-shadow: var(--shadow-lg); align-items: center;
    }
    .nav-links.show { display: flex; }
    .hero-usp { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .dropdown-menu { display: none; position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none; border: 1px solid var(--border); margin-top: 10px; }
    .dropdown:hover .dropdown-menu { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .py-section { padding: 60px 0; }
}

/* FORM STYLES */
.form-group { margin-bottom: 25px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(146, 9, 1, 0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* ANIMATIONS */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin {
    animation: spin 1s linear infinite;
}

/* DOCUMENTATION / TERMS STYLES */
.doc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.doc-sidebar {
    position: sticky;
    top: 120px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.doc-nav {
    list-style: none;
}

.doc-nav li {
    margin-bottom: 12px;
}

.doc-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.doc-nav a:hover, .doc-nav a.active {
    color: var(--primary);
    transform: translateX(5px);
}

.doc-nav i {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.doc-section {
    scroll-margin-top: 150px;
    margin-bottom: 80px;
}

.doc-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-section h2 i {
    color: var(--primary);
}

.doc-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Typography refinements */
p, li {
    line-height: 1.75;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500; }

@media (max-width: 1024px) {
    .doc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .doc-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

/* ============================================
   FLEET PAGE COMPONENTS
   ============================================ */

/* Pricing banner */
.fleet-pricing-banner {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.fleet-pricing-banner-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
}
.fleet-price-tag {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 36px;
}
.fleet-price-tag:first-child { padding-left: 0; }
.fleet-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}
.fleet-price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.fleet-price-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}
.fleet-price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.fleet-price-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* Two-column single-vehicle layout (for low-res images) */
.fleet-single-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: start;
}
.fleet-single-img-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: 340px;
}
.fleet-single-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.fleet-single-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Vehicle badge */
.fleet-vehicle-badge {
    display: inline-block;
    background: rgba(146, 9, 1, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(146, 9, 1, 0.15);
    width: fit-content;
}
.fleet-vehicle-badge-gold {
    background: rgba(229, 141, 32, 0.1);
    color: var(--accent);
    border-color: rgba(229, 141, 32, 0.2);
}
.fleet-vehicle-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}
.fleet-vehicle-desc {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
}
.fleet-vehicle-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.fleet-vehicle-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
}

/* Multi-vehicle card grid */
.fleet-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.fleet-vehicle-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.fleet-vehicle-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(146, 9, 1, 0.2);
}
.fleet-vehicle-img-wrap {
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.fleet-vehicle-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.fleet-vehicle-card:hover .fleet-vehicle-img {
    transform: scale(1.05);
}
.fleet-vehicle-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

/* Responsive fleet pages */
@media (max-width: 900px) {
    .fleet-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fleet-single-img-panel {
        height: 260px;
    }
    .fleet-pricing-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .fleet-pricing-banner-inner {
        gap: 24px;
    }
    .fleet-price-tag {
        padding: 0;
    }
    .fleet-price-divider {
        display: none;
    }
}
@media (max-width: 600px) {
    .fleet-vehicle-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   POLICY PAGE COMPONENTS
   ============================================ */

/* Key facts strip */
.policy-facts-strip {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    margin-bottom: 56px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 20px;
}
.policy-fact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}
.policy-fact-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    margin-bottom: 6px;
}
.policy-fact-icon-warn { color: var(--accent); }
.policy-fact-icon-danger { color: #c53030; }
.policy-fact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}
.policy-fact-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.policy-fact-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
}

/* Callout boxes */
.policy-callout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid;
    margin-bottom: 32px;
}
.policy-callout-info {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.policy-callout-info .policy-callout-icon { color: #1d4ed8; }
.policy-callout-warn {
    background: #fffbeb;
    border-color: #fde68a;
}
.policy-callout-warn .policy-callout-icon { color: var(--accent); }
.policy-callout-danger {
    background: #fff5f5;
    border-color: #fca5a5;
}
.policy-callout-danger .policy-callout-icon { color: #c53030; }
.policy-callout-neutral {
    background: var(--bg-body);
    border-color: var(--border);
}
.policy-callout-neutral .policy-callout-icon { color: var(--text-muted); }
.policy-callout-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.policy-callout-headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0 0 6px;
    line-height: 1.5;
}
.policy-callout-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Section heading with icon */
.policy-section-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.policy-section-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.policy-section-icon svg {
    width: 24px;
    height: 24px;
}

/* Exclusion card grid */
.policy-exclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.policy-exclusion-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}
.policy-exclusion-card:hover {
    border-color: rgba(146,9,1,0.2);
    box-shadow: var(--shadow-sm);
}
.policy-exclusion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary);
}
.policy-exclusion-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}
.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}
.policy-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.policy-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Two-column info cards */
.policy-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.policy-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-info-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}
.policy-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.policy-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Recovery list */
.policy-recovery-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}
.policy-recovery-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
}
.policy-recovery-item:last-child { border-bottom: none; }
.policy-recovery-item-highlight {
    background: #fffbeb;
}
.policy-recovery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 6px;
}
.policy-recovery-dot-accent { background: var(--accent); }

/* Sidebar CTA box */
.policy-sidebar-cta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Travel zone */
.policy-travel-zone {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}
.policy-travel-header {
    padding: 28px 32px 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.policy-compass {
    display: flex;
    gap: 0;
    padding: 32px;
}
.policy-compass-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.policy-compass-point:last-child { border-right: none; }
.policy-compass-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 4px;
}
.policy-compass-dir {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 700;
}
.policy-compass-city {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.policy-travel-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 32px;
    background: rgba(0,0,0,0.2);
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Cleaning chips */
.policy-cleaning-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.policy-cleaning-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: default;
}
.policy-cleaning-chip:hover {
    border-color: rgba(146,9,1,0.2);
    box-shadow: var(--shadow-sm);
}

/* Bottom CTA banner */
.policy-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    margin-top: 64px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

/* Responsive policy pages */
@media (max-width: 900px) {
    .policy-facts-strip {
        padding: 24px;
    }
    .policy-fact-divider { display: none; }
    .policy-two-col {
        grid-template-columns: 1fr;
    }
    .policy-compass {
        flex-direction: column;
        padding: 20px;
    }
    .policy-compass-point {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 16px 0;
    }
    .policy-compass-point:last-child { border-bottom: none; }
    .policy-cta-banner {
        flex-direction: column;
        padding: 32px 24px;
    }
}


/* ============================================
   CONTACT PAGE COMPONENTS
   ============================================ */

/* Trust strip */
.contact-trust-strip {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    margin-bottom: 56px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 16px;
}
.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 140px;
}
.contact-trust-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-trust-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.contact-trust-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.contact-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}
.contact-card:hover {
    border-color: rgba(146,9,1,0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.contact-card-primary {
    background: var(--primary-dark);
    border-color: transparent;
}
.contact-card-primary:hover {
    background: var(--primary);
    border-color: transparent;
    transform: translateY(-3px);
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-icon-muted {
    background: rgba(146,9,1,0.08);
    color: var(--primary);
}
.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-card-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}
.contact-card:not(.contact-card-primary) .contact-card-label { color: var(--text-muted); }
.contact-card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.contact-card:not(.contact-card-primary) .contact-card-value { color: var(--text-dark); }
.contact-card-hint {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.contact-card:not(.contact-card-primary) .contact-card-hint { color: var(--text-muted); }
.contact-card-arrow {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.contact-card:not(.contact-card-primary) .contact-card-arrow { color: var(--text-muted); }
.contact-card:hover .contact-card-arrow { transform: translateX(5px); }

/* What happens next timeline */
.contact-timeline {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}
.contact-timeline-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0 0 24px;
}
.contact-timeline-items { display: flex; flex-direction: column; }
.contact-timeline-item {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}
.contact-timeline-item:last-child { padding-bottom: 0; }
.contact-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.contact-timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.contact-timeline-text { padding-top: 4px; }
.contact-timeline-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.contact-timeline-text p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Form card */
.contact-form-col { position: sticky; top: 100px; }
.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contact-form-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-body);
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-col { position: static; }
}
@media (max-width: 768px) {
    .contact-trust-strip { padding: 20px 24px; }
    .contact-trust-divider { display: none; }
    .contact-form-row { grid-template-columns: 1fr; }
}
