html ,body
{
    overflow-x: hidden;
}
  :root {
    --espresso: #1a0a00;
    --roast: #3d1c00;
    --caramel: #c47a2b;
    --gold: #e8a84c;
    --cream: #f5ede0;
    --ivory: #faf6f0;
    --smoke: #9e8c7a;
    --light-smoke: #d4c4b0;
    --white: #ffffff;
    --heading-font: 'Cormorant Garamond', Georgia, serif;
    --body-font: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body-font);
    background: var(--ivory);
    color: var(--espresso);
    overflow-x: hidden !important;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--caramel); border-radius: 3px; }

  /* ══════════════════════════════
     NAVBAR
  ══════════════════════════════ */
  .navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 4% 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
    background: #1c0c02;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  }
  .navbar.scrolled {
    background: rgba(26,10,0,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }
  .nav-logo {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.03em;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { font-style: italic; color: var(--gold); font-weight: 300; }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: rgb(218, 174, 117);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--caramel);
    color: var(--white) !important;
    padding: 8px 22px !important;
    border-radius: 2px;
    letter-spacing: 0.1em !important;
    transition: background 0.25s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; }
  .nav-cta::after { display: none !important; }

  /* hamburger */
  .ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .ham span {
    display: block; width: 26px; height: 2px; background: var(--gold);
    margin: 5px 0; transition: all 0.3s;
  }
  .mob-menu {
    display: none; flex-direction: column;
    position: fixed; top: 76px; left: 0; width: 100%;
    background: rgba(26,10,0,0.97);
    padding: 30px 5% 40px; gap: 20px;
    z-index: 999;
  }
  .mob-menu.open { display: flex; }
  .mob-menu a {
    color: var(--cream); text-decoration: none;
    font-size: 1.15rem; font-family: var(--heading-font);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 14px;
    transition: color 0.2s;
  }
  .mob-menu a:hover { color: var(--gold); }

  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .hero {
    position: relative; height: 100vh; min-height: 680px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('../img/2.jpg') center/cover no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease;
  }
  .hero:hover .hero-bg { transform: scale(1); }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,10,0,0.75) 0%, rgba(61,28,0,0.55) 60%, rgba(26,10,0,0.8) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url('../img/2.jpg');
  }
  .hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 0 20px; max-width: 860px;
    animation: heroFade 1.2s ease both;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tag {
    display: inline-block;
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    border: 1px solid rgba(232,168,76,0.4);
    padding: 6px 18px; border-radius: 1px;
    margin-bottom: 28px;
    animation: heroFade 1.2s 0.2s ease both;
  }
  .hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    animation: heroFade 1.2s 0.35s ease both;
  }
  .hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .hero p {
    font-size: 1.05rem; color: rgba(245,237,224,0.75);
    font-weight: 300; line-height: 1.7; max-width: 540px; margin: 0 auto 40px;
    animation: heroFade 1.2s 0.5s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: heroFade 1.2s 0.65s ease both;
  }
  .btn-primary-gold {
    background: var(--caramel);
    color: var(--white);
    padding: 14px 36px;
    border: none; border-radius: 2px;
    font-family: var(--body-font);
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(196,122,43,0.35);
  }
  .btn-primary-gold:hover {
    background: var(--gold); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,122,43,0.45);
  }
  .btn-outline-cream {
    background: transparent;
    color: var(--cream);
    padding: 13px 36px;
    border: 1px solid rgba(245,237,224,0.4);
    border-radius: 2px;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
  }
  .btn-outline-cream:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(245,237,224,0.5); font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; z-index: 2;
    animation: heroFade 1.2s 1s ease both;
  }
  .scroll-line {
    width: 1px; height: 50px; background: rgba(245,237,224,0.3);
    animation: scrollDrop 1.8s ease infinite;
  }
  @keyframes scrollDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ══════════════════════════════
     SECTION COMMON
  ══════════════════════════════ */
  .section { padding: 80px; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--caramel);
    font-weight: 500; margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--caramel);
  }
  .section-title {
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.15;
    color: var(--espresso);
    margin-bottom: 22px;
  }
  .section-title em { font-style: italic; color: var(--caramel); }
  .section-desc {
    font-size: 1rem; color: var(--smoke);
    line-height: 1.8; max-width: 520px;
  }

  /* ══════════════════════════════
     ABOUT
  ══════════════════════════════ */
  .about { background: var(--ivory); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img-wrap img {
    width: 100%; aspect-ratio: 7/5; object-fit: cover;
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--caramel);
    display: block;
  }
  .about-img-accent {
    position: absolute; bottom: -24px; right: -24px;
    width: 160px; height: 160px;
    border: 2px solid var(--gold); opacity: 0.4; z-index: -1;
    border-radius: 0;
  }
  .about-badge {
    position: absolute; top: -20px; left: -20px;
    background: var(--espresso);
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 1.1rem; font-style: italic;
    padding: 16px 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    line-height: 1.3;
    text-align: center;
  }
  .about-badge strong { display: block; font-size: 2rem; font-style: normal; font-weight: 600; }
  .about-list {
    list-style: none; margin-top: 28px;
  }
  .about-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-smoke);
    font-size: 0.9rem; color: var(--smoke);
    display: flex; align-items: center; gap: 12px;
  }
  .about-list li i { color: var(--caramel); font-size: 0.85rem; }

  /* ══════════════════════════════
     EXPERTISE
  ══════════════════════════════ */
  .expertise { background: var(--espresso); }
  .expertise .section-title { color: var(--white); }
  .expertise .section-desc { color: var(--white); }
  .expertise-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .exp-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px 28px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .exp-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.4s;
  }
  .exp-card:hover { background: rgba(232,168,76,0.06); }
  .exp-card:hover::before { width: 100%; }
  .exp-num {
    font-family: var(--heading-font); font-size: 3.5rem;
    font-weight: 300; color: rgb(250, 247, 244);
    line-height: 1; margin-bottom: 20px;
  }
  .exp-icon {
    font-size: 1.4rem; color: var(--caramel);
    margin-bottom: 16px; display: block;
  }
  .exp-title {
    font-family: var(--heading-font);
    font-size: 1.2rem; font-weight: 600;
    color: var(--cream); margin-bottom: 12px;
  }
  .exp-desc { font-size: 0.82rem; color: var(--white); line-height: 1.7; }

  /* ══════════════════════════════
     PRODUCTS
  ══════════════════════════════ */
  .products { background: var(--cream); }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-top: 60px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
  }
  .product-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.13);
  }
  .product-img {
    width: 100%; height: 260px; object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .product-card:hover .product-img { transform: scale(1.04); }
  .product-img-wrap { overflow: hidden; }
  .product-body { padding: 30px 28px; }
  .product-tag {
    display: inline-block;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--caramel); font-weight: 600;
    border: 1px solid rgba(196,122,43,0.3);
    padding: 4px 12px; margin-bottom: 14px;
  }
  .product-name {
    font-family: var(--heading-font);
    font-size: 1.55rem; font-weight: 600;
    color: var(--espresso); margin-bottom: 10px;
  }
  .product-desc { font-size: 0.88rem; color: var(--smoke); line-height: 1.7; }
  .product-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px;
    color: var(--caramel); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.2s;
  }
  .product-link:hover { gap: 14px; }

  /* ══════════════════════════════
     WHY US - Split Layout
  ══════════════════════════════ */
  .why-us {
    background: var(--ivory);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .why-left {
    background: var(--roast);
    padding: 80px 6%;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .why-left::after {
    content: '"'; font-family: var(--heading-font);
    position: absolute; bottom: -40px; right: 10px;
    font-size: 22rem; color: rgba(255,255,255,0.03);
    line-height: 1; pointer-events: none;
  }
  .why-left .section-title { color: var(--cream); }
  .why-left .section-desc { color: rgba(245,237,224,0.65); }
  .why-right {
    padding: 80px 6%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; align-content: center;
  }
  .why-item {
    padding: 24px 20px;
    border: 1px solid var(--light-smoke);
    background: var(--white);
    transition: border-color 0.3s, transform 0.3s;
  }
  .why-item:hover { border-color: var(--caramel); transform: translateY(-4px); }
  .why-icon {
    font-size: 1.5rem; color: var(--caramel);
    margin-bottom: 14px; display: block;
  }
  .why-title {
    font-family: var(--heading-font);
    font-size: 1.15rem; font-weight: 600;
    color: var(--espresso); margin-bottom: 8px;
  }
  .why-desc { font-size: 0.82rem; color: var(--smoke); line-height: 1.65; }

  /* ══════════════════════════════
     EXPORT FOCUS
  ══════════════════════════════ */
  .export { background: var(--cream); }
  .export-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .export-img {
    position: relative;
  }
  .export-img img {
    width: 100%; aspect-ratio: 3/2; object-fit: cover;
    display: block;
  }
  .export-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(196,122,43,0.15), transparent);
  }
  .export-list {
    list-style: none; margin-top: 30px; margin-bottom: 36px;
  }
  .export-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-smoke);
    font-size: 0.9rem; color: var(--espresso);
    display: flex; align-items: center; gap: 14px;
    font-weight: 400;
    transition: padding-left 0.2s;
  }
  .export-list li:hover { padding-left: 6px; }
  .export-list li i { color: var(--caramel); }

  /* ══════════════════════════════
     CONTACT
  ══════════════════════════════ */
  .contact-section {
    background: var(--espresso);
    padding: 100px 5%;
    position: relative; overflow: hidden;
  }
  .contact-section::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,122,43,0.08) 0%, transparent 70%);
  }
  .contact-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: start;
  }
  .contact-info .section-title { color: var(--cream); margin-bottom: 14px; }
  .contact-info .section-desc { color: var(--white); margin-bottom: 40px; }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 22px;
  }
  .contact-detail-icon {
    width: 38px; height: 38px;
    background: rgba(232,168,76,0.12);
    border: 1px solid rgba(232,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
  }
  .contact-detail-text { font-size: 0.88rem; color: var(--smoke); line-height: 1.6; }
  .contact-detail-text strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 2px; }
  .contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 44px 40px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-label {
    display: block; margin-bottom: 8px;
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white); font-weight: 500;
  }
  .form-ctrl {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    padding: 13px 16px;
    font-family: var(--body-font);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    border-radius: 0;
  }
  .form-ctrl::placeholder { color: rgba(158,140,122,0.6); }
  .form-ctrl:focus {
    border-color: var(--caramel);
    background: rgba(255,255,255,0.09);
  }
  textarea.form-ctrl { resize: vertical; min-height: 110px; }

  /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
  footer {
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../img/coffee.jpg') no-repeat center/cover;
  padding: 60px 5% 0;
  border-top: 1px solid rgba(232,168,76,0.15);
}
  .footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 50px; max-width: 1200px; margin: 0 auto;
    padding-bottom: 50px;
  }
  .footer-logo {
    font-family: var(--heading-font);
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold); margin-bottom: 16px;
    display: block;
  }
  .footer-about { font-size: 0.85rem; color: var(--white); line-height: 1.75; margin-bottom: 24px; }
  .social-row { display: flex; gap: 12px; }
  .social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--smoke); font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
  }
  .social-icon i{
    color: white !important;
  }
  .social-icon{ border-color: var(--caramel); color: var(--gold); background: rgba(196,122,43,0.1); }
  .footer-heading {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white); font-weight: 600;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: var(--white); text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
  }
  .footer-links a:hover { color: var(--gold); padding-left: 5px; }
  .footer-contact-item {
    display: flex; gap: 12px; margin-bottom: 14px;
    font-size: 0.85rem; color: var(--white);
    align-items: flex-start;
  }
  .footer-contact-item i { color: var(--white); margin-top: 3px; flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0; text-align: center;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--white);
    max-width: 1200px; margin: 0 auto;
    flex-wrap: wrap; gap: 10px;
  }

  /* ══════════════════════════════
     ANIMATIONS (scroll-reveal)
  ══════════════════════════════ */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.1s !important; }
  .delay-2 { transition-delay: 0.2s !important; }
  .delay-3 { transition-delay: 0.3s !important; }
  .delay-4 { transition-delay: 0.4s !important; }
  .delay-5 { transition-delay: 0.5s !important; }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 1100px) {
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-logo img{
      max-width: 76px !important;
    }
    .navbar{
      height: 100px !important;
    }
  }

  @media (max-width: 900px) {
    .about-grid, .export-inner, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
    .why-us { grid-template-columns: 1fr; }
    .why-right { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-badge { display: none; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .ham { display: block; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 70px 5%; }
    .contact-form { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 540px) {
    .products-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .why-right { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.6rem; }
  }




  .mob-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: #2b1206;
  padding: 60px 20px;
  transition: 0.3s;
  z-index: 999;
}

.mob-menu.open {
  right: 0;
}

/* CLOSE BUTTON */
.mob-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.mob-menu {
  z-index: 9999; /* bring menu above everything */
}

.mob-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000; /* ensure clickable */
}

.vision-section {
  background: var(--cream);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.vision-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a67c52;
  margin-bottom: 10px;
}

.vision-title {
  font-size: 36px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}

.vision-desc {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.vision-list li {
  margin-bottom: 10px;
}

.vision-img-wrap {
  position: relative;
}

.vision-img-wrap img {
  width: 100%;
  border-radius: 10px;
}

.vision-img-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #a67c52;
  top: 15px;
  left: 15px;
  z-index: -1;
  border-radius: 10px;
}
/***---------------mission--------****/
/* ══════════════════════════════
   MISSION 
══════════════════════════════ */

#mission {
  background: cream;
  padding: 120px 5% 80px; /* matches your section spacing */
}

