/* ==========================================================
   AJVA MOTORS - INTERNATIONAL EXPORT LANDING PAGES STYLING (REV 2)
   ========================================================== */

/* Exporter Breadcrumb (Light Bar) */
.exporter-breadcrumb-wrapper {
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
}

.exporter-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.exporter-breadcrumb a {
    color: #444444;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.exporter-breadcrumb a:hover {
    color: #ec6102;
    text-decoration: underline;
}

.exporter-breadcrumb span {
    color: #888888;
    font-weight: 600;
    font-size: 14px;
}

/* Page Layout Wrappers */
.exporter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.exporter-section {
    padding: 80px 0;
}

.exporter-section--gray {
    background-color: #fafafa;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

/* Typography & Titles */
.exporter-title-area {
    margin-bottom: 45px;
    position: relative;
}

.exporter-title-area h2 {
    color: #0f1628;
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 12px;
}

.exporter-title-area .underline {
    display: block;
    width: 60px;
    height: 4px;
    background: #ec6102;
    margin-top: 8px;
    border-radius: 2px;
}

/* Grid Hero Section (Light Theme with Engineering Grid Lines) */
.exporter-grid-hero {
    background-color: #ffffff;
    background-size: 36px 36px;
    background-image: 
        linear-gradient(to right, rgba(236, 97, 2, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(236, 97, 2, 0.035) 1px, transparent 1px);
    position: relative;
    border-bottom: 1px solid #f2f2f2;
    overflow: hidden;
    padding: 60px 0 80px 0;
}

.exporter-grid-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0) 10%, rgba(255,255,255,0.95) 75%);
    pointer-events: none;
}

.exporter-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.exporter-hero-content {
    flex: 1.2;
    max-width: 650px;
}

.exporter-hero-content h1 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 800;
    color: #0f1628;
    margin-bottom: 20px;
}

.exporter-hero-content h1 span {
    color: #ec6102;
}

.exporter-hero-lead {
    font-size: 18px;
    line-height: 28px;
    color: #555555;
    font-weight: 500;
    margin-bottom: 30px;
}

.exporter-hero-bullets {
    margin-bottom: 35px;
    padding-left: 0;
    list-style: none;
}

.exporter-hero-bullets li {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.exporter-hero-bullets li i {
    color: #ec6102;
    font-size: 18px;
}

.exporter-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Button Treatment */
.btn-exporter {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-exporter--orange {
    background-color: #ec6102;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(236, 97, 2, 0.15);
}

.btn-exporter--orange:hover {
    background-color: #d15200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 97, 2, 0.3);
}

.btn-exporter--dark {
    background-color: #0f1628;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(15, 22, 40, 0.1);
}

.btn-exporter--dark:hover {
    background-color: #202c4b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 22, 40, 0.2);
}

/* Bilateral Country-India Flag Emblem */
.exporter-hero-emblem {
    flex: 0.8;
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-emblem-wrap {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

.svg-emblem-wrap:hover {
    transform: translateY(-5px);
    border-color: #ec6102;
    box-shadow: 0 20px 45px rgba(236, 97, 2, 0.1);
}

.svg-emblem-wrap svg {
    width: 100%;
    height: auto;
}

/* Interactive Accordion & Cards Grid */
.exporter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.exporter-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shimmer Highlight Effect on Hover */
.exporter-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(236, 97, 2, 0.03) 30%, rgba(236, 97, 2, 0.08) 50%, rgba(236, 97, 2, 0.03) 70%, transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.exporter-card:hover::after {
    opacity: 1;
    transform: translate(50%, 50%) rotate(45deg);
}

.exporter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #ec6102;
}

.exporter-card-icon {
    font-size: 36px;
    color: #ec6102;
    margin-bottom: 20px;
}

.exporter-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f1628;
    margin-bottom: 12px;
}

.exporter-card-desc {
    font-size: 15px;
    line-height: 23px;
    color: #555555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.exporter-card-link {
    font-size: 15px;
    font-weight: 700;
    color: #ec6102;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

/* Interactive Tabs (For specific pages like Ireland) */
.exporter-tabs {
    margin-top: 30px;
}

.exporter-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.exporter-tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #555555;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.exporter-tab-btn.active {
    color: #ec6102;
    border-bottom-color: #ec6102;
}

.exporter-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.exporter-tab-content.active {
    display: block;
}

/* Spec Table (For pages like USA) */
.exporter-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border-radius: 8px;
    overflow: hidden;
}

.exporter-spec-table th, 
.exporter-spec-table td {
    padding: 16px 20px;
    text-align: left;
}

.exporter-spec-table th {
    background-color: #0f1628;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

.exporter-spec-table tr {
    border-bottom: 1px solid #eeeeee;
    background-color: #ffffff;
}

.exporter-spec-table tr:nth-child(even) {
    background-color: #fafafa;
}

.exporter-spec-table td strong {
    color: #ec6102;
}

/* Timeline Sourcing Flow */
.logistics-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.flow-node {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.flow-node-index {
    width: 36px;
    height: 36px;
    background: #ec6102;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px auto;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(236, 97, 2, 0.2);
}

.flow-node-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f1628;
    margin-bottom: 10px;
}

.flow-node-desc {
    font-size: 14px;
    line-height: 21px;
    color: #666666;
}

/* B2B Specification Box / Checklist */
.exporter-checklist {
    list-style: none;
    padding-left: 0;
}

.exporter-checklist li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.exporter-checklist li i {
    color: #34a853; /* green check */
    margin-top: 5px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #0f1628;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 15px;
    line-height: 23px;
    color: #555555;
}

.faq-question::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #ec6102;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

/* RFQ Form Sizing and Fields */
.rfq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.rfq-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rfq-full-width {
    grid-column: span 2;
}

.rfq-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-field label {
    font-size: 14px;
    font-weight: 700;
    color: #0f1628;
}

.rfq-field label span {
    color: #ec6102;
}

.rfq-field input[type="text"],
.rfq-field input[type="email"],
.rfq-field select,
.rfq-field textarea {
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rfq-field input:focus,
.rfq-field select:focus,
.rfq-field textarea:focus {
    border-color: #ec6102;
    box-shadow: 0 0 0 3px rgba(236, 97, 2, 0.1);
}

.rfq-file-upload {
    border: 2px dashed #cccccc;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    background-color: #fcfcfc;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.rfq-file-upload:hover {
    border-color: #ec6102;
}

.rfq-file-upload i {
    font-size: 28px;
    color: #666;
    margin-bottom: 8px;
}

.rfq-file-upload p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.rfq-file-upload input[type="file"] {
    display: none;
}

.rfq-form-actions {
    grid-column: span 2;
    text-align: center;
    margin-top: 15px;
}

.rfq-form-actions button {
    padding: 14px 45px;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
}

/* ==========================================================
   CSS KEYFRAMES & MICRO-ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

/* Blueprint Grid Border Line Highlights */
.grid-highlight-box {
    position: relative;
    border: 1px solid rgba(236, 97, 2, 0.15);
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
}

.grid-highlight-box::before,
.grid-highlight-box::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #ec6102;
    border-style: solid;
    pointer-events: none;
}

.grid-highlight-box::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
}

.grid-highlight-box::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
}

