/* =============================================
   SJ IMPEX TRADING - Main Stylesheet
   Brand: Dark Green #1b4332 | Gold #c8960c
   ============================================= */

:root {
    --green-dark:  #0f2d1a;
    --green-main:  #1b4332;
    --green-mid:   #2d6a4f;
    --green-light: #40916c;
    --gold:        #c8960c;
    --gold-light:  #f0b429;
    --gold-pale:   #fef3c7;
    --white:       #ffffff;
    --off-white:   #f8faf8;
    --gray-100:    #f4f4f4;
    --gray-200:    #e5e7eb;
    --gray-500:    #6b7280;
    --gray-700:    #374151;
    --text-dark:   #1a2e1a;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --transition:  all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.green { color: var(--green-main); }

/* ---- Section Headers ---- 
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .eyebrow { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--green-dark); margin-bottom: 15px; line-height: 1.2; }
.section-header p { color: var(--gray-500); font-size: 16px; max-width: 600px; margin: 0 auto; }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 15px auto 20px; border-radius: 2px; }*/


/* ==========================================
   WHY CHOOSE US SECTION
========================================== */

.why-section{
    padding:80px 0;
}

/* Left aligned heading */

.section-header-left{
    text-align:left;
    margin-bottom:45px;
}

.section-header-left h2{
    text-align:left;
}

.section-header-left .divider-gold{
    margin:18px 0 0;
}


/* ==========================================
   WHY GRID
========================================== */

.why-grid{

    display:grid;

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

    gap:30px;

    width:100%;

}


/* ==========================================
   WHY CARD
========================================== */

.why-card{

    background:#fff;

    border:1px solid var(--gray-200);

    border-radius:14px;

    padding:25px;

    text-align:left;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    transition:.35s ease;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    height:100%;

}

.why-card:hover{

    transform:translateY(-6px);

    border-color:var(--green-light);

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}


/* ==========================================
   ICON
========================================== */

.why-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--green-main),var(--green-mid));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:18px;

}


/* ==========================================
   TITLE
========================================== */

.why-card h3{

    font-size:22px;

    color:var(--green-dark);

    font-weight:700;

    margin-bottom:10px;

    line-height:1.3;

}


/* ==========================================
   DESCRIPTION
========================================== */

.why-card p{

    font-size:15px;

    color:var(--gray-500);

    line-height:1.8;

}


/* ==========================================
   COMPANY HIGHLIGHTS
========================================== */

.company-highlights{

    padding-top:30px;

}

.highlights-grid{

    display:grid;

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

    gap:30px;

}


/* ==========================================
   HIGHLIGHT CARD
========================================== */

.highlight-card{

    background:#fff;

    border:1px solid var(--gray-200);

    border-radius:14px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    height:100%;

}

.highlight-card:hover{

    transform:translateY(-6px);

    border-color:var(--green-light);

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

.highlight-card i{

    font-size:34px;

    color:var(--green-main);

    margin-bottom:18px;

}

.highlight-card h4{

    font-size:20px;

    color:var(--green-dark);

    margin-bottom:10px;

}

.highlight-card p{

    font-size:15px;

    color:var(--gray-500);

    line-height:1.8;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width:992px){

    .why-grid{

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

    }

    .highlights-grid{

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

    }

}


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

@media (max-width:768px){

    .section-header-left{

        text-align:center;

    }

    .section-header-left h2{

        text-align:center;

    }

    .section-header-left .divider-gold{

        margin:18px auto 0;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .highlights-grid{

        grid-template-columns:1fr;

    }

    .why-card,

    .highlight-card{

        padding:22px;

    }

}



/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green-main); }
.btn-wa { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-wa:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: var(--green-dark); color: rgba(255,255,255,0.85); font-size: 12.5px; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.top-bar-left { display: flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 500; }
.top-bar-left i { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-right a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 5px; }
.top-bar-right a:hover { color: var(--gold-light); }
.top-bar-right i { font-size: 13px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.main-header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 60px; width: auto; object-fit: contain; }
.logo-fallback { align-items: center; gap: 10px; }
.logo-icon { width: 50px; height: 50px; background: var(--green-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.logo-text small { display: block; font-size: 10px; letter-spacing: 3px; color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 600; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm); position: relative; }
.main-nav > a:hover, .main-nav > a.active { color: var(--green-main); }
.main-nav > a.active::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px; background: var(--gold); border-radius: 2px; }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--gray-700); cursor: pointer; border-radius: var(--radius-sm); }
.nav-dropdown:hover > a { color: var(--green-main); }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 200px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); border-top: 3px solid var(--gold); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 14px; color: var(--gray-700); }
.dropdown-menu a:hover { background: var(--off-white); color: var(--green-main); padding-left: 25px; }
.dropdown-menu a i { width: 16px; color: var(--gold); }

