/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #1a4d7c;
    --secondary-color: #ff6b35;
    --accent-color: #f7931e;
    --dark-blue: #0f2a3f;
    --light-blue: #3498db;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #495057;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -75px !Important;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== NAVIGATION (WHITE BACKGROUND) ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 77, 124, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 77, 124, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
    border-radius: 3px;
}

/* ===== HERO HOME ===== */
.hero-home {
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    min-height: calc(100% + 200px);
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 42, 63, 0.85) 0%, rgba(26, 77, 124, 0.75) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    max-width: 700px;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(247, 147, 30, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== HERO STATS ===== */
.hero-stats {
    background: white;
    padding: 2.5rem 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
}

.stat-icon {
    font-size: 3rem;
    line-height: 1;
}

.stat-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.stat-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 90px 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 77, 124, 0.1), rgba(52, 152, 219, 0.1));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(26, 77, 124, 0.2);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: var(--gray-light);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.welcome-images {
    display: grid;
    gap: 20px;
}

.welcome-img-main img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.welcome-img-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.welcome-img-secondary img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.welcome-img-secondary img:hover {
    transform: scale(1.05);
}

.welcome-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.welcome-content p {
    margin-bottom: 1.2rem;
}

.welcome-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-showcase {
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 3rem;
}

.showcase-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.15);
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.showcase-content {
    padding: 2rem;
}

.showcase-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-benefits li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--gray-dark);
    border-bottom: 1px solid #f0f0f0;
}

.product-benefits li:last-child {
    border-bottom: none;
}

