/* ========================================= */
/* KGG IMPEX V2 - STYLE.CSS (PART 1/2) */
/* Global Styles + Header + Hero + Core */
/* ========================================= */

/* ========================================= */
/* CSS RESET */
/* ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #081120;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ========================================= */
/* ROOT VARIABLES */
/* ========================================= */

:root {

    --primary: #081120;
    --secondary: #101A2E;
    --gold: #C8A66A;
    --gold-hover: #d6b57c;

    --white: #ffffff;
    --text-light: #BFC7D5;

    --border: rgba(255, 255, 255, 0.08);

    --shadow:
        0 20px 40px rgba(0, 0, 0, 0.30);

    --transition: all .35s ease;

    --container: 1280px;

}

/* ========================================= */
/* GLOBAL */
/* ========================================= */

.container {
    width: 100%;
    max-width: var(--container);
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;

    border: 1px solid rgba(200, 166, 106, .3);

    border-radius: 50px;

    color: var(--gold);

    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 20px;

}

.section-header h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem, 5vw, 4rem);

    line-height: 1.1;

    max-width: 800px;

    margin: auto;

}

.section-center {
    text-align: center;
    margin-top: 50px;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 32px;

    border-radius: 50px;

    font-size: .95rem;
    font-weight: 600;

    transition: var(--transition);

    cursor: pointer;

}

.btn-primary {

    background: var(--gold);
    color: var(--primary);

}

.btn-primary:hover {

    background: var(--gold-hover);

    transform: translateY(-3px);

}

.btn-outline {

    border: 1px solid rgba(255, 255, 255, .25);

    color: white;

}

.btn-outline:hover {

    background: white;

    color: var(--primary);

}

.btn-secondary {

    background: transparent;

    border: 1px solid var(--gold);

    color: var(--gold);

}

.btn-secondary:hover {

    background: var(--gold);

    color: var(--primary);

}

/* ========================================= */
/* PRELOADER */
/* ========================================= */

.preloader {

    position: fixed;

    inset: 0;

    background: #081120;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 99999;

}

.loader-logo img {

    width: 120px;

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* ========================================= */
/* TOP BAR */
/* ========================================= */

.top-bar {

    background: #050B15;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    font-size: .85rem;

}

.top-bar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 48px;

}

.top-bar-left,
.top-bar-right {

    display: flex;

    align-items: center;

    gap: 25px;

}

.top-bar a {

    color: var(--text-light);

    transition: var(--transition);

}

.top-bar a:hover {

    color: var(--gold);

}

.top-bar i {

    margin-right: 8px;

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header {

    position: fixed;

    top: 48px;

    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        linear-gradient(90deg,
            rgba(8, 17, 32, .98),
            rgba(16, 26, 46, .98));

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(200, 166, 106, .12);

}

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 89px;

}

.logo img {

    height: 68px;

}

.nav-menu ul {

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav-menu a {

    color: white;

    font-weight: 500;

    transition: var(--transition);

    position: relative;

}

.nav-menu a:hover,
.nav-menu a.active {

    color: var(--gold);

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);

}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}

.header-actions {

    display: flex;

    align-items: center;

    gap: 20px;

}

/* ========================================= */
/* MOBILE MENU BUTTON */
/* ========================================= */

.mobile-menu-btn {

    display: none;

    background: transparent;

    border: none;

    cursor: pointer;

}

.mobile-menu-btn span {

    display: block;

    width: 28px;

    height: 3px;

    background: white;

    margin: 5px 0;

    border-radius: 50px;

}

/* ========================================= */
/* MOBILE MENU */
/* ========================================= */

.mobile-menu {

    position: fixed;

    top: 0;
    right: -100%;

    width: 320px;

    height: 100vh;

    background: #081120;

    z-index: 9999;

    padding: 40px 30px;

    transition: .4s ease;

}

.mobile-menu.active {

    right: 0;

}

.mobile-menu-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 50px;

}

.mobile-menu-header img {

    height: 55px;

}

.mobile-close {

    background: none;
    border: none;

    color: white;

    font-size: 1.5rem;

    cursor: pointer;

}