.btn-whatsapp-nav { background: #25d366; color: var(--white) !important; padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 7px; margin-left: 10px; }
.btn-whatsapp-nav:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.35); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background: var(--green-main); border-radius: 2px; transition: var(--transition); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 50%, var(--green-mid) 100%); }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-content { position: relative; z-index: 2; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 20px; }
.hero-text { color: var(--white); }
.hero-eyebrow { font-size: 13px; font-weight: 600; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-text h1 span { color: var(--gold-light); }
.hero-text p { font-size: 16px; opacity: 0.9; margin-bottom: 35px; max-width: 480px; line-height: 1.7; }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 45px; padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 12px; opacity: 0.8; margin-top: 4px; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image img { border-radius: var(--radius-lg); max-height: 480px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--gold); color: var(--white); border-radius: var(--radius-md); padding: 20px; text-align: center; box-shadow: var(--shadow-lg); }
.hero-badge strong { font-size: 22px; display: block; }
.hero-badge span { font-size: 11px; font-weight: 500; }

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.marquee-bar { background: var(--gold); padding: 12px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--white); }
.marquee-item i { font-size: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.why-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 25px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--green-main), var(--green-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--white); font-size: 24px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   PRODUCTS SECTION / CARDS
   ============================================ */
.products-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; border-radius: 30px; font-size: 13px; font-weight: 600; border: 2px solid var(--gray-200); color: var(--gray-700); background: var(--white); transition: var(--transition); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--green-main); color: var(--white); border-color: var(--green-main); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; }
.product-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.product-card-img { position: relative; height: 180px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 30px; letter-spacing: 1px; }
.product-card-body { padding: 18px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.product-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.product-meta i { color: var(--gold); width: 12px; }
.product-card-actions { display: flex; gap: 8px; margin-top: 15px; }
.btn-view { flex: 1; padding: 8px 12px; font-size: 12px; background: var(--green-main); color: var(--white); border-radius: var(--radius-sm); text-align: center; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px; }
.btn-view:hover { background: var(--green-mid); }
.btn-wa-card { padding: 8px 12px; background: #25d366; color: var(--white); border-radius: var(--radius-sm); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.btn-wa-card:hover { background: #1fba5a; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-detail-img img { width: 100%; height: 400px; object-fit: cover; }
.product-detail-info h1 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--green-dark); margin-bottom: 15px; }
.product-detail-info .desc { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 25px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 25px; }
.spec-table tr { border-bottom: 1px solid var(--gray-200); }
.spec-table td { padding: 10px 12px; font-size: 14px; }
.spec-table td:first-child { font-weight: 600; color: var(--green-dark); width: 40%; background: var(--off-white); }
.spec-table td:last-child { color: var(--gray-700); }
.product-detail-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry-section { background: var(--off-white); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.inquiry-info h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--green-dark); margin-bottom: 15px; }
.inquiry-info p { color: var(--gray-500); margin-bottom: 25px; line-height: 1.8; }
.inquiry-benefits li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-700); }
.inquiry-benefits li i { color: var(--green-main); font-size: 16px; width: 20px; }

.inquiry-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); }
.inquiry-form-box h3 { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 25px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group label .req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 14px; font-family: inherit; color: var(--text-dark); background: var(--white);
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(27,67,50,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 700; background: var(--green-main); color: var(--white); border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Alert messages */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================
   EXPORT COUNTRIES
   ============================================ */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; }
.country-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.country-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.country-card-img { height: 140px; overflow: hidden; position: relative; }
.country-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.country-card:hover .country-card-img img { transform: scale(1.06); }
.country-flag-overlay { position: absolute; top: 10px; left: 10px; font-size: 28px; background: rgba(255,255,255,0.9); border-radius: 6px; padding: 3px 8px; }
.country-card-body { padding: 16px; }
.country-card-body h3 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.country-products { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; }
.country-products i { color: var(--gold); margin-right: 5px; }
.btn-learn { font-size: 12px; color: var(--green-main); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.btn-learn:hover { gap: 8px; color: var(--gold); }

/* Stats counter bar */
.stats-bar { background: var(--green-dark); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.stat-box { color: var(--white); }
.stat-box i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 13px; opacity: 0.8; margin-top: 6px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { columns: 3; gap: 15px; }
.gallery-item { break-inside: avoid; margin-bottom: 15px; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(15,45,26,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 28px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: 20px; right: 25px; color: var(--white); font-size: 32px; cursor: pointer; background: none; border: none; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; align-items: stretch; }
.contact-grid > div:first-child { display: flex; flex-direction: column; }
.contact-info-box { background: var(--green-main); color: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-info-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-info-box p { opacity: 0.85; font-size: 14px; margin-bottom: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold-light); flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 14px; margin-bottom: 3px; }
.contact-info-text a, .contact-info-text span { font-size: 13.5px; opacity: 0.85; }
.contact-info-text a:hover { color: var(--gold-light); opacity: 1; }

.contact-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); display: flex; flex-direction: column; }
.contact-form-box h3 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 25px; }

.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 30px; }
.map-container iframe { width: 100%; height: 300px; border: none; display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--green-main)); padding: 70px 0; text-align: center; color: var(--white); }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 42px); margin-bottom: 15px; }
.cta-banner p { font-size: 16px; opacity: 0.85; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.cert-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 25px 30px; text-align: center; min-width: 180px; transition: var(--transition); }
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.cert-card i { font-size: 32px; color: var(--gold); margin-bottom: 10px; }
.cert-card strong { display: block; font-size: 14px; color: var(--green-dark); margin-bottom: 4px; }
.cert-card span { font-size: 12px; color: var(--gray-500); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--white); border-radius: var(--radius-md); padding: 20px 25px; text-align: center; box-shadow: var(--shadow-lg); }
.about-img-badge strong { display: block; font-size: 36px; font-family: 'Playfair Display', serif; }
.about-text .eyebrow { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 38px); color: var(--green-dark); margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: var(--gray-500); font-size: 15px; line-height: 1.8; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.about-feature i { color: var(--green-main); }
.signature { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green-dark); margin-top: 20px; }
.signature small { display: block; font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--gray-500); font-style: normal; margin-top: 2px; }

