@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

/* FIX 2: Added overflow-x: hidden to prevent white space on right */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #334155; background: #f8fafc; overflow-x: hidden; width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

.container { 
    max-width: 1200px; 
    margin: 0 auto !important; 
    padding: 0 20px; 
    width: 100%; 
}

/* Header & Nav */
header { background: #0f172a; color: white; padding: 15px 0; position: sticky; top: 0; z-index: 2000; border-bottom: 1px solid rgba(251, 191, 36, 0.2); width: 100%; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; font-weight: 900; font-size: 1.2rem; }
.header-logo { height: 50px; margin-right: 12px; }
.logo span { color: #fbbf24; margin-left: 5px; }
.logo-link { text-decoration: none; color: inherit; }
.nav-menu { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-menu a { color: #cbd5e1; text-decoration: none; font-weight: 600; transition: 0.3s; }
.nav-menu a:hover { color: #fbbf24; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* HERO - Restored Original Background */
.hero { 
    height: 100vh; 
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    position: relative;
    overflow: hidden; 
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Background Image */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: slowZoom 15s ease-out forwards;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); } 
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 3.2rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 40px; color: #cbd5e1; }

/* Sections */
.section { padding: 90px 0; width: 100%; }
.bg-white { background: #ffffff; }
.bg-light { background: #f1f5f9; }
.section-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 50px; text-align: center; color: #0f172a; }
.section-subtitle { color: #fbbf24; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 10px; }

/* About Alignment */
.about-flex { display: flex; align-items: flex-start; gap: 50px; flex-wrap: wrap; text-align: left; }
.about-text { flex: 1.2; min-width: 320px; }
.about-image { flex: 0.8; min-width: 320px; }
.about-heading { font-size: 2.5rem; font-weight: 900; color: #0f172a; margin-bottom: 20px; line-height: 1.2; }
.modern-img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { margin-bottom: 10px; }
.about-list i { color: #fbbf24; margin-right: 10px; }

/* Grid fixes for Responsive Width */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }

.mv-card { padding: 50px; border-radius: 24px; text-align: center; height: 100%; }
.dark-card { background: #0f172a; color: white; border: 1px solid rgba(251, 191, 36, 0.3); }
.mv-card i { font-size: 2.5rem; color: #fbbf24; margin-bottom: 20px; display: block; }

.card { background: white; padding: 40px; border-radius: 24px; border: 1px solid #e2e8f0; text-align: center; height: 100%; transition: 0.4s; }
.card i { font-size: 2.5rem; color: #fbbf24; margin-bottom: 20px; display: block; }
.float-hover:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.product-item { background: white; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; font-weight: 700; transition: 0.3s; }
.product-item:hover { background: #0f172a; color: white; transform: translateY(-5px); }

.port-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.port { background: #0f172a; color: white; padding: 25px 55px; border-radius: 20px; font-weight: 900; font-size: 1.3rem; transition: 0.4s; }
.bounce-hover:hover { transform: scale(1.1); background: #fbbf24; color: #000; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; border-top: 1px solid #e2e8f0; padding-top: 20px; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: #0f172a; }

.faq-item { background: white; padding: 20px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #e2e8f0; }
.faq-item summary { font-weight: 700; cursor: pointer; outline: none; }

/* Contact Form */
.contact-box { background: #0f172a; color: white; padding: 50px; border-radius: 30px; max-width: 650px; margin: 0 auto; text-align: center; width: 100%; }
form input, form textarea { width: 100%; padding: 18px; margin-bottom: 15px; border-radius: 12px; border: 1px solid #334155; background: #1e293b; color: #fff; font-size: 1rem; outline: none; }
.btn-main { background: linear-gradient(135deg, #fbbf24, #d97706); color: black; padding: 16px 45px; border-radius: 12px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; display: inline-block; transition: 0.3s; }
.btn-small { background: #fbbf24; color: black !important; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 700; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; z-index: 3000; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }

footer { background: #020617; color: #94a3b8; text-align: center; padding: 60px 0; width: 100%; }
.footer-hr { margin: 30px 0; border: 0; border-top: 1px solid rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: #0f172a; flex-direction: column; padding: 20px; display: none; }
    .nav-menu.active { display: flex; }
    .about-flex { flex-direction: column; text-align: center; }
    .section-subtitle, .about-heading { text-align: center; }
}