/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-top {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.logo-bottom {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1e293b;
    border-bottom-color: #1e293b;
}

/* Check Vehicle Button */
.btn-check-vehicle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2;
    transition: background 0.2s;
}

.btn-check-vehicle:hover {
    background: #1d4ed8;
}

.btn-check-vehicle svg {
    flex-shrink: 0;
}

/* Main */
main {
    flex: 1;
    padding: 40px 0;
}

/* Reports Section */
.reports-section {
    padding: 12px 0 40px;
    background: #fff;
}

.reports-header {
    text-align: center;
    margin-bottom: 20px;
}

.reports-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #93c5fd;
    border-radius: 9999px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 10px;
}

.reports-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 4px;
}

.reports-header p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 auto;
    white-space: nowrap;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.report-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 240px;
    cursor: pointer;
}

.report-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.report-card:hover img {
    transform: scale(1.05);
}

.report-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.report-content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.report-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.report-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.report-content p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    line-height: 1.4;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.report-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reports-header h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 500px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
    .reports-header h2 {
        font-size: 1.6rem;
    }
}

/* Footer */
.footer {
    background: #1a2744;
    padding: 50px 0 0;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-top {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-logo-bottom {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-contact li svg {
    flex-shrink: 0;
    color: #93c5fd;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

/* Floating Chat Button */
.chat-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, background 0.2s;
    z-index: 100;
}

.chat-float:hover {
    transform: scale(1.08);
    background: #1d4ed8;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-links ul {
        align-items: center;
    }
    .footer-contact ul {
        align-items: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-brand .footer-logo {
        flex-direction: column;
        gap: 8px;
    }
    .footer-logo-text {
        text-align: center;
    }
    .footer-tagline {
        font-size: 0.8rem;
    }
    .footer {
        padding: 40px 0 0;
    }
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hero */
.hero {
    background: #fff;
    color: #1e293b;
    padding: 60px 0;
    margin-bottom: 0px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Left Content */
.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #93c5fd;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 24px;
}

.hero-badge svg {
    color: #2563eb;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-hero:hover {
    background: #1d4ed8;
}

.hero-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 32px 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stat-icon {
    color: #2563eb;
    margin-top: 2px;
}

.stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-text strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-text span {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

/* Hero Right Image */
.hero-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.section-line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-line::after {
    content: '';
    display: block;
    border-bottom: 1px solid #334155;
    margin-top: 40px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stats-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.stats-card-dark {
    background: #1a2744;
    color: #fff;
}

.stats-card-light {
    background: #fff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 28px;
}

.stats-badge svg {
    color: #1a2744;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.stats-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: auto;
}

.stats-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-bottom svg {
    color: #cbd5e1;
}

.stats-bottom span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.stats-card-dark h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.stats-card-dark p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 28px;
}

.stats-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9999px;
    border: 1.5px solid #60a5fa;
    font-weight: 500;
    font-size: 0.9rem;
    width: fit-content;
    transition: all 0.2s;
}

.stats-btn-outline:hover {
    background: rgba(37, 99, 235, 0.15);
}

.stats-icon-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
    color: #1a2744;
}

.stats-number-dark {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2744;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-label-dark {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 28px;
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 8px;
}

.progress-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: #1a2744;
    padding: 2px 8px;
    border-radius: 4px;
}

.progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1a2744;
    border-radius: 9999px;
}

.stats-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eff6ff;
    color: #1d4ed8;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9999px;
    border: 1px solid #bfdbfe;
    font-weight: 500;
    font-size: 0.9rem;
    width: fit-content;
    transition: all 0.2s;
    margin-top: auto;
}

.stats-btn-light:hover {
    background: #dbeafe;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-card {
        min-height: auto;
    }
}

/* Services Section */
.services-section {
    padding: 50px 0 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Image */
.services-image {
    width: 100%;
}

.services-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Right Content */
.services-content {
    max-width: 540px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 20px;
}

.services-badge svg {
    color: #2563eb;
}

.services-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.25;
    margin-bottom: 18px;
}

.services-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Services List */
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.services-list svg {
    flex-shrink: 0;
    color: #c026d3;
}

