/* NEW: Redesigned Hero Section */
.exports-hero-new {
    padding: 180px 0 100px;
    margin-top: var(--header-height);
    background: linear-gradient(135deg, rgba(8, 42, 95, 0.95), rgba(13, 71, 161, 0.95));
    position: relative;
    overflow: hidden;
}

.bg-pattern-world {
    background-image: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?q=80&w=2076&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.exports-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb a:hover {
    color: var(--green);
}

.hero-breadcrumb .active {
    color: var(--green);
    font-weight: 600;
}

.exports-hero-new h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--green);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
}

.highlight-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-export {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
}

.btn-export:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(110, 193, 228, 0.5);
}

/* World Map Visualization */
.world-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.map-point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--green);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.map-india {
    top: 45%;
    left: 73%;
    background: var(--green);
}

.map-uae {
    top: 40%;
    left: 68%;
    background: var(--blue);
}

.map-usa {
    top: 40%;
    left: 25%;
    background: var(--blue);
}

.map-uk {
    top: 30%;
    left: 48%;
    background: var(--blue);
}

.map-saudi {
    top: 42%;
    left: 65%;
    background: var(--blue);
}

.map-australia {
    top: 75%;
    left: 88%;
    background: var(--blue);
}

.map-germany {
    top: 35%;
    left: 52%;
    background: var(--blue);
}

.point-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.map-point:hover .point-label {
    opacity: 1;
    top: -40px;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, var(--green), transparent);
    height: 2px;
    transform-origin: 0 0;
    z-index: 1;
    opacity: 0.6;
}

.line-india-uae {
    top: 45%;
    left: 73%;
    width: 100px;
    transform: rotate(-30deg);
}

.line-india-usa {
    top: 45%;
    left: 73%;
    width: 400px;
    transform: rotate(-80deg);
}

.line-india-uk {
    top: 45%;
    left: 73%;
    width: 250px;
    transform: rotate(-55deg);
}

.line-india-saudi {
    top: 45%;
    left: 73%;
    width: 80px;
    transform: rotate(-40deg);
}

.line-india-australia {
    top: 45%;
    left: 73%;
    width: 300px;
    transform: rotate(120deg);
}

.line-india-germany {
    top: 45%;
    left: 73%;
    width: 200px;
    transform: rotate(-50deg);
}

.floating-ship, .floating-plane {
    position: absolute;
    font-size: 2rem;
    color: white;
    animation: floatAcross 15s linear infinite;
    z-index: 3;
}

.floating-ship {
    bottom: 20px;
    left: -50px;
    animation-delay: 0s;
}

.floating-plane {
    top: 30px;
    right: -50px;
    animation-delay: 7.5s;
}

@keyframes floatAcross {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes pulse-ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

/* Global Presence Section - Existing styles remain but enhanced */
.continents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.continent-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--green);
}

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

.continent-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
}

.continent-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.country-list {
    list-style: none;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.country-list li i {
    color: var(--green);
    font-size: 0.9rem;
}

/* NEW: Enhanced Interactive Map */
.export-map-enhanced {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.map-header p {
    color: var(--text-muted);
}

.world-map-interactive {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e7f0 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(110, 193, 228, 0.3);
}

.map-region {
    position: absolute;
    border: 1px solid rgba(110, 193, 228, 0.5);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.map-region:hover {
    background: rgba(110, 193, 228, 0.1);
}

.region-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
}

.region-asia {
    top: 25%;
    left: 70%;
    width: 25%;
    height: 30%;
}

.region-europe {
    top: 20%;
    left: 50%;
    width: 20%;
    height: 25%;
}

.region-americas {
    top: 30%;
    left: 15%;
    width: 25%;
    height: 40%;
}

.region-africa {
    top: 40%;
    left: 55%;
    width: 15%;
    height: 30%;
}

.region-oceania {
    top: 65%;
    left: 85%;
    width: 15%;
    height: 20%;
}

.country-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.country-dot:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--green);
}

.country-dot::after {
    content: attr(data-country);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.country-dot:hover::after {
    opacity: 1;
    top: -40px;
}

.dot-india {
    top: 45%;
    left: 73%;
    background: var(--green);
    width: 15px;
    height: 15px;
}

.dot-uae {
    top: 40%;
    left: 68%;
}

.dot-usa {
    top: 40%;
    left: 25%;
}

.dot-uk {
    top: 30%;
    left: 48%;
}

.dot-saudi {
    top: 42%;
    left: 65%;
}

.dot-australia {
    top: 75%;
    left: 88%;
}

.dot-germany {
    top: 35%;
    left: 52%;
}

.map-connection {
    position: absolute;
    background: linear-gradient(90deg, var(--green), transparent);
    height: 2px;
    transform-origin: 0 0;
    z-index: 1;
    opacity: 0.3;
}

.conn-india-uae {
    top: 45%;
    left: 73%;
    width: 100px;
    transform: rotate(-30deg);
}

.conn-india-usa {
    top: 45%;
    left: 73%;
    width: 400px;
    transform: rotate(-80deg);
}

.map-info-panel {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.map-info-panel h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.info-content {
    margin-bottom: 20px;
    min-height: 60px;
}

.info-content p {
    color: var(--text-muted);
}

.export-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.export-stats .stat h5 {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 5px;
}

.export-stats .stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Quality Standards Section - UPDATED with certification images */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.standard-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.standard-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.standard-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.standard-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.standard-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(120, 176, 75, 0.1);
    color: var(--green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* UPDATED: Certifications with Images */
.certifications-showcase {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.certifications-showcase h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.cert-logo {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    width: 150px;
}

.cert-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cert-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 5px;
}

.cert-logo span {
    display: block;
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
}

.certification-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Export Logistics Section */
.logistics-process {
    max-width: 900px;
    margin: 50px auto;
}

.process-step {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(110, 193, 228, 0.2);
    margin-right: 30px;
    font-family: 'Montserrat', sans-serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-muted);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.shipping-options {
    margin-top: 60px;
}

.shipping-options h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-main);
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.shipping-method {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.shipping-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shipping-method i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 20px;
}

.shipping-method h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.shipping-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   EXPORT ENQUIRY FORM STYLES - ADDED
   ============================================ */

.export-enquiry {
    padding: 100px 0;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.enquiry-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 5px;
}

.benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.benefit p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.export-contacts {
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(120, 176, 75, 0.2);
    margin-bottom: 30px;
}

.export-contacts h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--green);
    font-size: 1.2rem;
    width: 20px;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.export-process-info {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--green);
}