.four-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.four-img-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.four-img-item img { width: 100%; height: 200px; object-fit: cover; }
.four-img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: var(--white); padding: 20px 12px 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.four-img-caption i { color: var(--gold-light); }

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 70%, var(--green-mid) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: 0; top: 0; width: 40%; height: 100%; background: url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?w=800&q=60') center/cover; opacity: 0.15; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 5vw, 52px); color: var(--white); margin-bottom: 15px; }
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 550px; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   HIGHLIGHTS / FEATURE ROWS
   ============================================ */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.highlight-card { text-align: center; padding: 30px 20px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.highlight-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.highlight-card i { font-size: 32px; color: var(--green-main); margin-bottom: 14px; }
.highlight-card h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.highlight-card p { font-size: 13px; color: var(--gray-500); }

/* ============================================
   FOOTER
   ============================================ */
.footer-stats-bar { background: var(--green-dark); padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; }
.stat-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.stat-item i { font-size: 22px; color: var(--gold); }
.stat-item strong { display: block; font-size: 13px; }
.stat-item span { font-size: 11px; opacity: 0.7; }

.main-footer { background: var(--green-dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 55px; margin-bottom: 15px; object-fit: contain; }
.footer-col p { font-size: 13.5px; line-height: 1.7; opacity: 0.8; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(200,150,12,0.3); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; opacity: 0.8; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold-light); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--gold); }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); transform: translateY(-3px); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; width: 14px; }
.footer-contact-item a { opacity: 0.85; }
.footer-contact-item a:hover { color: var(--gold-light); opacity: 1; }
.btn-wa-footer { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; margin-top: 12px; }
.btn-wa-footer:hover { background: #1fba5a; transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-reg { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12px; opacity: 0.7; }
.footer-copy p { font-size: 12px; opacity: 0.65; }
.footer-copy span { opacity: 0.5; }

/* ============================================
   FLOATING WHATSAPP + SCROLL TOP
   ============================================ */
.floating-whatsapp { position: fixed; bottom: 30px; right: 25px; z-index: 999; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition); }
.floating-whatsapp:hover { background: #1fba5a; transform: scale(1.12); }
.wa-tooltip { position: absolute; right: 66px; background: var(--green-dark); color: var(--white); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition); }
.floating-whatsapp:hover .wa-tooltip { opacity: 1; visibility: visible; }
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--green-dark); }

.scroll-top { position: fixed; bottom: 95px; right: 25px; z-index: 998; width: 42px; height: 42px; background: var(--green-main); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: var(--transition); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.thankyou-box { max-width: 560px; }
.thankyou-icon { width: 100px; height: 100px; background: linear-gradient(135deg, var(--green-main), var(--green-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 44px; color: var(--white); margin: 0 auto 25px; }
.thankyou-box h1 { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--green-dark); margin-bottom: 15px; }
.thankyou-box p { color: var(--gray-500); font-size: 16px; line-height: 1.7; margin-bottom: 30px; }

/* ============================================
   CRM ADMIN PAGE
   ============================================ */
.crm-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.crm-table th { background: var(--green-main); color: var(--white); padding: 12px 15px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.crm-table td { padding: 11px 15px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.crm-table tr:hover td { background: var(--off-white); }
.crm-table tr:nth-child(even) td { background: var(--gray-100); }
.crm-stats { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.crm-stat { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 20px 25px; flex: 1; min-width: 140px; }
.crm-stat strong { font-size: 28px; color: var(--green-main); display: block; }
.crm-stat span { font-size: 13px; color: var(--gray-500); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-image { display: none; }
    .hero-eyebrow { justify-content: center; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-cta { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-stack { display: none; }
    .inquiry-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-right { font-size: 11px; gap: 12px; }
    .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 80px 30px 30px; overflow-y: auto; z-index: 9000; gap: 5px; }
    .main-nav.open { display: flex; }
    .main-nav > a, .nav-dropdown > a { font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); width: 100%; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--off-white); border-radius: var(--radius-sm); margin-top: 5px; }
    .mobile-toggle { display: flex; z-index: 9999; position: relative; }
    .btn-whatsapp-nav { margin: 15px 0 0; width: 100%; justify-content: center; }
    .section { padding: 55px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .four-img-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-stats-inner { justify-content: flex-start; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer-reg { gap: 10px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hero-stat-num { font-size: 24px; }
    .cert-grid { flex-direction: column; align-items: center; }
}