/* ==========================================================
   RESPONSIVE OVERRIDES
   ========================================================== */
@media (max-width: 991px) {
    .exporter-hero {
        flex-direction: column;
        text-align: center;
        padding: 10px 0 40px 0;
    }

    .exporter-hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .exporter-hero-actions {
        justify-content: center;
    }

    .exporter-hero-emblem {
        max-width: 80%;
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .exporter-hero-content h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .rfq-form {
        grid-template-columns: 1fr;
    }

    .rfq-full-width,
    .rfq-form-actions {
        grid-column: span 1;
    }

    .rfq-container {
        padding: 25px;
    }

    .exporter-title-area h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .exporter-spec-table th,
    .exporter-spec-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

/* ==========================================================
   COUNTRY / TRUST FLAGS
   ========================================================== */
.ajva-flag {
    border-radius: 3px;
    display: inline-block;
    vertical-align: -4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.ajva-flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.exporter-flag-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 10px;
}

.exporter-flag-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

/* ==========================================================
   BRAND GRID (compatible tractor/truck brands, linked to catalog)
   ========================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px 22px;
    font-size: 17px;
    font-weight: 700;
    color: #0f1628;
    text-decoration: none;
    transition: all 0.25s ease;
}

.brand-card:after {
    content: '\2192';
    color: #ec6102;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.brand-card:hover {
    border-color: #ec6102;
    box-shadow: 0 10px 25px rgba(236, 97, 2, 0.1);
    transform: translateY(-3px);
    color: #ec6102;
}

.brand-card:hover:after {
    transform: translateX(4px);
}

/* ==========================================================
   PROCESS / ORDER TIMELINE
   ========================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
    margin-top: 10px;
    counter-reset: process;
}

.process-step {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.process-step-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 14px auto;
    background: #ec6102;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.process-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f1628;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 14px;
    line-height: 21px;
    color: #666666;
}

/* ==========================================================
   CUSTOM / OEM MANUFACTURING BLOCK
   ========================================================== */
.custom-mfg-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.custom-mfg-text {
    flex: 1.2;
}

.custom-mfg-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.custom-mfg-bullets li {
    font-size: 15px;
    line-height: 24px;
    color: #444444;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.custom-mfg-bullets li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 10px;
    color: #ec6102;
    font-weight: 800;
}

.custom-mfg-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-mfg-graphic svg {
    width: 100%;
    max-width: 340px;
    height: auto;
}

@media (max-width: 767px) {
    .custom-mfg-block {
        flex-direction: column;
    }
}

/* ==========================================================
   PROPER CTA BAND (mirrors the site's existing blog-promo-banner treatment)
   ========================================================== */
.exporter-cta-band {
    background: linear-gradient(135deg, #ec6102, #ff8a3d);
    border-radius: 12px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.exporter-cta-band-text h2,
.exporter-cta-band-text p {
    color: #ffffff;
}

.exporter-cta-band-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.exporter-cta-band-text p {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
}

.exporter-cta-band .btn-exporter {
    background-color: #ffffff;
    color: #ec6102 !important;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.exporter-cta-band .btn-exporter:hover {
    background-color: #0f1628;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .exporter-cta-band {
        padding: 30px 25px;
        text-align: center;
        justify-content: center;
    }
}