.export-process-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.export-process-info ol {
    margin-left: 20px;
    color: var(--text-muted);
}

.export-process-info li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced Enquiry Form */
.enquiry-form-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.enquiry-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.form-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(110, 193, 228, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 25px;
}

.form-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    color: var(--green);
    font-size: 1rem;
}

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

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group label.checkbox-option {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 10px;
}

.form-group label.checkbox-option input[type="checkbox"],
.form-group label.checkbox-option input[type="radio"] {
    margin-right: 10px;
    margin-top: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(110, 193, 228, 0.2);
    border-radius: 10px;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(120, 176, 75, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4757;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    display: none;
}

/* Radio and Checkbox Groups */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    background: rgba(110, 193, 228, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.radio-option:hover {
    background: rgba(110, 193, 228, 0.2);
}

.radio-option input[type="radio"] {
    margin: 0;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    background: rgba(110, 193, 228, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    width: 100%;
}

.checkbox-option:hover {
    background: rgba(110, 193, 228, 0.1);
    transform: translateY(-2px);
}

.checkbox-option input[type="checkbox"] {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.checkbox-label i {
    color: var(--green);
    font-size: 1.1rem;
}

.terms-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed rgba(110, 193, 228, 0.3);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.file-upload-area:hover {
    border-color: var(--green);
    background: rgba(120, 176, 75, 0.05);
}

.file-upload-area i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 15px;
    opacity: 0.7;
}

.file-upload-area p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.file-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-bottom: 20px !important;
}

.btn-upload {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3);
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(110, 193, 228, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.file-item-name {
    color: var(--text-main);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 15px;
}

.file-item-remove {
    color: #ff4757;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.file-item-remove:hover {
    background: rgba(255, 71, 87, 0.1);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit {
    flex: 2;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-clear {
    flex: 1;
    padding: 16px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(110, 193, 228, 0.1);
    color: var(--text-main);
    border: 2px solid rgba(110, 193, 228, 0.3);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear:hover {
    background: rgba(110, 193, 228, 0.2);
    border-color: var(--blue);
}

.form-note {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(110, 193, 228, 0.05);
    border-radius: 8px;
}

.form-note i {
    color: var(--green);
    font-size: 1.2rem;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.success-modal {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 25px;
}

.success-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.success-modal p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.success-details {
    background: rgba(120, 176, 75, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.success-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.success-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.success-details .label {
    color: var(--text-muted);
    font-weight: 500;
}

.success-details .value {
    color: var(--text-main);
    font-weight: 600;
}

.btn-close-modal {
    background: var(--green);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-close-modal:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3);
}

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

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

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--green);
}

.toast-success {
    border-left-color: var(--green);
}

.toast-error {
    border-left-color: #ff4757;
}

.toast-info {
    border-left-color: var(--blue);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.toast-content i {
    font-size: 1.2rem;
}

.toast-success .toast-content i {
    color: var(--green);
}

.toast-error .toast-content i {
    color: #ff4757;
}

.toast-info .toast-content i {
    color: var(--blue);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Exports Page */
@media (max-width: 1200px) {
    .exports-hero-new h1 {
        font-size: 2.8rem;
    }
    
    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enquiry-content {
        gap: 40px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .exports-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .world-map-container {
        height: 400px;
    }
    
    .enquiry-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enquiry-form-container {
        position: static;
    }
    
    .standards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .exports-hero-new {
        padding: 150px 0 80px;
    }
    
    .exports-hero-new h1 {
        font-size: 2.3rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-export, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .world-map-container {
        height: 300px;
    }
    
    .floating-ship, .floating-plane {
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .step-icon {
        margin-top: 10px;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
    }
    
    .export-map-enhanced {
        padding: 25px;
    }
    
    .world-map-interactive {
        height: 300px;
    }
    
    .export-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .enquiry-form-container {
        padding: 30px 25px;
    }
    
    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit, .btn-clear {
        width: 100%;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .toast-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .exports-hero-new h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .world-map-container {
        height: 250px;
    }
    
    .continents-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-form-container {
        padding: 25px 20px;
    }
    
    .export-contacts, .export-process-info {
        padding: 20px;
    }
    
    .certification-logos {
        gap: 15px;
    }
    
    .cert-logo {
        width: 120px;
        padding: 10px;
    }
    
    .cert-logo img {
        width: 80px;
        height: 50px;
    }
    
    .export-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .export-stats .stat h5 {
        font-size: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .radio-option {
        width: 100%;
    }
    
    .form-note {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}