/* GRID */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGE */
.mission-img-wrap {
  position: relative;
}

.mission-img-wrap img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
  display: block;
  box-shadow: 20px 20px 0 var(--caramel);
}

/* Accent */
.mission-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  z-index: -1;
}

/* CONTENT WRAPPER */
.mission-content {
  max-width: 520px;
}

/* LABEL */
.mission-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--caramel);
}

/* TITLE */
.mission-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--espresso);
}

.mission-title em {
  font-style: italic;
  color: var(--caramel);
}

/* DESCRIPTION */
.mission-desc {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.8;
}

/* LIST */
.mission-list {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-smoke);
  font-size: 0.9rem;
  color: var(--smoke);
}

.mission-list li i {
  color: var(--caramel);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mission-img-wrap {
    order: -1; /* image on top */
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {

  #mission {
    padding: 100px 5% 60px;
  }

  .mission-title {
    font-size: 2rem;
    text-align: center;
  }

  .mission-label,
  .mission-desc {
    text-align: center;
    justify-content: center;
  }

  .mission-content {
    margin: 0 auto;
  }


}

/* SMALL MOBILE */
@media (max-width: 540px) {

  .mission-title {
    font-size: 1.6rem;
  }

  .mission-desc {
    font-size: 0.9rem;
  }

  .mission-img-wrap img {
    box-shadow: 12px 12px 0 var(--caramel);
  }

}


/******************************/
/* ══════════════════════════════
   OUR EXPERTISE (3 CARD VERSION)
══════════════════════════════ */

#expertise,
.exp-section {
  background: 
  linear-gradient(
    160deg,
    rgba(26,10,0,0.85),
    rgba(61,28,0,0.65)
  ),
  url('../img/ab.jpeg') center/cover no-repeat;;
  padding: 100px 5%;
}

/* CONTAINER */
.exp-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.exp-header {
  text-align: center;
  margin-bottom: 60px;
}

.exp-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.exp-title {
  font-weight: bolder;
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 0.2rem);
  font-weight: 300;
  color: var(--cream);
}