.mobile-menu ul {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.mobile-menu ul a {

    color: white;

    font-size: 1.05rem;

}

.mobile-btn {

    margin-top: 40px;

    width: 100%;

}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero {

    position: relative;

    padding-top: 120px;


    min-height: 90vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(rgba(8, 17, 32, .80),
            rgba(8, 17, 32, .90)),
        url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

}

.hero-world-map {

    position: absolute;

    inset: 0;

    background:
        url('https://www.transparenttextures.com/patterns/cartographer.png');

    opacity: .08;

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding-top: 0;

}

.hero-badge {

    display: inline-block;

    padding: 12px 24px;

    border: 1px solid rgba(200, 166, 106, .3);

    border-radius: 50px;

    color: var(--gold);

    font-size: .9rem;

    margin-bottom: 30px;

}

.hero-content h1 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1.05;

    margin-bottom: 25px;

}

.hero-content h1 span {

    display: block;

    color: var(--gold);

}

.hero-content p {

    max-width: 650px;

    color: var(--text-light);

    font-size: 1.1rem;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/* ========================================= */
/* TRUST STRIP */
/* ========================================= */

.trust-strip {

    background: #101A2E;

    border-top: 1px solid rgba(255, 255, 255, .05);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

}

.trust-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    min-height: 110px;

    align-items: center;

}

.trust-item {

    display: flex;

    align-items: center;

    gap: 15px;

    color: white;

    font-weight: 500;

}

.trust-item i {

    color: var(--gold);

    font-size: 1.3rem;

}

/* ========================================= */
/* ABOUT PREVIEW */
/* ========================================= */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-content h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem, 5vw, 4rem);

    line-height: 1.1;

    margin-bottom: 30px;

}

.about-content p {

    color: var(--text-light);

    margin-bottom: 20px;

}

.about-image {

    position: relative;

}

.image-card {

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

}

.image-card img {

    width: 100%;

    height: 600px;

    object-fit: cover;

}

/* ========================================= */
/* FEATURED PRODUCTS */
/* ========================================= */

.featured-products {

    background: #0d1628;

}

.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

}

.product-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 24px;

    overflow: hidden;

    transition: var(--transition);

}

.product-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200, 166, 106, .35);

}

.product-image {

    overflow: hidden;

}

.product-image img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .6s ease;

}

.product-card:hover img {

    transform: scale(1.08);

}

.product-content {

    padding: 25px;

}

.product-content h3 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.8rem;

}

/* ========================================= */
/* EXPORT PROCESS */
/* ========================================= */

.process-timeline {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 30px;

}

.process-step {

    position: relative;

    text-align: center;

    padding: 40px 20px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 24px;

}

.step-number {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 700;

    font-size: 1.2rem;

}

.process-step h3 {

    margin-bottom: 12px;

    font-size: 1.2rem;

}

.process-step p {

    color: var(--text-light);

}

/* ========================================= */
/* PACKAGING */
/* ========================================= */

.packaging {

    background: #101A2E;

}

.packaging-grid {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 80px;

    align-items: center;

}

.packaging-image img {

    width: 100%;

    border-radius: 24px;

    height: 550px;

    object-fit: cover;

}

.packaging-content ul {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.packaging-content li {

    padding: 20px;

    border-left: 3px solid var(--gold);

    background: rgba(255, 255, 255, .03);

}

/* ========================================= */
/* QUALITY */
/* ========================================= */

.quality-wrapper {

    background: rgba(255, 255, 255, .03);

    border-radius: 30px;

    padding: 70px;

    border: 1px solid rgba(255, 255, 255, .08);

}

.quality-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.quality-card {

    text-align: center;

    padding: 40px;

    background: rgba(255, 255, 255, .03);

    border-radius: 24px;

}

.quality-card i {

    font-size: 2rem;

    color: var(--gold);

    margin-bottom: 20px;

}

.quality-card h3 {

    font-size: 1.2rem;

}

/* ========================================= */
/* DOCUMENTATION */
/* ========================================= */

.documentation {

    background: #0d1628;

}

.document-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.document-card {

    padding: 50px 30px;

    text-align: center;

    border-radius: 24px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .06);

    transition: var(--transition);

}

