/* ======================================
   ARBI FOODS - Professional Theme
   Dark Header/Footer + White Body
   Orange Accent
   ====================================== */

:root {
    --dark:         #0f1410;
    --dark-nav:     #161d16;
    --dark-border:  #2a3a2a;
    --orange:       #f97316;
    --orange-hover: #ea6c0a;
    --orange-light: #fff7ed;
    --orange-glow:  rgba(249,115,22,0.15);
    --green-dim:    #166534;
    --white:        #ffffff;
    --body-bg:      #f8fafc;
    --card-bg:      #ffffff;
    --text-dark:    #1e293b;
    --text-mid:     #475569;
    --text-light:   #94a3b8;
    --border-light: #e2e8f0;
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
    --shadow-md:    0 6px 28px rgba(0,0,0,0.11);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: var(--text-dark); background: var(--body-bg); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ======================================
   TOPBAR — DARK
   ====================================== */
.topbar {
    background: var(--dark);
    color: #94a3b8;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid var(--dark-border);
}
.topbar .fa { margin-right: 5px; color: var(--orange); }

/* ======================================
   HEADER — DARK, logo + nav SAME LINE
   ====================================== */
.main-header {
    background: var(--dark);
    border-bottom: 2px solid var(--orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img   { height: 50px; }

/* ---- NAV (inline with logo) ---- */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 64px;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    height: 64px;
    color: #cbd5e1;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--orange);
    transition: left 0.2s, right 0.2s;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after { left: 0; right: 0; }
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: #fff; background: rgba(255,255,255,0.05); }

.nav-menu > li.enquiry-btn > a {
    background: var(--orange);
    color: #fff;
    padding: 0 20px;
    margin-left: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    height: 38px;
    border-radius: 22px;
}
.nav-menu > li.enquiry-btn > a::after { display: none; }
.nav-menu > li.enquiry-btn > a:hover { background: var(--orange-hover); color: #fff; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-top: 3px solid var(--orange);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    list-style: none;
    padding: 6px 0;
}
.dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.15s, padding-left 0.15s, color 0.15s;
}
.dropdown li a:hover { background: var(--orange-light); color: var(--orange); padding-left: 24px; }
.has-dropdown:hover .dropdown { display: block; }

/* Mobile toggle */
.navbar-toggle {
    background: var(--orange);
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    display: none;
    cursor: pointer;
}
.navbar-toggle .icon-bar {
    display: block; width: 22px; height: 2px;
    background: #fff; margin: 4px 0;
}

/* ======================================
   HERO — DARK
   ====================================== */
.hero-section {
    background: var(--dark);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.hero-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 550px; height: 550px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-text { padding: 70px 0; position: relative; z-index: 2; }
.hero-text .tagline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,115,22,0.12);
    color: var(--orange);
    border: 1px solid rgba(249,115,22,0.3);
    padding: 6px 18px; border-radius: 20px;
    font-size: 12px; letter-spacing: 2.5px;
    text-transform: uppercase; margin-bottom: 20px; font-weight: 700;
}
.hero-text .tagline::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; color: #fff;
    line-height: 1.12; margin-bottom: 20px; font-weight: 900;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
    font-size: 16px; color: #94a3b8;
    margin-bottom: 32px; max-width: 480px; line-height: 1.8;
}
.btn-hero {
    display: inline-block; background: var(--orange); color: #fff;
    padding: 13px 32px; border-radius: 28px; font-size: 15px; font-weight: 800;
    margin-right: 12px; transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-hero:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,0.45); }
.btn-hero-outline {
    display: inline-block; border: 2px solid rgba(249,115,22,0.5);
    color: var(--orange); padding: 11px 28px; border-radius: 28px;
    font-size: 14px; font-weight: 700; transition: all 0.2s;
}
.btn-hero-outline:hover { background: rgba(249,115,22,0.1); border-color: var(--orange); color: var(--orange); }
.hero-image-col { display: flex; justify-content: center; align-items: flex-end; position: relative; z-index: 2; }
.hero-bottles { display: flex; align-items: flex-end; gap: 14px; animation: floatUp 0.9s ease-out; }
.hero-bottles img { filter: drop-shadow(0 0 18px rgba(249,115,22,0.2)) drop-shadow(0 16px 32px rgba(0,0,0,0.5)); }
@keyframes floatUp { from{opacity:0;transform:translateY(40px);} to{opacity:1;transform:translateY(0);} }

/* ======================================
   STATS BAR — WHITE
   ====================================== */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; padding: 8px; }
.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px; font-weight: 900;
    color: var(--orange); line-height: 1;
}
.stat-item .stat-label {
    font-size: 11px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 2px; margin-top: 5px;
}
.stat-divider { border-left: 1px solid var(--border-light); }