.exp-title em {
  color: var(--caramel);
}

/* GRID */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.exp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240, 182, 108);
  padding: 40px 30px;
  transition: 0.3s;
  position: relative;
}

.exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--caramel);
  background: rgba(232,168,76,0.05);
}

/* ICON */
.exp-icon {
  font-size: 1.6rem;
  color: var(--caramel);
  margin-bottom: 18px;
}

/* TITLE */
.exp-card-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 16px;
}

/* LIST */
.exp-card ul {
  list-style: none;
  padding: 0;
}

.exp-card ul li {
  font-size: 0.9rem;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 600px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    text-align: center;
  }

  .exp-card ul li {
    text-align: center;
  }
}

/* ══════════════════════════════
   CULTIVATION LEFT-RIGHT SECTION
══════════════════════════════ */

.cultivation-lr-section {
  background: var(--cream);
  padding: 100px 5%;
}

/* GRID */
.cultivation-lr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGE */
.cultivation-lr-img img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
  display: block;
  box-shadow: 20px 20px 0 var(--caramel);
}

/* CONTENT */
.cultivation-lr-content {
  max-width: 520px;
}

/* LABEL */
.cultivation-lr-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}

/* TITLE */
.cultivation-lr-title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cultivation-lr-title em {
  color: var(--caramel);
  font-style: italic;
}