.document-card:hover {

    transform: translateY(-8px);

    border-color: rgba(200, 166, 106, .4);

}

.document-card i {

    font-size: 2.3rem;

    color: var(--gold);

    margin-bottom: 20px;

}

/* ========================================= */
/* FAQ */
/* ========================================= */

.faq-container {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 16px;

    overflow: hidden;

}

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    color: white;

    padding: 24px;

    font-size: 1rem;

    text-align: left;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

}

.faq-answer {

    display: none;

    padding: 0 24px 24px;

    color: var(--text-light);

}

.faq-item.active .faq-answer {

    display: block;

}

.faq-item.active .faq-question i {

    transform: rotate(45deg);

}

/* ========================================= */
/* CTA SECTION */
/* ========================================= */

.cta-section {

    padding: 120px 0;

    text-align: center;

    background:
        linear-gradient(rgba(8, 17, 32, .85),
            rgba(8, 17, 32, .85)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

}

.cta-content h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem, 5vw, 4rem);

    margin-bottom: 20px;

}

.cta-content p {

    color: var(--text-light);

    margin-bottom: 35px;

}

/* ========================================= */
/* CONTACT PREVIEW */
/* ========================================= */

.contact-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 60px;

    align-items: center;

}

.contact-info h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem, 4vw, 3.5rem);

    margin-bottom: 20px;

}

.contact-info p {

    color: var(--text-light);

    margin-bottom: 30px;

}

.contact-info ul {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.contact-info li {

    display: flex;

    gap: 12px;

    align-items: flex-start;

}

.contact-info i {

    color: var(--gold);

    margin-top: 5px;

}

.contact-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 60px;

    text-align: center;

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {

    background: #050B15;

    padding-top: 80px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 50px;

}

.footer-logo {

    height: 70px;

    margin-bottom: 20px;

}

.footer-column h4 {

    margin-bottom: 20px;

    color: var(--gold);

}

.footer-column p,
.footer-column li,
.footer-column a {

    color: var(--text-light);

    margin-bottom: 12px;

}

.footer-column a:hover {

    color: var(--gold);

}

.footer-bottom {

    margin-top: 60px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

    text-align: center;

}

.footer-bottom p {

    color: var(--text-light);

    font-size: .9rem;

    margin-bottom: 10px;

}

.footer a,
.contact-card a {

    color: inherit;

    text-decoration: none;

    transition: .3s ease;

}

.footer a:hover,
.contact-card a:hover {

    color: var(--gold);

}

/* ========================================= */
/* WHATSAPP FLOAT */
/* ========================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.8rem;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);

}

/* ========================================= */
/* SCROLL TOP */
/* ========================================= */

.scroll-top {

    position: fixed;

    left: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    cursor: pointer;

    z-index: 999;

    display: none;

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1200px) {

    .process-timeline {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media (max-width: 992px) {

    .nav-menu {

        display: none;

    }

    .mobile-menu-btn {

        display: block;

    }

    .about-grid,
    .packaging-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }

    .quality-grid,
    .document-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .process-timeline {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .section-padding {

        padding: 80px 0;

    }

    .top-bar {

        display: none;

    }

    .trust-grid {

        grid-template-columns: 1fr;

        padding: 40px 0;

    }

    .products-grid,
    .quality-grid,
    .document-grid,
    .footer-grid,
    .process-timeline {

        grid-template-columns: 1fr;

    }

    .quality-wrapper {

        padding: 40px 25px;

    }

    .contact-card {

        padding: 40px 25px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .btn {

        width: 100%;

    }

    .hero-content {

        text-align: center;

    }

}

@media (max-width: 480px) {

    .mobile-menu {

        width: 100%;

    }

    .navbar {

        min-height: 80px;

    }

    .logo img {

        height: 55px;

    }

}

@media (max-width: 992px) {

    .product-features {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 576px) {

    .product-features {

        grid-template-columns: 1fr;

    }

}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card,
.product-card,
.process-step,
.quality-card,
.document-card,
.contact-card,
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

/* ========================================= */
/* ABOUT PAGE HERO */
/* ========================================= */

.page-hero {

    position: relative;
    
    padding-top: 160px;

    min-height: 70vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(rgba(8, 17, 32, .82),
            rgba(8, 17, 32, .92)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

    overflow: hidden;

}

.page-hero-content {

    max-width: 900px;

    margin: auto;

    position: relative;

    z-index: 2;

    padding-top: 100px;

}

.page-hero-content h1 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 6vw, 5rem);

    line-height: 1.1;

    margin-bottom: 25px;

}

.page-hero-content p {

    max-width: 700px;

    margin: auto;

    color: var(--text-light);

    font-size: 1.1rem;

}

/* ========================================= */
/* VISION & MISSION */
/* ========================================= */

.vision-mission {

    background: #101A2E;

}

.vm-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

}

.vm-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 50px;

    transition: var(--transition);

}

.vm-card:hover {

    transform: translateY(-8px);

    border-color: rgba(200, 166, 106, .35);

}

.vm-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: rgba(200, 166, 106, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}

.vm-icon i {

    color: var(--gold);

    font-size: 2rem;

}

.vm-card h3 {

    font-size: 1.8rem;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;

}

.vm-card p {

    color: var(--text-light);

}

/* ========================================= */
/* CORE VALUES */
/* ========================================= */

.core-values {

    background: #081120;

}

.values-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.value-card {

    text-align: center;

    padding: 40px 25px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    transition: var(--transition);

}

.value-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200, 166, 106, .35);

}