/* Responsive Services */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-image {
        min-height: 300px;
    }
    .services-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .services-content h2 {
        font-size: 1.7rem;
    }
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        min-height: 300px;
        order: -1;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 500px) {
    .hero-stats {
        flex-wrap: wrap;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card h3 {
    color: #1a73e8;
    margin-bottom: 10px;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.vin-search {
    display: flex;
    gap: 10px;
}

.vin-search input {
    flex: 1;
}

/* Login Card */
.login-card {
    max-width: 400px;
    margin: 0 auto;
}

.login-hint {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #777;
}

.report-details p {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.vin-input {
    text-transform: uppercase;
}

.report-stats {
    margin-top: 20px;
}

.btn-purchase {
    margin-left: 8px;
}

/* ============================================
   ABOUT SECTION - Exact Match to Design
   ============================================ */

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left Side Images */
.about-images {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.about-img-top {
    position: relative;
    width: 82%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-img-top img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-img-bottom {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 62%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 4px solid #fff;
}

.about-img-bottom img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Floating Badge */
.about-float-badge {
    position: absolute;
    top: 50px;
    right: 25px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.about-float-badge .badge-icon {
    width: 42px;
    height: 42px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
}

.about-float-badge .badge-text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.about-float-badge .badge-text span {
    font-size: 0.78rem;
    color: #64748b;
}

/* Right Side Content */
.about-content {
    max-width: 540px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 22px;
}

.about-badge svg {
    color: #2563eb;
}

.about-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-content > p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* Vision & Mission Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-card {
    background: #1a2744;
    color: #fff;
    border-radius: 16px;
    padding: 22px;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-card-icon {
    color: #93c5fd;
    line-height: 1;
    flex-shrink: 0;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.about-card p {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.55;
}

/* About Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-images {
        max-width: 520px;
        margin: 0 auto;
        min-height: 380px;
    }
    .about-img-top img {
        height: 280px;
    }
    .about-img-bottom {
        width: 60%;
    }
    .about-img-bottom img {
        height: 190px;
    }
    .about-content {
        max-width: 100%;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .about-section {
        padding: 50px 0;
    }
    .about-cards {
        grid-template-columns: 1fr;
    }
    .about-img-top {
        width: 90%;
    }
    .about-img-bottom {
        width: 65%;
    }
    .about-float-badge {
        right: 5px;
        padding: 10px 14px;
    }
    .about-content h2 {
        font-size: 1.7rem;
    }
}
/* ============================================
   SERVICES HEADER CTA SECTION
   ============================================ */

.section-cta {
    background: #f3f4f6;
    padding: 28px 0;
}

.section-cta-cards {
    background: #fff;
    padding: 20px 0;
}

.section-cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.section-cta-left {
    max-width: 580px;
}

.section-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 14px;
}

.section-cta-badge svg {
    color: #2563eb;
}

.section-cta-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    max-width: 460px;
}

.section-cta-left p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 320px;
}

.btn-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-section-cta:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .section-cta-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .section-cta-left h2 {
        font-size: 2rem;
    }
}
/* ============================================
   SERVICES CARDS GRID
   ============================================ */

.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}

.service-card-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: #fff;
}

.service-card-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-card-content p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    margin-bottom: 8px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(37, 99, 235, 0.85);
    padding: 6px 14px;
    border-radius: 9999px;
    transition: all 0.2s;
}

.service-card-link:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        aspect-ratio: auto;
        min-height: 280px;
    }
    .service-card-content {
        padding: 20px;
    }
    .service-card-content h3 {
        font-size: 1.15rem;
    }
    .service-card-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .service-card-link {
        padding: 8px 18px;
        font-size: 0.88rem;
    }
}
/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    padding: 80px 0 30px;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Left Side */
.why-choose-left {
    background: #f1f5f9;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.why-choose-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}

.why-choose-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.why-choose-stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin: 0 12px 16px 12px;
}

.stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.stats-card-star {
    width: 36px;
    height: 36px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.stats-card-badge {
    background: #eef2ff;
    color: #6366f1;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stats-card-numbers {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-number-item span {
    font-size: 0.75rem;
    color: #64748b;
}

.why-choose-trust-banner {
    background: #6366f1;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.trust-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-right {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Right Side */
.why-choose-right {
    max-width: 540px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #93c5fd;
    border-radius: 9999px;
    padding: 8px 22px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 20px;
    width: fit-content;
    min-width: 260px;
    white-space: nowrap;
}

.why-choose-badge svg {
    color: #2563eb;
}

.why-choose-right h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1.15;
    margin-bottom: 16px;
}

.why-choose-divider {
    height: 1px;
    background: #334155;
    margin-bottom: 20px;
    max-width: 100%;
}

.why-choose-right > p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Features */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

.btn-why-choose {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s;
    margin-top: auto;
    width: fit-content;
}

.btn-why-choose:hover {
    background: #1d4ed8;
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-choose-image-wrap img {
        height: 280px;
    }
    .why-choose-right h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .why-choose-left {
        padding: 16px;
    }
    .why-choose-stats-card {
        margin: 0 4px 12px 4px;
        padding: 16px 14px;
    }
    .why-choose-right h2 {
        font-size: 1.7rem;
    }
    .feature-item {
        padding: 14px;
    }
}

/* ============================================
   OUR SERVICES SECTION
   ============================================ */

.our-services-section {
    padding: 30px 0 30px;
    background: #fff;
}

.our-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 24px;
}

.our-services-badge svg {
    color: #6366f1;
}

.our-services-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.2;
    margin-bottom: 14px;
}

.our-services-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.our-service-card {
    background: #fff;
    padding: 0;
}

.our-service-icon {
    width: 58px;
    height: 58px;
    background: #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    margin-bottom: 22px;
}

.our-service-icon svg {
    width: 28px;
    height: 28px;
}

.our-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 12px;
}

.our-service-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .our-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .our-services-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .our-services-grid {
        grid-template-columns: 1fr;
    }
    .our-services-header h2 {
        font-size: 1.7rem;
    }
}

/* Countries Section */
.countries-section {
    padding: 10px 0 50px;
    background: #fff;
    text-align: center;
}

.countries-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #93c5fd;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.country-item img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.country-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
    .country-item img {
        width: 50px;
        height: 34px;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 60px 0 40px;
    background: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #bfdbfe;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1d4ed8;
    background: #eff6ff;
    margin-bottom: 16px;
}

.contact-header-badge svg {
    color: #2563eb;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Side */
.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.contact-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.contact-info-text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.contact-info-text span {
    font-size: 0.82rem;
    color: #2563eb;
    font-weight: 500;
}

.contact-info-text small {
    font-size: 0.78rem;
    color: #64748b;
}

.contact-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.85;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.wordpress {
    background: #21759b;
}

/* Right Side Form */
.contact-right {
    max-width: 480px;
}

.contact-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-contact label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.form-group-contact input,
.form-group-contact textarea {
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: #1e293b;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group-contact input::placeholder,
.form-group-contact textarea::placeholder {
    color: #94a3b8;
}

.form-group-contact input:focus,
.form-group-contact textarea:focus {
    border-color: #2563eb;
}

.form-group-contact textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 90px;
}

.btn-contact-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-contact-send:hover {
    background: #1d4ed8;
}

.btn-contact-send svg {
    flex-shrink: 0;
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-right {
        max-width: 100%;
    }
    .contact-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-image img {
        height: 200px;
    }
    .contact-section {
        padding: 40px 0 30px;
    }
}

/* Report Detail Pages */
.report-detail-section {
    padding: 60px 0 80px;
    background: #fff;
}

.report-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.report-detail-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 12px;
}

.report-detail-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.report-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.report-detail-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.report-detail-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    transform: translateY(-4px);
}

.report-detail-card.featured {
    border-color: #93c5fd;
    background: #f8fafc;
}

.report-detail-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 20px;
}

.report-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 16px;
}

.report-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-detail-card ul li {
    font-size: 0.9rem;
    color: #475569;
    padding-left: 22px;
    position: relative;
}