/* LIST */
.cultivation-lr-list {
  list-style: none;
  padding: 0;
}

.cultivation-lr-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-smoke);
  font-size: 0.95rem;
  color: var(--espresso);
}

.cultivation-lr-list li i {
  color: var(--caramel);
  margin-top: 4px;
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .cultivation-lr-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cultivation-lr-img {
    order: -1;
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {

  .cultivation-lr-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .cultivation-lr-label {
    text-align: center;
  }

  .cultivation-lr-content {
    margin: 0 auto;
    text-align: center;
  }

  .cultivation-lr-list li {
    justify-content: center;
    text-align: left;
  }

}

/* SMALL MOBILE */
@media (max-width: 540px) {

  .cultivation-lr-title {
    font-size: 1.5rem;
  }

  .cultivation-lr-list li {
    font-size: 0.9rem;
  }

  .cultivation-lr-img img {
    box-shadow: 12px 12px 0 var(--caramel);
  }

}
/* ══════════════════════════════
   HARVESTING RIGHT-IMAGE SECTION
══════════════════════════════ */

.harvesting-lr-section {
  background: var(--ivory);
  padding: 100px 5%;
}

/* GRID */
.harvesting-lr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGE */
.harvesting-lr-img img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
  display: block;
  box-shadow: -20px 20px 0 var(--caramel); /* opposite shadow */
}

/* CONTENT */
.harvesting-lr-content {
  max-width: 520px;
}

/* LABEL */
.harvesting-lr-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}