.value-card i {

    font-size: 2.2rem;

    color: var(--gold);

    margin-bottom: 20px;

}

.value-card h3 {

    margin-bottom: 15px;

    font-size: 1.3rem;

}

.value-card p {

    color: var(--text-light);

}

/* ========================================= */
/* BUYERS SECTION */
/* ========================================= */

.buyers-section {

    background: #0D1628;

}

.buyers-timeline {

    max-width: 1000px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 30px;

}

.buyer-item {

    display: flex;

    gap: 30px;

    align-items: flex-start;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

}

.buyer-number {

    min-width: 70px;

    height: 70px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 1.2rem;

}

.buyer-content h3 {

    margin-bottom: 12px;

    font-size: 1.4rem;

}

.buyer-content p {

    color: var(--text-light);

}

/* ========================================= */
/* EXPORT COMMITMENT */
/* ========================================= */

.export-commitment {

    background:
        linear-gradient(rgba(8, 17, 32, .88),
            rgba(8, 17, 32, .88)),
        url('https://images.unsplash.com/photo-1472396961693-142e6e269027?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

    text-align: center;

}

.commitment-wrapper {

    max-width: 900px;

    margin: auto;

}

.commitment-wrapper h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    margin-bottom: 25px;

}

.commitment-wrapper p {

    color: var(--text-light);

    font-size: 1.1rem;

    line-height: 1.9;

}

/* ========================================= */
/* ABOUT PAGE RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .vm-grid {

        grid-template-columns: 1fr;

    }

    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .buyer-item {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

    .values-grid {

        grid-template-columns: 1fr;

    }

    .vm-card {

        padding: 35px 25px;

    }

}


/* ========================================= */
/* QUALITY & COMPLIANCE PAGE HERO */
/* ========================================= */

.compliance-page-hero {

    background:
        linear-gradient(rgba(8, 17, 32, .85),
            rgba(8, 17, 32, .92)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

}

/* ========================================= */
/* COMPLIANCE OVERVIEW */
/* ========================================= */

.compliance-overview {

    text-align: center;

}

.compliance-intro {

    max-width: 900px;

    margin: auto;

}

.compliance-intro p {

    color: var(--text-light);

    font-size: 1.1rem;

    line-height: 1.9;

}

/* ========================================= */
/* COMPLIANCE CARDS */
/* ========================================= */

.compliance-cards-section {

    background: #0D1628;

}

.compliance-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

}

.compliance-card {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    transition: var(--transition);

}

.compliance-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200, 166, 106, .35);

}

