/* Custom Properties / Variables */
:root {
    --primary-color: #0A2540; /* Deep Medical Blue */
    --secondary-color: #00D4FF; /* Trust Teal/Cyan */
    --accent-color: #4CAF50; /* Nature Green */
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #F4F7F6;
    --bg-dark: #0A2540;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3 {
    color: var(--white);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

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

.btn-primary-sm {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary-sm:hover {
    background-color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 45px;
    width: auto;
    border-radius: 5px; /* In case the logo has sharp edges */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero_pharma_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Section Utilities */
.section-title {
    margin-bottom: 3rem;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.underline-left {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 1rem 0;
    border-radius: 2px;
}

/* Feature Lists */
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.dark-list i {
    color: var(--accent-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Global Presence */
.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.global-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.office-box {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.office-box h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Business Model */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.model-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.model-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefits-banner {
    background: linear-gradient(135deg, var(--primary-color), #1A3A5F);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.benefit-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.benefit-items span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-items i {
    color: var(--secondary-color);
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Product Showcase Section */
.showcase-marquee-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    background: var(--white);
    position: relative;
    display: flex;
    align-items: center;
}

.showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-marquee-container:hover .showcase-btn {
    opacity: 1;
}

.showcase-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.left-btn {
    left: 20px;
}

.right-btn {
    right: 20px;
}

.showcase-marquee-container::before,
.showcase-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.showcase-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.showcase-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.showcase-marquee {
    display: flex;
    gap: 2rem;
    width: 100%;
    overflow-x: auto;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.showcase-marquee::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 37, 64, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-item:hover::after {
    opacity: 1;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    z-index: -1;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.mv-card ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.vision-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
}

/* Leadership */
.directors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.director-card {
    background: var(--bg-light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    align-items: stretch;
}

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

.director-img-large {
    width: 35%;
    flex-shrink: 0;
}

.director-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.director-content {
    padding: 4rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 212, 255, 0.2);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.director-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.director-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.director-info span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.associate-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
}

.associate-card .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-row {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-form-group label {
    color: var(--white) !important;
}

.dark-form-group input,
.dark-form-group textarea {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dark-form-group input::placeholder,
.dark-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.dark-form-group input:focus,
.dark-form-group textarea:focus {
    border-bottom-color: var(--secondary-color) !important;
}

/* Footer */
footer {
    background: #061626;
    color: var(--white);
    padding: 2rem 0;
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Contact Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 900px;
    max-width: 95%;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-left {
    background: #4cc089;
    color: var(--white);
    padding: 3rem;
    width: 40%;
}

.modal-left h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-left p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.modal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.modal-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.modal-right {
    padding: 3rem;
    width: 60%;
}

.modal-right h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    background: transparent;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #4cc089;
}

.modal-submit {
    background: #4cc089;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.modal-submit:hover {
    background: #3ba976;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid, .global-content, .brands-grid, .mv-grid, .contact-grid, .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
    }
    
    .director-card {
        flex-direction: column;
    }
    
    .director-img-large {
        width: 100%;
        height: 400px;
    }
    
    .director-content {
        padding: 3rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-stats {
        order: -1;
    }
    
    .brand-image {
        order: -1;
    }
    
    .modal-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-left, .modal-right {
        width: 100%;
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .model-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .benefit-items {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .showcase-item {
        width: 280px;
        height: 380px;
    }
}

/* ---------------------------------------------------
   HOW TO ORDER PAGE STYLES
--------------------------------------------------- */

.hero-how-to {
    background: url('images/hero_pharma_bg.png') center/cover no-repeat;
    color: var(--primary-color);
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    height: auto;
}

.hero-overlay-how {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.hero-how-to h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.badges {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.badge-how {
    letter-spacing: 1px;
}

.badge-dot {
    color: #ffd700;
}

/* Timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 0;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    z-index: 2;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0f4f8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.timeline-step:hover .step-icon {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: var(--white);
}

.timeline-step h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    min-height: 40px;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.timeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 80px; /* Align with icons */
}

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 20px 40px;
    background: var(--white);
}

.trust-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.trust-left h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.trust-left p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.trust-right {
    text-align: right;
}

.stars i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-left: 5px;
}

.trust-right p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Export Categories */
.export-banner-title {
    background: var(--primary-color);
    color: var(--white);
    display: inline-block;
    padding: 10px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 50px;
    padding: 30px;
    background: var(--white);
}

.export-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    border-right: 1px solid rgba(10, 37, 64, 0.1);
}

.export-item:last-child {
    border-right: none;
}

.export-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.export-item h4 {
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    color: var(--primary-color);
}

/* Action Footer */
.action-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
}

.action-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-whatsapp, .action-questions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.action-questions {
    justify-content: flex-end;
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 40px;
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.wa-icon {
    background: #25D366;
    color: var(--white);
}

.q-icon {
    background: var(--white);
    color: var(--primary-color);
}

.action-whatsapp p, .action-questions p {
    margin: 0;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 1px;
}

.action-whatsapp h3 {
    margin: 5px 0 0;
    font-size: 1.8rem;
    color: var(--white);
}

.action-questions p:last-child {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Responsive adjustments for How To Order */
@media (max-width: 1200px) {
    .export-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }
    .export-item {
        border-right: none;
        border-bottom: 1px solid rgba(10, 37, 64, 0.1);
        padding: 20px 10px;
    }
    .export-item:last-child, .export-item:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }
    .timeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
        background: var(--white);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .step-number {
        position: absolute;
        top: -15px;
        left: -15px;
    }
    .step-icon {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    .timeline-connector {
        display: none;
    }
    .timeline-step h3 {
        min-height: auto;
    }
    .trust-banner {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
        gap: 20px;
    }
    .trust-left {
        flex-direction: column;
    }
    .trust-right {
        text-align: center;
    }
    .action-flex {
        flex-direction: column;
        gap: 30px;
    }
    .action-questions {
        border-left: none;
        border-top: 2px solid rgba(255,255,255,0.2);
        padding-left: 0;
        padding-top: 30px;
        justify-content: flex-start;
        width: 100%;
    }
}
