/* ============================================================
   OLIVEONE — Global Stylesheet
   oliveone.in
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --olive:       #4a5e2f;
  --olive-mid:   #5c7a3a;
  --olive-light: #7aa050;
  --olive-dark:  #2e3b1c;
  --olive-deep:  #1a2410;
  --gold:        #c9a84c;
  --gold-light:  #e8c76a;
  --gold-pale:   #f5e9c4;
  --cream:       #f5f0e6;
  --cream-dark:  #ede6d6;
  --white:       #fefcf8;
  --charcoal:    #1a1f12;
  --text-main:   #2a2e1e;
  --text-muted:  #6b7355;
  --text-light:  #9faa85;
  --border:      #d6cdb8;
  --border-light:#ebe4d4;
  --card:        #fffef9;
  --shadow-sm:   0 2px 12px rgba(42,46,30,0.08);
  --shadow-md:   0 8px 32px rgba(42,46,30,0.13);
  --shadow-lg:   0 20px 60px rgba(42,46,30,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;
  --transition:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; color: var(--olive-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
a  { text-decoration: none; color: inherit; }

/* ── LOGO SVG ── */
.logo-svg { flex-shrink: 0; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--olive-deep);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand .brand-text { display: flex; flex-direction: column; }
.nav-brand .brand-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: 1px; line-height: 1;
}
.nav-brand .brand-tag {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-top: 2px; font-family: var(--font-body);
}
.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-links a {
  color: #b8c49a; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 0 13px; height: 68px;
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light); border-bottom-color: var(--gold);
}
.nav-cta {
  margin-left: 12px;
  background: var(--gold); color: var(--olive-deep) !important;
  border-radius: var(--radius-sm); padding: 8px 18px !important;
  height: auto !important; border-bottom: none !important;
  font-weight: 600 !important; font-size: 0.78rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }

.mobile-menu {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--olive-deep); z-index: 999;
  padding: 2rem; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0; color: #b8c49a;
  font-size: 1rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ── HERO VARIANTS ── */
.hero {
  background: var(--olive-deep);
  position: relative; overflow: hidden;
  padding: 100px 2rem 80px;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 40px;
  margin-bottom: 1.5rem; font-family: var(--font-body);
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero .hero-sub { color: #9faa85; font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ribbon {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* Smaller hero for inner pages */
.page-hero {
  background: var(--olive-dark); padding: 70px 2rem 60px;
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--text-light); margin-top: 0.8rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.5px; cursor: pointer;
  border: none; transition: all var(--transition); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--olive-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-olive { background: var(--olive); color: var(--white); }
.btn-olive:hover { background: var(--olive-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-olive { background: transparent; color: var(--olive); border: 1.5px solid var(--olive); }
.btn-outline-olive:hover { background: var(--olive); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

/* ── SECTION ── */
.section { padding: 90px 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 560px; margin: 0.8rem auto 0; }
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--olive); background: rgba(74,94,47,0.1);
  padding: 4px 14px; border-radius: 40px; margin-bottom: 0.8rem;
}
.tag-gold { color: var(--gold); background: rgba(201,168,76,0.12); }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 2rem;
  position: relative; overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--olive), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--olive-light); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
  background: rgba(74,94,47,0.08);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--olive-dark); }
.service-card p { font-size: 0.88rem; line-height: 1.7; }
.service-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gold); color: var(--olive-deep);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 40px; text-transform: uppercase;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--olive); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card:hover .service-arrow { gap: 10px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--olive-dark); padding: 2.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 700; color: var(--gold-light); display: block; line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; display: block; }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.95rem; font-family: var(--font-body);
  background: var(--white); color: var(--text-main);
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--olive); }
.form-row { display: grid; gap: 1rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* ── PRICE / PRODUCT ── */
.price-strike { text-decoration: line-through; color: var(--text-light); font-size: 0.85rem; }
.price-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--olive); }
.discount-badge { background: #e6f5ec; color: #2d7a44; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }

/* ── TESTIMONIAL ── */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.test-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 2rem;
}
.test-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.test-text { font-size: 0.92rem; color: #c8d4b0; line-height: 1.8; margin-bottom: 1.2rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--olive); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--white); flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.test-rank { font-size: 0.75rem; color: #9faa85; }

/* ── FOOTER ── */
footer {
  background: var(--olive-deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: #6b7355; margin-top: 1rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: #6b7355; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.8rem; text-align: center;
  font-size: 0.78rem; color: #4a5030;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 40px; padding: 5px 16px;
  font-size: 0.72rem; color: var(--gold); letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

/* ── CART FLOAT ── */
.cart-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--olive); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(74,94,47,0.5);
  transition: transform var(--transition);
}
.cart-float:hover { transform: scale(1.08); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--olive-deep);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.2s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.3s ease both; }

/* ── UTILITY ── */
.dark-section { background: var(--olive-dark); }
.darker-section { background: var(--olive-deep); }
.cream-section { background: var(--cream); }
.white-section { background: var(--white); }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold-light) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* ── DISCOUNT NOTE ── */
.info-banner {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-sm); padding: 12px 18px;
  font-size: 0.85rem; color: #7a5c10; display: flex; align-items: center; gap: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 60px 1.5rem 50px; }
  .section { padding: 60px 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row-2,.form-row-3,.form-row-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
