﻿/* ============================================================
   JAFILA COFFEE | ط±ظˆط¹ط© ط§ظ„ظ…ط¯ظٹظ†ط© â€” style.css
   Light Cream Theme â€” Matching Reference Design
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green-dark:    #1a4a22;
  --green-main:    #2a7232;
  --green-mid:     #3a8c44;
  --green-light:   #5aad63;
  --green-pale:    #e8f4ea;

  --cream:         #f8f4ed;
  --cream-soft:    #f2ebe0;
  --beige:         #e8d5b5;
  --beige-dark:    #c4a573;
  --beige-light:   #f0e4cc;

  --white:         #ffffff;
  --text-dark:     #1c1c1c;
  --text-mid:      #4a5550;
  --text-light:    #7a8880;
  --border:        #e5e0d8;

  --radius:        10px;
  --radius-lg:     18px;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 50px rgba(0,0,0,0.15);
  --transition:    0.32s ease;
  --nav-h:         70px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.75;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-main); border-radius: 3px; }

/* ============================================================
   SCROLL ANIMATION CLASSES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="100"]  { transition-delay: 0.1s; }
.fade-up[data-delay="150"]  { transition-delay: 0.15s; }
.fade-up[data-delay="200"]  { transition-delay: 0.2s; }
.fade-up[data-delay="300"]  { transition-delay: 0.3s; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-pad { padding: 80px 0; }

.bg-cream        { background: var(--cream); }
.bg-light-cream  { background: var(--cream-soft); }
.bg-cream-soft   { background: #efe8db; }
.bg-white        { background: var(--white); }
.bg-dark-green   { background: var(--green-dark); }

.section-label-wrap { margin-bottom: 0.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-main);
  position: relative;
  padding: 0 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1.5px;
  background: var(--green-main);
}
.section-label::before { right: 100%; transform: translateX(100%); }
.section-label::after  { left: 100%; transform: translateX(-100%); }
.section-label.light { color: var(--beige-dark); }
.section-label.light::before,
.section-label.light::after { background: var(--beige-dark); }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 0;
}
.section-title.light  { color: var(--white); }
.title-highlight      { color: var(--green-main); }

.title-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--beige-dark));
  border-radius: 2px;
  margin-top: 14px;
}

.body-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.92rem;
  color: #feffff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
}
#mainNav .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 46px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  padding: 2px 4px;
}

.navbar-nav .nav-link {
  color: var(--text-mid) !important;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem !important;
  border-radius: 7px;
  transition: all var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 14%;
  left: 100%;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
  transition: left var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--green-dark) !important; }
.navbar-nav .nav-link:hover::after { left: 14%; }
.navbar-nav .nav-link.active-section { color: var(--green-dark) !important; }
.navbar-nav .nav-link.active-section::after { left: 14%; }

/* WhatsApp Button in Navbar */
.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-main);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(42,114,50,0.3);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-wa-nav:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,114,50,0.45);
}

.navbar-toggler {
  border-color: var(--border) !important;
  padding: 5px 9px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42,114,50,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .btn-wa-nav { margin-top: 0.75rem; width: 100%; justify-content: center; }
}