/* ======================================
   SECTIONS — WHITE BODY
   ====================================== */
.section { padding: 75px 0; background: var(--body-bg); }
.section-alt { background: var(--white); }

.section-title { text-align: center; margin-bottom: 52px; }
.section-title .subtitle {
    display: inline-block; font-size: 11px; font-weight: 800;
    color: var(--orange); letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 10px;
}
.section-title h2 {
    font-family: 'Playfair Display', serif; font-size: 36px;
    font-weight: 700; color: var(--text-dark); margin-bottom: 12px;
}
.section-title .divider {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--orange), #fcd34d);
    margin: 0 auto 16px; border-radius: 2px;
}
.section-title p { color: var(--text-mid); font-size: 16px; max-width: 580px; margin: 0 auto; }

/* ---- ABOUT ---- */
.about-img-wrap { position: relative; padding: 20px; }
.about-img-wrap img { border-radius: 14px; box-shadow: var(--shadow-md); width: 100%; }
.about-badge {
    position: absolute; bottom: 0; right: 0;
    background: var(--orange); color: #fff;
    padding: 18px 22px; border-radius: 12px; text-align: center;
    font-family: 'Playfair Display', serif;
}
.about-badge .yr { font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge .yr-label { font-size: 10px; letter-spacing: 1.5px; font-weight: 700; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--text-dark); margin-bottom: 16px; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.feature-list { list-style: none; padding: 0; margin: 16px 0; }
.feature-list li {
    padding: 7px 0; color: var(--text-mid); font-size: 14px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .fa { color: var(--orange); font-size: 15px; flex-shrink: 0; }

/* ---- PRODUCT CARDS ---- */
.product-card {
    background: var(--card-bg); border: 1px solid var(--border-light);
    border-radius: 14px; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    margin-bottom: 28px; text-align: center;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.product-card-img {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    padding: 30px 20px; display: flex;
    justify-content: center; align-items: center; min-height: 210px;
}
.product-card-img img { height: 170px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12)); }
.product-card-body { padding: 22px 20px; }
.product-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text-dark); margin-bottom: 10px; }
.product-card-body p { color: var(--text-mid); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.btn-product {
    display: inline-block; background: var(--orange); color: #fff;
    padding: 9px 24px; border-radius: 22px; font-size: 13px; font-weight: 700;
    transition: background 0.2s, transform 0.15s;
}
.btn-product:hover { background: var(--orange-hover); color: #fff; transform: translateY(-1px); }

/* ---- WHY US BOXES ---- */
.why-icon-box {
    text-align: center; padding: 30px 20px;
    background: var(--card-bg); border: 1px solid var(--border-light);
    border-radius: 14px; margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: var(--shadow-sm);
}
.why-icon-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-icon-box .icon-circle {
    width: 66px; height: 66px; background: var(--orange-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 26px; color: var(--orange);
    border: 2px solid rgba(249,115,22,0.2);
}
.why-icon-box h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-icon-box p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ---- FORMS ---- */
.contact-form-wrap {
    background: var(--card-bg); border: 1px solid var(--border-light);
    border-radius: 14px; padding: 34px; box-shadow: var(--shadow-sm);
}
.form-control {
    background: #f8fafc !important; border: 1.5px solid var(--border-light) !important;
    border-radius: 8px !important; height: 44px; font-size: 14px;
    color: var(--text-dark) !important; padding: 10px 14px;
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-control:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.12) !important;
    outline: none; background: #fff !important;
}
textarea.form-control { height: 110px !important; resize: vertical; }
.form-group { margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; display: block; letter-spacing: 0.3px; }
.btn-submit {
    background: var(--orange); color: #fff; border: none;
    padding: 13px 32px; border-radius: 26px; font-size: 15px;
    font-weight: 800; cursor: pointer; transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.btn-submit:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }

/* ---- PAGE BANNER — DARK ---- */
.page-banner {
    background: var(--dark);
    padding: 50px 0; text-align: center; position: relative; overflow: hidden;
    border-bottom: 2px solid var(--orange);
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(249,115,22,0.07) 0%, transparent 70%);
}
.page-banner h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: 38px; font-weight: 900; margin-bottom: 10px; position: relative; }
.page-banner .breadcrumb-custom {
    color: #64748b; font-size: 13px; list-style: none;
    display: inline-flex; gap: 8px; padding: 0; margin: 0; position: relative;
}
.page-banner .breadcrumb-custom li + li::before { content: '›'; margin-right: 8px; color: var(--orange); }
.page-banner .breadcrumb-custom a { color: var(--orange); }