/* TITLE */
.harvesting-lr-title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 24px;
  line-height: 1.2;
}

.harvesting-lr-title em {
  color: var(--caramel);
  font-style: italic;
}

/* LIST */
.harvesting-lr-list {
  list-style: none;
  padding: 0;
}

.harvesting-lr-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-smoke);
  font-size: 0.95rem;
  color: var(--espresso);
}

.harvesting-lr-list li i {
  color: var(--caramel);
  margin-top: 4px;
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .harvesting-lr-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .harvesting-lr-img {
    order: -1;
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {

  .harvesting-lr-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .harvesting-lr-label {
    text-align: center;
  }

  .harvesting-lr-content {
    margin: 0 auto;
    text-align: center;
  }

  .harvesting-lr-list li {
    justify-content: center;
    text-align: left;
  }

}

/* SMALL MOBILE */
@media (max-width: 540px) {

  .harvesting-lr-title {
    font-size: 1.5rem;
  }

  .harvesting-lr-list li {
    font-size: 0.9rem;
  }

  .harvesting-lr-img img {
    box-shadow: -12px 12px 0 var(--caramel);
  }

}
/* ══════════════════════════════
   PROCESS STEPS SECTION
══════════════════════════════ */

.process-steps-section {
  background: var(--cream);
  padding: 100px 5%;
}

/* GRID */
.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGE */
.process-steps-img img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
  display: block;
  box-shadow: 20px 20px 0 var(--caramel);
}

/* CONTENT */
.process-steps-content {
  max-width: 560px;
}

/* LABEL */
.process-steps-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}

/* TITLE */
.process-steps-title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 30px;
}

.process-steps-title em {
  color: var(--caramel);
  font-style: italic;
}

/* STEP LIST */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* SINGLE STEP */
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--light-smoke);
  padding-bottom: 16px;
}

/* STEP NUMBER */
.step-num {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--caramel);
  min-width: 40px;
}