.compliance-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(200, 166, 106, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.compliance-icon i {

    font-size: 2rem;

    color: var(--gold);

}

.compliance-card h3 {

    font-size: 1.4rem;

    margin-bottom: 15px;

}

.compliance-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ========================================= */
/* DOCUMENTATION SUPPORT */
/* ========================================= */

.documentation-support {

    background: #101A2E;

}

.documentation-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.documentation-card {

    text-align: center;

    padding: 40px 25px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    transition: var(--transition);

}

.documentation-card:hover {

    transform: translateY(-8px);

    border-color: rgba(200, 166, 106, .35);

}

.documentation-card i {

    font-size: 2.2rem;

    color: var(--gold);

    margin-bottom: 20px;

}

.documentation-card h3 {

    margin-bottom: 15px;

    font-size: 1.2rem;

}

.documentation-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ========================================= */
/* QUALITY COMMITMENT */
/* ========================================= */

.quality-commitment {

    background:
        linear-gradient(rgba(8, 17, 32, .88),
            rgba(8, 17, 32, .88)),
        url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

    text-align: center;

}

.commitment-content {

    max-width: 950px;

    margin: auto;

}

.commitment-content h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    margin-bottom: 25px;

}

.commitment-content p {

    color: var(--text-light);

    font-size: 1.1rem;

    line-height: 1.9;

}

/* ========================================= */
/* COMPLIANCE PAGE RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .documentation-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .documentation-grid {

        grid-template-columns: 1fr;

    }

    .compliance-card,
    .documentation-card {

        padding: 35px 25px;

    }

}

/* ========================================= */
/* GALLERY PAGE HERO */
/* ========================================= */

.gallery-page-hero {

    background:
        linear-gradient(rgba(8, 17, 32, .85),
            rgba(8, 17, 32, .92)),
        url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

}

/* ========================================= */
/* GALLERY INTRO */
/* ========================================= */

.gallery-intro {

    text-align: center;

}

/* ========================================= */
/* GALLERY SECTION */
/* ========================================= */

.gallery-section {

    padding-bottom: 120px;

}

.gallery-category-header {

    text-align: center;

    margin-bottom: 50px;

}

.gallery-category-header h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2rem, 4vw, 3.5rem);

}

/* ========================================= */
/* GALLERY GRID */
/* ========================================= */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    height: 320px;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .08);

}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s ease;

}

.gallery-item:hover img {

    transform: scale(1.1);

}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(transparent,
            rgba(8, 17, 32, .90));

    display: flex;

    align-items: flex-end;

    padding: 25px;

}

.gallery-overlay h3 {

    color: white;

    font-size: 1.3rem;

    font-weight: 600;

}

/* ========================================= */
/* GALLERY HIGHLIGHT */
/* ========================================= */

.gallery-highlight {

    background:
        linear-gradient(rgba(8, 17, 32, .88),
            rgba(8, 17, 32, .88)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

    text-align: center;

}

.highlight-wrapper {

    max-width: 900px;

    margin: auto;

}

.highlight-wrapper h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    margin-bottom: 25px;

}

.highlight-wrapper p {

    color: var(--text-light);

    font-size: 1.1rem;

    line-height: 1.9;

}

/* ========================================= */
/* GALLERY PAGE RESPONSIVE */
/* ========================================= */

@media (max-width: 1200px) {

    .gallery-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media (max-width: 992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .gallery-item {

        height: 280px;

    }

    .gallery-section {

        padding-bottom: 80px;

    }

}

/* ========================================= */
/* CONTACT PAGE HERO */
/* ========================================= */

.contact-page-hero {

    background:
        linear-gradient(rgba(8, 17, 32, .85),
            rgba(8, 17, 32, .92)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

}

/* ========================================= */
/* CONTACT INFO SECTION */
/* ========================================= */

.contact-info-section {

    background: #081120;

}

.contact-cards-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.contact-info-card {

    text-align: center;

    padding: 40px 25px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    transition: var(--transition);

}

.contact-info-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200, 166, 106, .35);

}

.contact-card-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(200, 166, 106, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-card-icon i {

    font-size: 2rem;

    color: var(--gold);

}

.contact-info-card h3 {

    margin-bottom: 15px;

    font-size: 1.3rem;

}

.contact-info-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ========================================= */
/* CONTACT FORM */
/* ========================================= */

.contact-form-section {

    background: #101A2E;

}

.contact-layout {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: start;

}

.contact-form-content h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.5rem, 5vw, 4rem);

    margin-bottom: 20px;

}

