/* ============================================================
   OUD INTERNATIONAL — Shared Stylesheet
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  --bg: #0a1628;
  --bg-deep: #060e1c;
  --surface: #0d1f3c;
  --card: #102040;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a8882d;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --border-gold: rgba(201, 168, 76, 0.25);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: #ffffff;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: rgba(6, 14, 28, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 6px;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.78) 0%, rgba(10, 22, 40, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50vh;
  background-size: cover;
  background-position: center;
  margin-top: 75px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.65);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .hero-label {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 900;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 34px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-gold:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   7. SECTIONS
   ============================================================ */
.section {
  padding: 100px 8%;
}

.section-dark {
  background: var(--bg);
}

.section-mid {
  background: var(--surface);
}

.section-center {
  text-align: center;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.9;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--border-gold);
  transition: color 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-img {
  height: 280px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 28px;
}

.card-body .card-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-link {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.card-link:hover {
  border-bottom-color: var(--gold);
}

/* ============================================================
   9. GRID 2-COL
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 70px;
  align-items: center;
}

.grid-2.reversed {
  grid-template-columns: 55% 45%;
}

.grid-2 img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.grid-2 .text-block .section-subtitle {
  max-width: 100%;
}

.text-block p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.text-block ul {
  margin: 20px 0 24px 20px;
}

.text-block ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.text-block ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   10. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-deep);
  padding: 50px 8%;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   11. QUOTE BANNER
   ============================================================ */
.quote-banner {
  padding: 80px 10%;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto;
}

.quote-banner blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold-dark);
  opacity: 0.5;
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
}

/* ============================================================
   12. DIVIDER
   ============================================================ */
.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 60px auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 0 8%;
}

/* ============================================================
   13. VALUE CARDS (ICON-BASED)
   ============================================================ */
.value-card {
  background: var(--card);
  border: 1px solid var(--border-gold);
  padding: 40px 32px;
  text-align: center;
  transition: color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.contact-info .section-title {
  font-size: 2.2rem;
}

.wa-block {
  border: 2px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0 24px;
}

.wa-block .wa-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin: 8px 0 4px;
}

.wa-block .wa-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
}

.contact-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--card);
  padding: 40px;
  border: 1px solid var(--border-gold);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  color: white;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.35);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
}

.btn-gold.full {
  width: 100%;
  text-align: center;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

.form-note a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   15. MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--bg-deep);
  padding: 60px 8%;
  text-align: center;
  border-top: 1px solid var(--border-gold);
}

.map-pin {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.map-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.map-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   16. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 8%;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
}

.cta-banner .section-title {
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  padding: 70px 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo .logo-main {
  font-size: 1.3rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 260px;
}

.footer h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-2,
  .grid-2.reversed {
    grid-template-columns: 1fr;
  }

  .grid-2 img {
    height: 350px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(6, 14, 28, 0.99);
    padding: 30px 8%;
    gap: 0;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-gold);
  }

  .hamburger {
    display: flex;
  }

  /* Collapse WhatsApp button to icon-only when hamburger is visible */
  .whatsapp-btn span.wa-text {
    display: none;
  }

  .whatsapp-btn {
    padding: 9px 12px;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .grid-2 img {
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 70px 6%;
  }

  .navbar {
    padding: 0 5%;
  }

  .logo-main {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .logo-sub {
    letter-spacing: 3px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 30px;
    padding: 40px 6%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 580px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   19. NATURAL OIL CARDS
   ============================================================ */
.oil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.oil-card {
  background: var(--card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.oil-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.oil-card-img {
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.oil-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}

.oil-card:hover .oil-card-img img {
  transform: scale(1.06);
}

.oil-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.oil-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.oil-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.2;
}

.oil-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-top: 5px;
}

.oil-badge {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 9px;
  border: 1px solid;
  white-space: nowrap;
}

.oil-badge--food {
  color: #7ec8a0;
  border-color: rgba(126, 200, 160, 0.6);
}

.oil-badge--perfume {
  color: var(--gold);
  border-color: var(--border-gold);
}

.oil-card-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 18px;
}

.oil-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.oil-card-text em {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.oil-card-body .card-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-block;
}

@media (max-width: 1000px) {
  .oil-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}

/* ============================================================
   20. INLINE STYLE OVERRIDES (moved from HTML)
   ============================================================ */
.section .grid-3 { margin-top: 50px; }

.grid-2 .about-img { width: 100%; height: 480px; object-fit: cover; }

.text-block .btn-outline { margin-top: 12px; }

.text-block .btn-gold { margin-top: 16px; }

.footer-logo a.logo { display: flex; flex-direction: column; text-decoration: none; }

/* ============================================================
   21. COMPANY PAGE CLASSES
   ============================================================ */
.mission-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1.55;
  max-width: 800px;
  margin: 40px auto;
}

.mission-body {
  max-width: 720px;
  margin: 40px auto 0;
}

.mission-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.section-header {
  margin-bottom: 50px;
}

/* ============================================================
   22. CONTACT PAGE CLASSES
   ============================================================ */
.contact-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-hero--compact {
  height: 40vh;
  background: var(--bg);
}