/* TEXT */
.process-step h4 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--espresso);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-steps-img {
    order: -1;
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {

  .process-steps-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .process-steps-label {
    text-align: center;
  }

  .process-steps-content {
    text-align: center;
    margin: 0 auto;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

/* SMALL MOBILE */
@media (max-width: 540px) {

  .process-steps-title {
    font-size: 1.5rem;
  }

  .process-step h4 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .process-steps-img img {
    box-shadow: 12px 12px 0 var(--caramel);
  }

}


/********product*****************/
/* ══════════════════════════════
   COFFEE TYPES SECTION
══════════════════════════════ */

.coffee-types-section {
  background: var(--cream);
  padding: 100px 5%;
}

/* CONTAINER */
.coffee-types-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.coffee-types-header {
  text-align: center;
  margin-bottom: 60px;
}

.coffee-types-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}

.coffee-types-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
}

.coffee-types-title em {
  color: var(--caramel);
  font-style: italic;
}

/* GRID */
.coffee-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.coffee-type-item {
  padding: 30px 20px;
  border-bottom: 1px solid var(--light-smoke);
  transition: transform 0.3s ease, border-color 0.3s;
}

.coffee-type-item:hover {
  transform: translateY(-6px);
  border-color: var(--caramel);
}

/* TITLE */
.coffee-type-item h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--espresso);
}

/* TEXT */
.coffee-type-item p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.7;
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .coffee-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 600px) {

  .coffee-types-grid {
    grid-template-columns: 1fr;
  }

  .coffee-types-title {
    font-size: 1.8rem;
  }

}

/* IMAGE WRAPPER */
.coffee-type-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* IMAGE */
.coffee-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT (premium feel) */
.coffee-type-item:hover .coffee-type-img img {
  transform: scale(1.05);
}



/****contact****/
/* ══════════════════════════════
   CONTACT MODERN
══════════════════════════════ */

.contact-modern {
  background: var(--ivory);
}

.contact-modern-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.contact-modern-info p {
  margin-top: 20px;
}

.contact-modern-details {
  margin-top: 30px;
}

.contact-modern-details p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--smoke);
}

.contact-modern-details i {
  color: var(--caramel);
  margin-right: 8px;
}

/* FORM */
.contact-modern-form {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* INPUTS */
.contact-modern-form input,
.contact-modern-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid var(--light-smoke);
  outline: none;
  font-family: var(--body-font);
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
  border-color: var(--caramel);
}

/* ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* BUTTON */
.contact-modern-form button {
  width: 100%;
  padding: 14px;
  background: var(--caramel);
  color: white;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
}

.contact-modern-form button:hover {
  background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-modern-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════
   CONTACT HERO
══════════════════════════════ */

.contact-hero {
  position: relative;
  height: 100vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/cont.jpg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}

/* FIXED HOVER BUG */
.contact-hero:hover .contact-hero-bg {
  transform: scale(1);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,10,0,0.75) 0%,
    rgba(61,28,0,0.55) 60%,
    rgba(26,10,0,0.8) 100%
  );
}

.contact-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.37;
  background-image: url('../img/cont.jpg');
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
  animation: heroFade 1.2s ease both;
}

.contact-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232,168,76,0.4);
  padding: 6px 18px;
  margin-bottom: 28px;
}

.contact-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--cream);
  margin-bottom: 24px;
}

.contact-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.contact-hero-btns {
  display: flex;
  justify-content: center;
}


/* ══════════════════════════════
   ABOUT PREMIUM DESIGN
══════════════════════════════ */

.about-premium {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.about-premium-bg {
  position: absolute;
  inset: 0;
  background: url('img/beans.jpg') center/cover no-repeat;
  transform: scale(1.1);
}

/* DARK OVERLAY */
.about-premium-overlay {
  position: absolute;
  inset: 0;
background: 
  linear-gradient(
    160deg,
    rgba(26,10,0,0.85),
    rgba(61, 28, 0, 0.349)
  ),
  url('../img/1.jpg') center/cover no-repeat;
}

/* CONTENT BOX */
.about-premium-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 700px;
  padding: 40px 30px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* LABEL */
.about-premium-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* TITLE */
.about-premium h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.about-premium h2 em {
  color: var(--caramel);
  font-style: italic;
}

/* TEXT */
.about-premium p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* HOVER EFFECT (optional premium feel) */
.about-premium:hover .about-premium-bg {
  transform: scale(1.05);
  transition: 6s ease;
}

/******export****/
.export-premium {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.export-premium-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/export-bg.jpg') center/cover no-repeat;
  z-index: -2;
}

.export-premium-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(50, 32, 5, 0.7);
  z-index: -1;
}

.export-premium-content {
  max-width: 700px;
  padding: 20px;
}

.export-premium-label {
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  color: #c8a97e;
  margin-bottom: 10px;
}