.contact-form-content p {

    color: var(--text-light);

    line-height: 1.9;

}

.contact-form-wrapper {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 40px;

}

.form-group {

    margin-bottom: 20px;

}

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 16px 18px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, .10);

    background: rgba(255, 255, 255, .04);

    color: #fff;

    font-family: inherit;

    font-size: 1rem;

}

.form-group input:focus,
.form-group textarea:focus {

    outline: none;

    border-color: var(--gold);

}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255, 255, 255, .55);

}

/* ========================================= */
/* BUSINESS DETAILS */
/* ========================================= */

.business-details {

    background: #081120;

}

.business-details-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.business-detail-card {

    padding: 35px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

}

.business-detail-card h3 {

    color: var(--gold);

    margin-bottom: 15px;

}

.business-detail-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ========================================= */
/* WHATSAPP CTA */
/* ========================================= */

.whatsapp-section {

    background:
        linear-gradient(rgba(8, 17, 32, .88),
            rgba(8, 17, 32, .88)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

    text-align: center;

}

.whatsapp-wrapper {

    max-width: 850px;

    margin: auto;

}

.whatsapp-wrapper i {

    font-size: 4rem;

    color: #25D366;

    margin-bottom: 25px;

}

.whatsapp-wrapper h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.5rem, 5vw, 4rem);

    margin-bottom: 20px;

}

.whatsapp-wrapper p {

    color: var(--text-light);

    margin-bottom: 35px;

    line-height: 1.9;

}

/* ========================================= */
/* GOOGLE MAP */
/* ========================================= */

.map-section {

    width: 100%;

    height: 500px;

}

.map-section iframe {

    width: 100%;

    height: 100%;

    border: 0;

    display: block;

}

/* ========================================= */
/* CONTACT PAGE RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .contact-layout {

        grid-template-columns: 1fr;

    }

    .contact-cards-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .contact-cards-grid,
    .business-details-grid {

        grid-template-columns: 1fr;

    }

    .contact-form-wrapper {

        padding: 25px;

    }

    .map-section {

        height: 350px;

    }

}


/* KGG IMPEX V2 - FIX PACK CSS */
/* Add this file AFTER style.css temporarily, or merge into style.css */

.header {

    position: fixed;

    top: 48px;

    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        linear-gradient(90deg,
            rgba(8, 17, 32, .98),
            rgba(16, 26, 46, .98));

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(200, 166, 106, .12);

}



.hero {
    min-height: 90vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 0;
}

.logo img {
    height: 85px;
    filter: brightness(1.8) contrast(1.2);
}

.footer-logo {
    height: 95px;
    filter: brightness(1.8) contrast(1.2);
}

.nav-menu ul {
    gap: 28px;
}

.top-bar-left {
    flex-wrap: wrap;
}

a[href^="tel"],
a[href^="mailto"] {
    color: inherit;
    transition: .3s;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
    color: var(--gold);
}

.feature-card,
.product-card,
.process-step,
.quality-card,
.document-card,
.contact-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

@media (max-width:480px) {
    .logo img {
        height: 65px;
    }
}

/* ========================================= */
/* FINAL FIXES JUNE 2026 */
/* ========================================= */

body {
    padding-top: 138px;
}

.logo img {
    height: 85px !important;
    filter: brightness(1.8) contrast(1.2);
}

.footer-logo {
    height: 95px !important;
    filter: brightness(1.8) contrast(1.2);
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
}

.top-bar-left {
    flex-wrap: wrap;
}

.nav-menu ul {
    gap: 28px;
}

a[href^="tel"],
a[href^="mailto"] {
    color: inherit;
    transition: .3s;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
    color: var(--gold);
}

@media (max-width:768px) {
    body {
        padding-top: 90px;
    }
}

@media (max-width:480px) {
    .logo img {
        height: 65px !important;
    }
}

/* ==================================================
   PRODUCTS PAGE V3
================================================== */

.products-hero-v3 {

    background:
        linear-gradient(
            rgba(8,17,32,.88),
            rgba(8,17,32,.92)
        ),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

}