.product-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    background: var(--gray-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-reasons {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reason-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.why-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.why-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.why-img-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.why-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== INDUSTRIES ===== */
.industries {
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.industry-card {
    position: relative;
    height: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 42, 63, 0.95), transparent);
    padding: 2rem;
    color: white;
}

.industry-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.industry-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(15, 42, 63, 0.95), rgba(26, 77, 124, 0.95)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&h=600&fit=crop') center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 42, 63, 0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 400px;
    margin-top: 85px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    min-height: calc(100% + 150px);
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 42, 63, 0.85), rgba(26, 77, 124, 0.75));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== COMPANY STORY (ABOUT PAGE) ===== */
.company-story {
    padding: 90px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.mv-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== MANUFACTURING ===== */
.manufacturing {
    background: var(--gray-light);
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.manufacturing-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.process-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-details p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
}

/* ===== WHY CHOOSE ABOUT ===== */
.why-choose-about {
    background: var(--gray-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.benefit-content {
    padding: 2rem;
}

.benefit-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-content p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.location-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.location-details {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.location-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.location-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.location-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== PRODUCTS PAGE ===== */
.products-intro {
    background: var(--gray-light);
    text-align: center;
    padding: 60px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.product-detail {
    padding: 90px 0;
}

.product-detail.alt {
    background: var(--gray-light);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.product-detail-grid.reverse {
    direction: rtl;
}

.product-detail-grid.reverse > * {
    direction: ltr;
}

.main-product-img {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.main-product-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-img-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-img-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-category {
    display: inline-block;
    background: rgba(26, 77, 124, 0.1);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-detail-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-intro {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-detail-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-cta {
    margin-top: 2.5rem;
}

.product-summary {
    background: white;
    padding: 90px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.summary-column {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.summary-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-column ul {
    list-style: none;
}

.summary-column li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--gray-dark);
    border-bottom: 1px solid #e0e0e0;
}

.summary-column li:last-child {
    border-bottom: none;
}

.summary-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    background: var(--gray-light);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.contact-info-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

.card-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
    margin-top: 1rem;
}

.contact-form-section {
    background: white;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
}

.form-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-reasons {
    margin: 3rem 0;
}

.contact-reasons h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.reason-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reasons-list h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.reasons-list p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.contact-image {
    margin-top: 2rem;
}

.contact-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-wrapper {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--gray-light);
}

.map-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.map-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.map-details {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.map-detail-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.map-detail-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.map-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.faq-item {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo img {
    height: 75px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.6rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.hours-list li {
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .showcase-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        display: none;
    }

    /* Hero Sections - FIX THE GAP */
    .hero-home {
        margin-top: 70px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    /* Hero Stats */
    .hero-stats {
        padding: 1.5rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 0.8rem;
        gap: 1rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-content h3 {
        font-size: 1rem;
    }

    .stat-content p {
        font-size: 0.85rem;
    }

    /* Page Sections */
    section {
        padding: 60px 0;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    /* Page Hero */
    .page-hero {
        height: 250px;
        margin-top: 70px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }

    /* Grids */
    .welcome-grid,
    .story-grid,
    .why-choose-grid,
    .manufacturing-grid,
    .location-grid,
    .product-detail-grid,
    .contact-form-grid,
    .map-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-grid.reverse {
        direction: ltr;
    }

    .welcome-img-secondary {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Product Cards */
    .showcase-card {
        margin: 0 10px;
    }

    .showcase-image {
        height: 220px;
    }

    .showcase-content {
        padding: 1.5rem;
    }

    .showcase-content h3 {
        font-size: 1.4rem;
    }

    /* Welcome Section */
    .welcome-content h2,
    .story-content h2,
    .location-content h2,
    .map-info h2,
    .form-intro h2 {
        font-size: 2rem;
    }

    .welcome-content p,
    .story-content p {
        font-size: 1rem;
    }

    /* Why Choose Section */
    .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .reason-number {
        margin: 0 auto;
    }

    /* Industries Section */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        height: 280px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-item {
        height: 250px;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Summary Grid */
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-column {
        padding: 2rem;
    }

    /* Why Images */
    .why-img-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-img-1,
    .why-img-2,
    .why-img-3 {
        grid-column: 1;
        grid-row: auto;
    }

    /* Process Items */
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .process-number {
        margin: 0 auto;
    }

    /* Mission/Vision Cards */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mv-card {
        padding: 2rem;
    }

    /* Product Detail */
    .main-product-img img {
        height: 350px;
    }

    .product-img-gallery img {
        height: 150px;
    }

    .product-detail-content h2 {
        font-size: 2rem;
    }

    .product-detail-content h3 {
        font-size: 1.3rem;
    }

    /* Contact Page */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-reasons {
        margin: 2rem 0;
    }

    .reasons-list li {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 2rem;
    }

    /* Map Section */
    .map-placeholder img {
        height: 350px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-logo img {
        margin: 0 auto 1.5rem;
    }

    .footer-col h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 0.6rem 0;
    }

    .logo img {
        height: 45px;
    }

    /* Hero */
    .hero-home {
        margin-top: 60px;
    }

    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Hero Stats */
    .hero-stats {
        padding: 1.2rem 0;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .stat-icon {
        font-size: 2.2rem;
    }

    .stat-content h3 {
        font-size: 0.95rem;
    }

    .stat-content p {
        font-size: 0.8rem;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header-center {
        margin-bottom: 35px;
    }

    .section-header-center h2 {
        font-size: 1.7rem;
    }

    .section-header-center p {
        font-size: 0.95rem;
    }

    /* Page Hero */
    .page-hero {
        height: 220px;
        margin-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    /* Welcome & Content Sections */
    .welcome-content h2,
    .story-content h2,
    .location-content h2,
    .map-info h2,
    .form-intro h2 {
        font-size: 1.7rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    /* Showcase Cards */
    .showcase-card {
        margin: 0 5px;
    }

    .showcase-image {
        height: 200px;
    }

    .showcase-content {
        padding: 1.2rem;
    }

    .showcase-content h3 {
        font-size: 1.3rem;
    }

    .showcase-content p {
        font-size: 0.95rem;
    }

    /* Industry Cards */
    .industry-card {
        height: 250px;
    }

    .industry-overlay {
        padding: 1.5rem;
    }

    .industry-overlay h3 {
        font-size: 1.4rem;
    }

    /* Reason Items */
    .reason-item {
        gap: 1rem;
    }

    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .reason-content h4 {
        font-size: 1.1rem;
    }

    .reason-content p {
        font-size: 0.95rem;
    }

    /* Process Items */
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .process-details h4 {
        font-size: 1.2rem;
    }

    /* Gallery */
    .gallery-item {
        height: 220px;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 13px 28px;
        font-size: 1rem;
    }

    /* Product Details */
    .main-product-img img {
        height: 300px;
    }

    .product-img-gallery {
        grid-template-columns: 1fr;
    }

    .product-img-gallery img {
        height: 180px;
    }

    .product-detail-content h2 {
        font-size: 1.8rem;
    }

    .product-detail-content h3 {
        font-size: 1.2rem;
    }

    .product-intro {
        font-size: 1.05rem;
    }

    /* Contact Cards */
    .contact-info-card {
        padding: 1.8rem;
    }

    .contact-card-icon {
        font-size: 3rem;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    /* Form */
    .form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    /* Mission/Vision/FAQ */
    .mv-card,
    .summary-column,
    .faq-item {
        padding: 1.8rem;
    }

    .mv-icon {
        font-size: 3rem;
    }

    .mv-card h3 {
        font-size: 1.6rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    /* Map */
    .map-placeholder img {
        height: 300px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-logo img {
        height: 65px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}
