/* ================================================= */
/* 0. GLOBAL STYLES */
/* ================================================= */
/* Assume standard global resets and body styles are applied */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9fafb;
}

/* General Section Padding (Adjusted for mobile-first approach) */
.ftwz-facility, .ftwz-advantages, .supply-chain {
    padding: 60px 20px;
}

/* ================================================= */
/* 1. Hero Section */
/* ================================================= */
.sez-hero {
    background: #ffffff;
    padding: 0;
}

.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.hero-text {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem; /* Base desktop size */
    color: #0F766E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ================================================= */
/* 2. FTWZ Facility Section */
/* ================================================= */
.ftwz-facility {
    background: #fff;
}

.facility-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.facility-header h2 {
    font-size: 2.2rem;
    color: #0F766E;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.facility-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

.facility-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.facility-text {
    flex: 1;
}

.facility-text h3 {
    font-size: 1.5rem;
    color: #0F766E;
    margin-bottom: 16px;
}

.facility-text p, .facility-text li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.facility-text ul {
    list-style: disc;
    padding-left: 20px;
    color: #475569;
}

.facility-text li {
    margin-bottom: 12px;
}

.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* ================================================= */
/* 3. FTWZ Advantages Section */
/* ================================================= */
.ftwz-advantages {
    background: #fff;
}

.advantages-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.advantages-header h2 {
    font-size: 2rem;
    color: #0F766E;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.advantages-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Base desktop grid */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.adv-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.adv-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.adv-icon {
    font-size: 1.6rem;
    color: #0F766E;
    flex-shrink: 0;
}

.adv-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #0F172A;
}

.adv-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* ================================================= */
/* 4. Cargo Types Section */
/* ================================================= */
.cargo-types {
    background: #f9fafb;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.cargo-types h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #0F766E;
    margin-bottom: 10px;
    text-align: left;
}

.cargo-types p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 30px;
}

.cargo-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Base two-column list */
    gap: 15px 40px;
}

.cargo-list li {
    font-size: 1rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cargo-list li::before {
    content: "✔";
    color: #059669;
    font-weight: bold;
}

/* ================================================= */
/* 5. Supply Chain Section */
/* ================================================= */
.supply-chain {
    background: #ffffff;
}

.supply-chain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Base desktop grid */
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.supply-image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}


.supply-content h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #0F766E;
    margin-bottom: 15px;
}

.supply-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.supply-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    color: #111827;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.step-number {
    background: #10b981;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================= */
/* 6. CTA Section */
/* ================================================= */
.cta-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
}

.cta-container h2 {
    font-family: 'Georgia', serif; 
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0F766E;
}

.cta-container p {
    font-size: 1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-btn {
    background-color: #14b8a6;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #0d9488;
}

/* ================================================= */
/* RESPONSIVE MEDIA QUERIES */
/* ================================================= */

/* Tablet & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    /* General Padding */
    .ftwz-facility, .ftwz-advantages, .supply-chain {
        padding: 40px 15px;
    }
    
    /* 1. Hero Section: Stack columns */
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }
    .hero-text {
        padding: 40px 20px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-image img {
        height: 300px; /* fixed height for image when stacked */
    }

    /* 2. FTWZ Facility: Stack columns */
    .facility-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .facility-image img {
        max-width: 100%;
        margin: 0 auto;
    }
    .facility-text h3 {
        text-align: center;
    }
    .facility-text ul {
        list-style-position: inside; /* Center list items */
        padding-left: 0;
        text-align: left; /* Keep bullets aligned */
        max-width: 500px;
        margin: 0 auto;
    }

    /* 3. Advantages: Change to 2 columns */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .advantages-header h2 {
        font-size: 1.8rem;
    }

    /* 4. Cargo Types: Keep 2 columns, but adjust padding */
    .cargo-types {
        padding: 40px 15px;
        margin: 30px 15px;
    }
    .cargo-types h2 {
        font-size: 1.8rem;
    }

    /* 5. Supply Chain: Stack columns */
    .supply-chain-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .supply-image img {
        max-height: 300px;
        order: -1; /* Place image above text */
    }
    .supply-content h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* 1. Hero */
    .hero-text {
        padding: 30px 15px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-image img {
        height: 250px;
    }

    /* 2. FTWZ Facility */
    .facility-header h2 {
        font-size: 1.8rem;
    }
    .facility-header p {
        font-size: 1rem;
    }
    .facility-text h3 {
        font-size: 1.3rem;
    }

    /* 3. Advantages: Change to 1 column */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .adv-card {
        padding: 15px;
    }
    .advantages-header h2 {
        font-size: 1.6rem;
    }

    /* 4. Cargo Types: Change to 1 column list */
    .cargo-types {
        margin: 20px 10px;
    }
    .cargo-types h2 {
        font-size: 1.6rem;
    }
    .cargo-list ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .cargo-list li {
        font-size: 0.95rem;
    }

    /* 5. Supply Chain */
    .supply-image img {
        max-height: 200px;
    }
    .supply-content h2 {
        font-size: 1.6rem;
    }
    .supply-content p {
        font-size: 0.95rem;
    }
    .step-card {
        font-size: 0.95rem;
    }

    /* 6. CTA */
    .cta-container h2 {
        font-size: 1.5rem;
    }
    .cta-container p {
        font-size: 0.95rem;
    }
}