/* ==================================================
   PRODUCT CATALOG
================================================== */

.products-catalog {

    background: #081120;

}

.catalog-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 70px;

}


.catalog-card {

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 22px;

    overflow: hidden;

    min-height: 360px;

    transition: .4s ease;

    cursor: pointer;

    height: 100%;

}

.catalog-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200,166,106,.4);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}

.catalog-image {

    height: 160px;

    overflow: hidden;

}

.catalog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}

.catalog-card:hover .catalog-image img {

    transform: scale(1.08);

}

.catalog-content {

    padding: 16px;

    text-align: center;

}

.catalog-content h3 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.8rem;

    margin-bottom: 20px;

    min-height: 70px;

}

.catalog-btn {

    background: var(--gold);

    color: #081120;

    border: none;

    padding: 12px 22px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s ease;

}

.catalog-btn:hover {

    transform: translateY(-2px);

}

/* ==================================================
   MODAL
================================================== */

.product-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

}

.product-modal.active {

    display: block;

}

.modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.75);

    backdrop-filter: blur(4px);

}

.modal-container {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;

    max-width: 700px;

    background: #101A2E;

    border-radius: 24px;

    padding: 40px;

    border: 1px solid rgba(255,255,255,.08);

}

.modal-close {

    position: absolute;

    right: 20px;

    top: 20px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    background: rgba(255,255,255,.08);

    color: white;

}

.modal-content h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    margin-bottom: 25px;

    color: var(--gold);

}

.modal-content ul {

    list-style: none;

    display: grid;

    gap: 14px;

}

.modal-content li {

    padding: 16px 20px;

    border-radius: 12px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

}

/* ==================================================
   PACKAGING
================================================== */

.packaging-solutions {

    background: #101A2E;

}

.packaging-cards {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    margin-top: 60px;

}

.pack-card {

    text-align: center;

    padding: 40px 30px;

    border-radius: 22px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    transition: .4s ease;

}

.pack-card:hover {

    transform: translateY(-10px);

    border-color: rgba(200,166,106,.4);

}

.pack-card i {

    font-size: 3rem;

    color: var(--gold);

    margin-bottom: 25px;

}

.pack-card h3 {

    margin-bottom: 15px;

}

.pack-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ==================================================
   DISCLAIMER
================================================== */

.product-disclaimer {

    background: #081120;

    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.08);

}

.product-disclaimer p {

    text-align: center;

    max-width: 1000px;

    margin: auto;

    color: var(--text-light);

    line-height: 1.8;

}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {

    .catalog-grid {

        grid-template-columns: repeat(3,1fr);

    }

}

@media (max-width: 992px) {

    .catalog-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .packaging-cards {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 576px) {

    .catalog-grid {

        grid-template-columns: 1fr;

    }

    .catalog-image {

        height: 240px;

    }

    .modal-container {

        padding: 25px;

    }

    .modal-content h2 {

        font-size: 2rem;

    }

}

/* =========================================
PRODUCTS V3.2
========================================= */

.catalog-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.catalog-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-badge{

    display:inline-block;

    background:rgba(200,166,106,.15);

    border:1px solid rgba(200,166,106,.3);

    color:var(--gold);

    padding:6px 14px;

    border-radius:30px;

    font-size:.75rem;

    font-weight:600;

    margin-bottom:15px;
}

.product-status{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-top:auto;

    margin-bottom:18px;

    color:#d8d8d8;

    font-size:.9rem;
}

.status-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:
        0 0 10px #22c55e;
}

.catalog-content h3{

    min-height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:10px;
}

.catalog-btn {

    width: 100%;

    padding: 10px 18px;

}

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    height: 100vh;

    overflow-y: auto;

    z-index: 10000;

}
@media (max-width: 992px) {

    .header {

        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

    }

    body {

        overflow-x: hidden;

    }

    .hero {

        padding-top: 110px;

    }

    .page-hero {

        padding-top: 140px;

    }

}

.contact-info-card a {

    color: inherit;

    text-decoration: none;

    transition: .3s ease;

}

.contact-info-card a:hover {

    color: var(--gold);

}