:root {
    --primary: #1a237e;
    --secondary: #283593;
    --accent: #e53935;
    --light: #f8f9fa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container for centering */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

.pamphlet-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pamphlet-header .subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.breadcrumb {
    position: relative;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FACILITY SECTIONS */
.facility-section {
    padding: 0 0 20px;
}

.bg-light {
    background-color: #f9f9f9;
}

/* SECTION 1: Title above, then content+image side by side */
.section-1-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-line-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 10px;
    padding: 10px;
}

/* Content + Image side by side */
.content-image-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.section-1-points {
    flex: 1;
    padding-right: 20px;
}

/* SECTION 1: Points on LEFT, Image on RIGHT */

.section-1-image {
    flex: 1;
}

.section-1-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

/* SECTION 2: Points on RIGHT, Image on LEFT */
.section-2-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.section-2-image {
    flex: 1;
}

.section-2-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.section-2-points {
    flex: 1;
    padding-left: 20px;
}

/* Image hover effect */
.section-1-image img:hover,
.section-2-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* LIST STYLE */
.facility-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.facility-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: #444;
}

.facility-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

/* TITLES - Fixed alignment */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

/* Force left alignment for all content titles */
.single-line-title,
.plant-title,
.facility-title,
.category-title,
.equipment-name {
    text-align: left !important;
}

/* NEW MANUFACTURING UNITS SECTION */
.manufacturing-plants-section {
    padding: 0 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.plants-overview-title {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.plant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.plant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plant-card:hover .plant-image img {
    transform: scale(1.05);
}

.plant-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* PLANT TITLE STYLES */
.plant-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    min-height: 1.5em;
    line-height: 1.3;
}

.plant-details {
    margin: 0 0 20px 0;
    flex-grow: 0;
}

.plant-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.plant-detail-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    flex: 1;
}

.plant-detail-text strong {
    color: var(--primary);
}