.report-detail-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #eff6ff;
    border-radius: 50%;
    border: 2px solid #2563eb;
}

.report-detail-cta {
    text-align: center;
}

@media (max-width: 900px) {
    .report-detail-grid {
        grid-template-columns: 1fr;
    }
    .report-detail-header h2 {
        font-size: 1.8rem;
    }
}

/* Report Detail Pages - Pricing Design */
.report-detail-section {
    padding: 40px 0 60px;
    background: #fff;
}

.report-detail-image {
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
}

.report-detail-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.report-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.report-detail-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 8px;
}

.report-detail-header p {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    background: #1a2744;
    border-color: #1a2744;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(26, 39, 68, 0.25);
}

.pricing-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 60px rgba(26, 39, 68, 0.35);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2744;
    margin: 0 auto 16px;
}

.pricing-card.featured .pricing-icon {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 4px;
}

.pricing-card.featured h3 {
    color: #fff;
}

.pricing-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.pricing-card.featured .pricing-subtitle {
    color: #94a3b8;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2744;
    vertical-align: top;
}

.pricing-card.featured .pricing-price .currency {
    color: #fff;
}

.pricing-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2744;
}

.pricing-card.featured .pricing-price .amount {
    color: #fff;
}

.pricing-price .period {
    font-size: 0.75rem;
    color: #94a3b8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #475569;
}

.pricing-card.featured .pricing-features li {
    color: #cbd5e1;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.pricing-card.featured .pricing-btn {
    background: #fff;
    border-color: #fff;
    color: #1a2744;
}

.pricing-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.pricing-card.featured .pricing-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge svg {
    color: #2563eb;
    flex-shrink: 0;
}

.trust-badge div {
    display: flex;
    flex-direction: column;
}

.trust-badge strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2744;
}