/* ══════════════════════════════
   EXPORT PREMIUM DESIGN
══════════════════════════════ */

.export-premium {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.export-premium-bg {
  position: absolute;
  inset: 0;
  background: url('../img/exp.jpg') center/cover no-repeat;
  transform: scale(1.1);
}

.export-premium-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      160deg,
      rgba(26,10,0,0.85),
      rgba(61, 28, 0, 0.349)
    ),
    url('../img/plan.jpg') center/cover no-repeat;
}

.export-premium-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 700px;
  padding: 40px 30px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.export-premium-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.export-premium h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.export-premium h2 em {
  color: var(--caramel);
  font-style: italic;
}

.export-premium p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.export-premium:hover .export-premium-bg {
  transform: scale(1.05);
  transition: 6s ease;
}
/* ══════════════════════════════
   PRODUCTS PREMIUM DESIGN FIXED
══════════════════════════════ */

.products-premium-bg {
  position: absolute;
  inset: 0;
  background: url('../img/a.jpeg') center/cover no-repeat;
  z-index: 0;
}

.products-premium-overlay {
  position: absolute;
  inset: 0;
    background: linear-gradient( 160deg, rgba(20, 10, 0, 0.75), rgba(60, 30, 0, 0.1) );
  z-index: 1;
}
.products-premium-content {
  position: relative;
  z-index: 2;
}
.products-premium {
  position: relative;
  min-height: 550px; /* FIXED */
  height: auto;      /* IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;  /* ADDED FOR MOBILE */
  overflow: hidden;
}

.products-premium-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 900px;
  width: 100%; /* IMPORTANT */
  padding: 40px 30px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {

  .products-premium {
    padding: 70px 5%;
  }

  .products-premium h2 {
    font-size: 2.2rem;
  }

  .products-premium-desc {
    font-size: 0.9rem;
  }

}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 600px) {

  .products-premium {
    padding: 60px 5%;
  }

  .products-premium-content {
    padding: 30px 20px;
  }

  .products-premium h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .products-premium-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

}

/* SMALL MOBILE */
@media (max-width: 400px) {

  .products-premium h2 {
    font-size: 1.5rem;
  }

  .products-premium-desc {
    font-size: 0.8rem;
  }

}
/* PRODUCT GRID */
.products-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-item {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  width: 250px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.product-item h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.product-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* HOVER EFFECT */
.product-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

/* BACKGROUND ZOOM */
.products-premium:hover .products-premium-bg {
  transform: scale(1.05);
  transition: 6s ease;
}

/* ══════════════════════════════
   CONTACT HERO — COMPACT PREMIUM
══════════════════════════════ */

.contact-hero {
  position: relative;
  height: 500px;             /* 👈 reduced height */
 /* min-height: 460px;  */       /* 👈 keeps it premium on small screens */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND */
.contact-hero:hover .contact-hero-bg {
  transform: scale(1.05);
}

/* PREMIUM OVERLAY */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,200,120,0.06), transparent 40%),
    linear-gradient(
      160deg,
      rgba(20,10,0,0.85),
      rgba(40,20,0,0.6),
      rgba(10,5,0,0.9)
    );
}

/* GRAIN */
.contact-hero-grain
{
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: url('../img/contact.jpg') center/cover no-repeat;;
  mix-blend-mode: overlay;
}

/* CONTENT BOX */
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;

  padding: 35px 30px;     /* 👈 reduced padding */
  
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 30px rgba(255,255,255,0.03);

  animation: heroFadeUp 1.2s ease both;
}

/* TAG */
.contact-hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);

  border: 1px solid rgba(232,168,76,0.4);
  padding: 6px 18px;
  margin-bottom: 20px;

  background: rgba(232,168,76,0.05);
}

/* TITLE */
.contact-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);  /* 👈 reduced size */
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1;
}

.contact-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

/* BUTTON */
.contact-hero-btns {
  display: flex;
  justify-content: center;
}

/* BUTTON STYLE */
.btn-primary-gold {
  padding: 12px 26px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;

  background: linear-gradient(135deg, #cfa35a, #e6c07b);
  color: #1a0f00;

  border: none;
  transition: all 0.3s ease;

  box-shadow: 0 8px 25px rgba(232,168,76,0.3);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,168,76,0.5);
}

/* ANIMATION */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}