/* ACCORDION STYLES */
.accordion-wrapper {
    margin-top: 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.accordion-header {
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(to right, #e9ecef, #e1e5e9);
}

.accordion-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.accordion-icon {
    color: var(--accent);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-icon .opened {
    display: none;
}

.accordion-icon .closed {
    display: block;
}

.accordion-item.active .accordion-icon .opened {
    display: block;
}

.accordion-item.active .accordion-icon .closed {
    display: none;
}

.accordion-item.active .accordion-icon {
    transform: none;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
    max-height: 800px;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.accordion-details {
    padding: 20px;
    background: white;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-header i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

.detail-header strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.accordion-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.accordion-details li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-details li:last-child {
    border-bottom: none;
}

.accordion-details li strong {
    color: #333;
    font-weight: 600;
    margin-right: 5px;
}

/* MANUFACTURING FACILITIES OVERVIEW SECTION */
.facilities-overview-section {
    padding: 0 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.facilities-overview-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.section-header {
    text-align: center;
}

.section-header .section-title {
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.facility-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
    background: white;
}

.facility-card:hover::before {
    width: 4px;
    background: var(--primary);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(5deg);
}

.facility-content {
    flex: 1;
}

.facility-title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.facility-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


/* Stats Bar */
.stats-bar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* WORLD-CLASS MANUFACTURING EQUIPMENT SECTION */
.equipment-section {
    padding: 0 0 20px;
    background: #f8f9fa;
    position: relative;
}

/* Equipment Categories Grid */
.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.category-header {
    background: #f5f7fa;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.category-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Equipment Items */
.equipment-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.equipment-header {
    padding: 15px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.equipment-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.equipment-arrow {
    color: #6c757d;
    font-size: 0.85rem;
}

.equipment-details {
    padding: 0;
    max-height: 0;
    overflow: hidden;
}

.equipment-item.expanded .equipment-details {
    padding: 15px;
    max-height: 1000px;
    border-top: 1px solid #e0e0e0;
}

.equipment-details h4 {
    color: #495057;
    font-size: 0.95rem;
    margin: 15px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.equipment-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-details li {
    padding: 6px 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.equipment-details li::before {
    content: "•";
    color: #007bff;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 4px;
}

/* GMP Badge Card - Compact Design */
.gmp-badge-card {
    background: white;
    border: 2px solid #28a745;
}

.gmp-badge-card .category-header {
    background: #f1f9f1;
    padding: 12px 15px;
    min-height: auto;
}

.gmp-badge-card .category-icon {
    background: #28a745;
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.gmp-badge-card .category-title {
    color: #28a745;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}

.gmp-badge-card .category-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gmp-badge-content {
    width: 100%;
}

.gmp-badge-icon {
    font-size: 28px;
    color: #28a745;
    margin-bottom: 8px;
    text-align: center;
}

.gmp-badge-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #2c3e50;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.gmp-badge-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 12px;
    padding: 0;
    text-align: center;
}

.gmp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 5px;
}

.gmp-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #495057;
    padding: 4px 6px;
    background: #f8f9fa;
    border-radius: 3px;
    border-left: 2px solid #28a745;
}

.gmp-feature i {
    color: #28a745;
    font-size: 0.85rem;
    min-width: 14px;
}

/* COMPREHENSIVE CAPABILITIES SECTION */
.comprehensive-capabilities {
    padding: 0 0 20px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.comprehensive-capabilities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

/* Capabilities Container */
.capabilities-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.capability-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Category Cards */
.capability-category {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.capability-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.category-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.category-header i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.category-header h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Capability Points */
.capability-points {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.point-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.point-icon i {
    color: white;
    font-size: 12px;
}

.point-content {
    flex: 1;
}

.point-content h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.point-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Summary Banner */
.summary-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.summary-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.banner-icon i {
    color: white;
    font-size: 36px;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* Key Statistics */
.key-statistics {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #555;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #eaeaea;
}
/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 20px 0;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-section .intro-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 1.05rem;
}

/* ================================
   FORM CONTAINER
================================ */
.contact-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    max-width: 1400px;
    margin: 0 auto;}

/* ================================
   FORM ROWS
================================ */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

/* ================================
   LABELS
================================ */
.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ================================
   INPUTS, TEXTAREA, SELECT
================================ */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
}

/* Remove ugly default select arrow (optional) */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    cursor: pointer;
}

/* ================================
   FOCUS EFFECTS
================================ */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.15);
}

/* ================================
   TEXTAREA
================================ */
.form-group textarea {
    resize: vertical;
}

/* ================================
   SUBMIT BUTTON
================================ */
.submit-btn {
    background: var(--primary);
    color: #fff;
    padding: 16px 45px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .manufacturing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .equipment-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .single-line-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .content-image-wrapper,
    .section-2-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .section-1-points,
    .section-2-points {
        padding: 0;
        width: 100%;
    }

    .section-1-image img,
    .section-2-image img {
        height: 280px;
    }

    .manufacturing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .plant-title {
        font-size: 1.4rem;
    }

    .plants-overview-title {
        font-size: 2.2rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-bar {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .equipment-categories {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .comprehensive-capabilities {
        padding: 50px 0;
    }

    .capabilities-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .capability-column {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .pamphlet-header h1 {
        font-size: 36px;
    }

    .pamphlet-header .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 2rem;
    }

    .single-line-title {
        font-size: 1.35rem;
        line-height: 1.35;
        padding: 0;
        margin-bottom: 6px;
    }

    .contact-section .section-title {
        font-size: 2rem !important;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .content-image-wrapper,
    .section-2-wrapper {
        gap: 14px;
    }

    .section-2-wrapper {
        margin-top: 10px;
    }

    .section-1-points,
    .section-2-points {
        width: 100%;
        padding: 14px;
        background: #fff;
        border: 1px solid #e7ebf1;
        border-radius: 10px;
    }

    .section-1-image,
    .section-2-image {
        width: 100%;
    }

    .section-1-image img,
    .section-2-image img {
        height: 230px;
        border-radius: 10px;
    }

    .plants-overview-title {
        font-size: 1.8rem;
    }

    .plant-content {
        padding: 20px;
    }

    .accordion-header {
        padding: 12px 15px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .plant-title.single-line {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .facilities-overview-section {
        padding: 60px 0;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .section-header .section-title {
        font-size: 2rem;
    }
    
    .equipment-section {
        padding: 60px 0;
    }
    
    .category-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .equipment-name {
        font-size: 0.95rem;
    }
    
    .comprehensive-capabilities {
        padding: 40px 0;
    }

    .capabilities-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .capability-column {
        gap: 14px;
    }

    .comprehensive-capabilities .category-header {
        padding: 14px 16px;
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }

    .comprehensive-capabilities .category-header i {
        font-size: 18px;
    }

    .comprehensive-capabilities .category-header h3 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .capability-points {
        padding: 14px;
        gap: 14px;
    }

    .point-item {
        gap: 10px;
    }

    .point-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .point-icon i {
        font-size: 10px;
    }

    .point-content h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .point-content p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .key-statistics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 16px;
    }

    .key-statistics .stat-divider {
        display: none;
    }

    .key-statistics .stat-item {
        background: #f8f9fb;
        border: 1px solid #e8edf5;
        border-radius: 10px;
        padding: 12px 8px;
    }

    .key-statistics .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .key-statistics .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .pamphlet-header {
        padding: 60px 0 40px;
    }

    .pamphlet-header h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .single-line-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .contact-section .section-title {
        font-size: 1.8rem !important;
    }

    .submit-btn {
        width: 100%;
    }

    .section-1-image img,
    .section-2-image img {
        height: 200px;
    }

    .facility-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 26px;
        line-height: 1.5;
    }

    .facility-list li::before {
        font-size: 1.2rem;
    }

    .manufacturing-plants-section {
        padding: 60px 0;
    }

    .plants-overview-title {
        font-size: 1.6rem;
    }

    .plant-image {
        height: 200px;
    }

    .plant-title {
        font-size: 1.3rem;
    }

    .plant-detail-text {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .accordion-title {
        font-size: 0.95rem;
    }
    
    .facility-card {
        padding: 20px;
    }

    .facility-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .equipment-header {
        padding: 15px;
    }
    
    .equipment-item.expanded .equipment-details {
        padding: 15px;
    }
    
    .comprehensive-capabilities .section-header .section-title {
        font-size: 1.5rem;
    }

    .comprehensive-capabilities .intro-text {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 8px;
    }

    .comprehensive-capabilities .category-header h3 {
        font-size: 0.95rem;
    }

    .capability-points {
        padding: 12px;
        gap: 12px;
    }

    .point-content h4 {
        font-size: 0.9rem;
    }

    .point-content p {
        font-size: 0.84rem;
    }

    .key-statistics {
        gap: 10px;
        padding: 12px;
    }

    .key-statistics .stat-item {
        padding: 10px 6px;
    }

    .key-statistics .stat-number {
        font-size: 1.7rem;
    }

    .key-statistics .stat-label {
        font-size: 0.82rem;
    }
}

@media (max-width: 420px) {
    .key-statistics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pamphlet-header h1 {
        font-size: 24px;
    }

    .pamphlet-header .subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .single-line-title {
        font-size: 1.1rem;
    }

    .section-1-points,
    .section-2-points {
        padding: 12px;
    }

    .section-1-image img,
    .section-2-image img {
        height: 180px;
    }

    .breadcrumb {
        font-size: 14px;
    }

    .plant-content {
        padding: 15px;
    }

    .plants-overview-title {
        font-size: 1.4rem;
    }

    .plant-title {
        font-size: 1.2rem;
    }

    .plant-detail-text {
        font-size: 0.95rem;
    }
}