.trust-badge span {
    font-size: 0.7rem;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .report-detail-image img {
        height: 260px;
    }
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* About Us Page */
.about-hero-section {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.about-hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-hero-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 10px;
}

.about-hero-header p {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.about-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.about-stat-icon {
    color: #2563eb;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.about-mission-section {
    padding: 30px 0;
    background: #fff;
}

.about-mission-card {
    background: #1a2744;
    border-radius: 16px;
    padding: 32px 36px;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.about-mission-card p {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.about-values-section {
    padding: 40px 0 30px;
    background: #fff;
}

.about-values-heading {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 32px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.about-value-card {
    text-align: center;
    padding: 20px;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin: 0 auto 14px;
}

.about-value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

.about-journey-section {
    padding: 20px 0 30px;
    background: #fff;
}

.about-journey-heading {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 24px;
}

.about-join-card {
    background: #dbeafe;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.about-join-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.about-join-card p {
    font-size: 0.85rem;
    color: #3b82f6;
    line-height: 1.5;
}

.about-trust-section {
    padding: 30px 0 60px;
    background: #fff;
}

@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-mission-card {
        padding: 24px;
    }
}


/* ========================================
   LEGAL / POLICY / SUPPORT PAGES
   ======================================== */

.legal-page {
    background: #fff;
    padding: 40px 0 70px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 10px;
}

.legal-header p {
    font-size: 0.9rem;
    color: #64748b;
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 12px;
}

.legal-section-text {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-list {
    color: #475569;
    line-height: 1.9;
    padding-left: 22px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.legal-list li {
    margin-bottom: 6px;
}

.legal-list strong {
    color: #334155;
}

.legal-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.legal-link:hover {
    text-decoration: underline;
}

/* Support Page — FAQ */
.faq-item {
    margin-bottom: 28px;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 10px;
}

.faq-answer {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Support Page — Contact Info */
.contact-info {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-row svg {
    flex-shrink: 0;
    color: #2563eb;
}

.contact-row span,
.contact-row a {
    color: #475569;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-row a {
    color: #2563eb;
    font-weight: 500;
}

.contact-row a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-page {
        padding: 30px 0 50px;
    }
    .legal-header h2 {
        font-size: 1.5rem;
    }
    .legal-header {
        margin-bottom: 32px;
    }
    .faq-item {
        padding: 20px 22px;
    }
    .legal-container {
        padding: 0 10px;
    }
}


/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 1px solid #e2e8f0;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: none;
    }

    .nav-links a.active {
        color: #2563eb;
    }

    .btn-check-vehicle {
        margin-left: auto;
        margin-right: 12px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .btn-check-vehicle span {
        display: none;
    }

    .btn-check-vehicle svg {
        width: 20px;
        height: 20px;
    }

    .navbar .container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .btn-check-vehicle {
        padding: 8px;
    }

    .logo-img {
        height: 40px;
    }
}

/* ========================================
   GLOBAL MOBILE FIXES
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    main {
        padding: 20px 0;
    }

    /* Hero */
    .hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero-image img {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 45%;
        min-width: 120px;
    }

    .hero-divider {
        margin: 24px 0;
    }

    /* Reports header fix: remove nowrap */
    .reports-header p {
        white-space: normal;
        font-size: 0.9rem;
    }

    .reports-header h2 {
        font-size: 1.6rem;
    }

    .reports-section {
        padding: 20px 0 30px;
    }

    /* Stats */
    .stats-section {
        padding: 40px 0;
    }

    .stats-card {
        padding: 24px;
        min-height: auto;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-card-dark h3 {
        font-size: 1.4rem;
    }

    /* Services */
    .services-section {
        padding: 30px 0 0;
    }

    .services-grid {
        gap: 30px;
    }

    .services-content h2 {
        font-size: 1.6rem;
    }

    .services-image img {
        aspect-ratio: 16 / 10;
    }

    /* CTA Section */
    .section-cta {
        padding: 20px 0;
    }

    .section-cta-left h2 {
        font-size: 1.6rem;
    }

    .btn-section-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-section {
        padding: 30px 0 20px;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-image img {
        height: 180px;
    }

    /* About */
    .about-section {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-images {
        min-height: 320px;
    }

    .about-img-top img {
        height: 220px;
    }

    .about-img-bottom img {
        height: 150px;
    }

    .about-float-badge {
        top: 20px;
        right: 5px;
        padding: 10px 12px;
    }

    .about-float-badge .badge-icon {
        width: 36px;
        height: 36px;
    }

    .about-float-badge .badge-text strong {
        font-size: 0.95rem;
    }

    .about-float-badge .badge-text span {
        font-size: 0.7rem;
    }

    /* Pricing pages */
    .report-detail-section {
        padding: 30px 0 40px;
    }

    .report-detail-header h2 {
        font-size: 1.5rem;
    }

    .report-detail-image img {
        height: 200px;
    }

    .pricing-card {
        padding: 24px 18px;
    }

    .pricing-price .amount {
        font-size: 1.8rem;
    }

    /* Report / VIN Lookup */
    .vin-search {
        flex-direction: column;
    }

    .vin-search input,
    .vin-search button {
        width: 100%;
    }

    /* Login */
    .login-card {
        margin: 0 16px;
        padding: 24px;
    }

    /* Legal pages */
    .legal-page {
        padding: 20px 0 40px;
    }

    .legal-header h2 {
        font-size: 1.5rem;
    }

    .legal-header {
        margin-bottom: 28px;
    }

    .legal-section-title {
        font-size: 1.05rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    /* Floating chat */
    .chat-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-image {
        min-height: 200px;
    }

    .reports-header h2 {
        font-size: 1.4rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .stats-card-dark h3 {
        font-size: 1.2rem;
    }

    .section-cta-left h2 {
        font-size: 1.4rem;
    }

    .contact-header h2 {
        font-size: 1.3rem;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .report-detail-header h2 {
        font-size: 1.3rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .legal-header h2 {
        font-size: 1.3rem;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-logo-top {
        font-size: 0.95rem;
    }

    .footer-logo-bottom {
        font-size: 0.82rem;
    }
}

/* Thank You Card */
.thank-you-card {
    background: #fff;
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.12);
    animation: thankYouFadeIn 0.5s ease-out;
}

@keyframes thankYouFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

.thank-you-card h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.thank-you-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