/* ============================================================
   HERO SECTION — Full-Cover Background Image
   ============================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
 background:
linear-gradient(
160deg,
rgba(0,0,0,0.35) 0%,
rgba(16,54,24,0.28) 50%,
rgba(42,114,50,0.22) 100%
),
url('../images/kia-sheikhy-3X6VozzbL6w-unsplash.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,165,115,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(42,114,50,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #f5f9f6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: var(--beige-dark);
  opacity: 0.8;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #f5f9f6;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title-accent {
  color: #da992f;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: #f5f9f6;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 22px rgba(26,74,34,0.35);
  transition: all var(--transition);
}
.btn-hero-primary:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42,114,50,0.45);
}

.btn-hero-outline {
  background: transparent;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--green-dark);
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: #f5f9f6;
  color: #cf722e;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1.5px solid rgba(26,74,34,0.15);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #f5f9f6;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: #f5f9f6;
  font-weight: 400;
}
.hero-stat-divider {
  width: 1.5px;
  height: 36px;
  background: rgba(26,74,34,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(26,74,34,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--beige-dark);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0.3; }
}

@media (max-width: 575.98px) {
  .hero-content { padding: 40px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; }
  .hero-stats { gap: 16px; }
}

/* FEATURES STRIP */
.hero-features-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  border-left: 1px solid var(--border);
  transition: background var(--transition);
  min-width: 0;
  cursor: default;
}
.feature-strip-item:last-child { border-left: none; }
.feature-strip-item:hover { background: var(--cream); }
.feature-strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.feature-strip-item:hover .feature-strip-icon { background: var(--green-main); }
.feature-strip-icon i { color: var(--green-main); font-size: 0.88rem; transition: color var(--transition); }
.feature-strip-item:hover .feature-strip-icon i { color: var(--white); }
.feature-strip-item > div:last-child { min-width: 0; }
.feature-strip-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature-strip-item span {
  font-size: 0.73rem;
  color: var(--text-light);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.98px) {
  .feature-strip-item { border-left: none; border-bottom: 1px solid var(--border); padding: 14px 12px; }
  .feature-strip-item:last-child { border-bottom: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-media {
  position: relative;
  padding: 24px 24px 24px 0;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 48%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 0;
  right: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  border: 2px solid var(--green-pale);
}
.about-badge img { width: 80px; height: auto; display: block; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 1.5rem;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-mid);
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-feature-item:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }
.about-feature-item i { color: var(--green-main); font-size: 0.9rem; flex-shrink: 0; }

.btn-primary-jafila {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(26,74,34,0.35);
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary-jafila:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42,114,50,0.45);
}

@media (max-width: 575.98px) {
  .about-img-main img { height: 280px; }
  .about-img-secondary { display: none; }
  .about-features { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,165,115,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--beige-dark);
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}
.product-card.featured {
  border-color: var(--beige-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--beige-dark);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  z-index: 5;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-origin-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26,74,34,0.82);
  backdrop-filter: blur(8px);
  color: var(--beige-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(196,165,115,0.3);
}
.product-body {
  padding: 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-type-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--beige-dark);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.product-name { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.product-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1rem; flex-grow: 1; }