/* ---- CONTACT INFO BOX ---- */
.contact-info-box {
    background: var(--dark); border-radius: 14px; padding: 32px;
    border: 1px solid var(--dark-border);
}
.contact-info-box h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; color: #fff; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item .ci-icon {
    width: 42px; height: 42px; background: rgba(249,115,22,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--orange); flex-shrink: 0;
    border: 1px solid rgba(249,115,22,0.25);
}
.contact-info-item .ci-text strong { display: block; margin-bottom: 3px; color: var(--orange); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.contact-info-item .ci-text span { font-size: 14px; color: #94a3b8; }

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
    background: #f8fafc; border: 2px dashed var(--border-light);
    border-radius: 12px; height: 200px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-light); font-size: 14px; margin-top: 20px; gap: 6px;
}
.map-placeholder .fa { font-size: 32px; color: var(--orange); margin-bottom: 6px; }

/* ---- PRODUCT TABS ---- */
.product-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 38px; flex-wrap: wrap; }
.product-tab-btn {
    background: #fff; border: 1.5px solid var(--border-light);
    color: var(--text-mid); padding: 9px 24px; border-radius: 24px;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.product-tab-btn.active,
.product-tab-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,0.25); }

/* ---- ENQUIRY PAGE ---- */
.enquiry-hero {
    background: var(--dark); border: 1px solid var(--dark-border);
    border-left: 4px solid var(--orange);
    border-radius: 14px; padding: 34px; margin-bottom: 26px;
}
.enquiry-hero h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 12px; color: #fff; }
.enquiry-hero p { font-size: 14px; color: #94a3b8; line-height: 1.8; }
.enquiry-checklist { list-style: none; padding: 0; margin-top: 18px; }
.enquiry-checklist li { padding: 7px 0; font-size: 14px; color: #94a3b8; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--dark-border); }
.enquiry-checklist li:last-child { border-bottom: none; }
.enquiry-checklist li .fa { color: var(--orange); }

/* ---- SELECT DROPDOWN ---- */
select.form-control {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f97316' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important; padding-right: 36px;
}

/* ---- GALLERY ---- */
.gallery-card {
    background: var(--card-bg); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-sm); margin-bottom: 26px;
    border: 1px solid var(--border-light);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.gallery-card-img {
    background: linear-gradient(135deg, #fff7ed, #fef9c3);
    padding: 26px; display: flex; align-items: center; justify-content: center; min-height: 180px;
}
.gallery-card-label { padding: 13px 16px; font-weight: 700; font-size: 13px; color: var(--text-dark); text-align: center; border-top: 1px solid var(--border-light); }
.gallery-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.gallery-tab-btn {
    background: #fff; border: 1.5px solid var(--border-light); color: var(--text-mid);
    padding: 8px 22px; border-radius: 22px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.gallery-tab-btn.active, .gallery-tab-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ======================================
   FOOTER — DARK
   ====================================== */
.main-footer {
    background: var(--dark);
    color: #94a3b8; padding: 56px 0 0;
    border-top: 2px solid var(--orange);
}
.footer-brand p { font-size: 14px; line-height: 1.8; color: #64748b; margin: 14px 0; }
.footer-gst { font-size: 12px; color: var(--orange); }
.footer-heading {
    color: #fff; font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-border);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { color: #64748b; font-size: 13px; transition: color 0.2s, padding-left 0.2s; }
.footer-links li a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { font-size: 13px; color: #64748b; margin-bottom: 12px; line-height: 1.6; display: flex; gap: 10px; }
.footer-contact li .fa { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
    background: #080c08; padding: 16px 0; margin-top: 44px;
    font-size: 12px; color: #475569;
    border-top: 1px solid var(--dark-border);
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }

/* ---- SUCCESS/ERROR PANELS ---- */
.panel-success { background:#f0fdf4; border:1.5px solid #86efac; color:#166534; padding:14px 20px; border-radius:8px; margin-bottom:18px; font-weight:600; font-size:14px; }
.panel-error   { background:#fef2f2; border:1.5px solid #fca5a5; color:#991b1b; padding:14px 20px; border-radius:8px; margin-bottom:18px; font-weight:600; font-size:14px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .navbar-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; height: auto; background: #161d16; width: 100%; }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { height: auto; padding: 12px 18px; border-bottom: 1px solid var(--dark-border); }
    .nav-menu > li.enquiry-btn > a { margin: 10px 18px; border-radius: 22px; height: auto; }
    .hero-text h1 { font-size: 30px; }
    .hero-image-col { display: none; }
    .stat-divider { border-left: none; border-top: 1px solid var(--border-light); }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 27px; }
}
