:root {
    --primary-color: #0d2c54; /* Deep Industrial Blue */
    --secondary-color: #ffbf00; /* Gold/Amber Accent */
    --accent-green: #2d6a4f; /* Green for Neutral Grade */
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #fafafa;
    --bg-dark: #0a111a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('img1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 44, 84, 0.85) 0%, rgba(13, 44, 84, 0.4) 100%);
    z-index: 1;
}

.featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.product-showcase {
    margin-bottom: 3rem;
    text-align: center;
}

.showcase-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    color: var(--secondary-color);
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    margin-right: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 191, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--primary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    color: var(--white) !important;
}

.btn-email:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.bg-dark .section-header h2 { color: var(--white); }

.underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.about-image .image-placeholder {
    background: var(--primary-color);
    height: 400px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 5rem;
}

/* Products */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.product-card.featured {
    border-top: 5px solid var(--accent-green);
}

.product-specs .spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.spec span { color: #666; }

.primary-use {
    margin-top: 2rem;
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.packaging-section {
    margin-top: 5rem;
    text-align: center;
}

.packaging-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pack-item {
    font-weight: 600;
    color: var(--primary-color);
}

.pack-item i {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Applications */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.app-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.app-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.app-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Contact */
.contact-flex {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 4rem;
}

.contact-info { 
    max-width: 700px;
}

.contact-info h2 { font-size: 3rem; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; }

.contact-details {
    list-style: none;
    margin: 2rem 0;
    display: inline-block;
    text-align: left;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-details i { color: var(--secondary-color); font-size: 1.5rem; }

.export-badges { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; }
.export-badges span { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.export-badges i { color: var(--secondary-color); }

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 3rem 0;
    background: #05090e;
    color: #666;
    text-align: center;
    font-size: 0.9rem;
}

/* Pane Reveal Effect */
.pane-reveal, .pane-reveal-right {
    position: relative;
    overflow: hidden;
}

.pane-reveal::after, .pane-reveal-right::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 5;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.pane-reveal::after {
    left: 0;
    transform: translateX(-101%);
}

.pane-reveal-right::after {
    right: 0;
    transform: translateX(101%);
}

.pane-reveal.active::after {
    transform: translateX(101%);
}

.pane-reveal-right.active::after {
    transform: translateX(-101%);
}

/* Text Filling Effect */
.text-fill {
    display: inline-block;
    color: rgba(13, 44, 84, 0.2);
    background: linear-gradient(to right, var(--primary-color), var(--primary-color)) no-repeat;
    background-size: 0% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 1.2s ease-in-out;
}

.bg-dark .text-fill {
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(to right, var(--white), var(--white)) no-repeat;
    background-size: 0% 100%;
    -webkit-background-clip: text;
}

.active .text-fill {
    background-size: 100% 100%;
}

/* Advanced Slide Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-150px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(150px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.active, .slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Icon Entrance */
.pack-item, .app-card {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.pack-item.slide-in-left, .app-card.slide-in-left { transform: translateX(-100px); }
.pack-item.slide-in-right, .app-card.slide-in-right { transform: translateX(100px); }

.pack-item.active, .app-card.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        display: flex;
        gap: 1.5rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .nav-links.active { right: 0; }
    
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero { height: auto; min-height: 100vh; padding: 120px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .tagline { font-size: 1.1rem; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .contact-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; margin-right: 0; margin-bottom: 1rem; }
    .hero-btns { display: flex; flex-direction: column; width: 100%; }
    .product-card { padding: 2rem 1.5rem; }
    .contact-form form { padding: 2rem 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .logo .brand { font-size: 1.5rem; }
}