.product-spec-list { list-style: none; padding: 0; margin: 0 0 1.2rem; border-top: 1px solid rgba(196,165,115,0.2); padding-top: 0.9rem; }
.product-spec-list li { font-size: 0.8rem; color: rgba(255,255,255,0.7); padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.product-spec-list li i { color: var(--green-light); font-size: 0.7rem; flex-shrink: 0; }
.btn-product {
  background: rgba(196,165,115,0.15);
  border: 1px solid rgba(196,165,115,0.4);
  color: var(--beige-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all var(--transition);
  text-align: center;
}
.btn-product:hover { background: var(--beige-dark); border-color: var(--beige-dark); color: var(--green-dark); }
.featured-btn { background: var(--beige-dark); border-color: var(--beige-dark); color: var(--green-dark); }
.featured-btn:hover { background: #d4b580; border-color: #d4b580; color: var(--green-dark); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-tall img { height: 100%; min-height: 412px; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item.g-wide img { height: 200px; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(10,24,12,0.75));
  color: var(--beige-dark);
  font-size: 0.78rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }

@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-tall { grid-row: auto; }
  .gallery-item.g-tall img { min-height: 200px; height: 200px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g-wide { grid-column: span 1; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: rgba(42,114,50,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all var(--transition);
}
.why-card:hover .why-icon-wrap { background: var(--green-main); }
.why-icon-wrap i { font-size: 1.3rem; color: var(--green-main); transition: color var(--transition); }
.why-card:hover .why-icon-wrap i { color: var(--white); }
.why-title { font-size: 0.96rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.why-text { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ============================================================
   TESTIMONIALS â€” Light Cards
   ============================================================ */
.testimonial-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card-light:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,114,50,0.3);
}
.testimonial-card-light.featured-t {
  border-color: var(--green-main);
  background: var(--green-pale);
}
.t-stars-light { color: #e6a817; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.85rem; }
.t-text-light {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}
.t-author-light {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}
.t-avatar-light {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-avatar-light i { color: var(--green-main); font-size: 1rem; }
.t-author-light strong { display: block; font-size: 0.87rem; font-weight: 700; color: var(--text-dark); }
.t-author-light span { font-size: 0.73rem; color: var(--text-light); }

/* ============================================================
   CONTACT STRIP (Green Banner)
   ============================================================ */
.contact-strip {
  background: var(--green-dark);
  padding: 44px 0;
}
.contact-strip-info { display: flex; flex-direction: column; gap: 10px; }
.contact-strip-item { display: flex; align-items: center; gap: 10px; }
.contact-strip-item i { color: var(--beige-dark); font-size: 1rem; width: 18px; flex-shrink: 0; }
.contact-strip-item a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}
.contact-strip-item a:hover { color: var(--white); }
.contact-strip-title {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.contact-strip-sub { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin: 0; }

.btn-wa-big {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-wa-big:hover {
  background: #1db954;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-md); border-color: rgba(42,114,50,0.3); }
.contact-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap.phone { background: var(--green-pale); }
.contact-icon-wrap.phone i { color: var(--green-main); }
.contact-icon-wrap.email { background: #fff3e0; }
.contact-icon-wrap.email i { color: #e65100; }
.contact-icon-wrap.wa { background: #e8f5e9; }
.contact-icon-wrap.wa i { color: #25D366; }
.contact-info-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}
.contact-link { font-size: 0.86rem; font-weight: 600; color: var(--text-dark); transition: color var(--transition); text-decoration: none; }
.contact-link:hover { color: var(--green-main); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--green-pale);
}
.form-floating .form-control,
.form-floating .form-select {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  color: var(--text-dark);
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(42,114,50,0.1);
  background: var(--white);
}
.form-floating label { color: var(--text-light); font-size: 0.86rem; }
.form-floating .form-control.is-invalid { border-color: #c62828; }
.form-floating .form-control.is-valid { border-color: var(--green-main); }

.btn-submit-jafila {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: 9px;
  border: none;
  box-shadow: 0 6px 18px rgba(42,114,50,0.32);
  transition: all var(--transition);
}
.btn-submit-jafila:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42,114,50,0.48);
  color: var(--white);
}

.form-success {
  background: var(--green-pale);
  border: 1px solid rgba(42,114,50,0.3);
  color: var(--green-dark);
  border-radius: 9px;
  padding: 12px 16px;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-success i { color: var(--green-main); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(90,173,99,0.15);
  padding-top: 64px;
}
.footer-top { padding-bottom: 48px; }
.footer-logo {
  width: 100px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 7px;
  margin-bottom: 1rem;
}
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-about strong { color: var(--beige-dark); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(90,173,99,0.12);
  border: 1px solid rgba(90,173,99,0.22);
  color: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-main); color: var(--white); border-color: var(--green-main); transform: translateY(-2px); }
.footer-heading {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 0.9rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.58); transition: color var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--beige-dark); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 0.65rem; }
.footer-contact-item i { color: var(--green-light); font-size: 0.85rem; flex-shrink: 0; width: 15px; }
.footer-contact-item a { font-size: 0.84rem; color: rgba(255,255,255,0.62); transition: color var(--transition); text-decoration: none; }
.footer-contact-item a:hover { color: var(--beige-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.42); margin: 0; }
.footer-bottom strong { color: var(--beige-dark); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.86rem !important;
  color: var(--beige-dark) !important;
  opacity: 0.7;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(42,114,50,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 575.98px) {
  .section-pad { padding: 40px 0; }
}

