/* ============================================
   Brezee Soda - Section-Based Site Styles
   Brand Colors: Magenta #c70075, Dark Blue #234fa0
   Font: Montserrat
   ============================================ */

:root {
  --color-primary: #c70075;
  --color-secondary: #234fa0;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-light: #f8f8f8;
  --font-main: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--color-dark); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.header-logo { display: flex; align-items: center; }
.logo-img { height: 120px; width: auto; }

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-menu a:hover { color: var(--color-primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-link {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.lang-link:hover,
.lang-link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 74px;
}

.hero-video-container {
  position: relative;
  width: 100%;
}

.hero-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 25px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.sound-toggle:hover { background: rgba(0, 0, 0, 0.8); }

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 60px 0 40px;
  color: var(--color-white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 700px;
  line-height: 1.8;
}

/* ============================================
   FEATURES (Why Brezee?)
   ============================================ */
/* ============================================
   BADGES
   ============================================ */
.badges-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 30px 0;
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 12px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 0, 117, 0.4);
}

.badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-white);
  -webkit-text-stroke: 0.5px var(--color-white);
}

.badge-label {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 80px 0;
}

.features-section .section-title { color: var(--color-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-img {
  width: 40%;
  flex-shrink: 0;
  padding: 20px;
}

.feature-img img { width: 100%; border-radius: 50%; }

.feature-text {
  padding: 20px;
  flex: 1;
}

.feature-text p {
  font-size: 1.4rem;
  font-weight: 500;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { width: 100%; }

.about-bg {
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.about-content {
  text-align: center;
  color: var(--color-white);
  max-width: 650px;
}

.about-content .section-title {
  font-size: 3rem;
  font-weight: 900;
}

.about-content p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 80px 0;
}

.products-section .section-title { color: var(--color-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
}

.product-img {
  width: 40%;
  flex-shrink: 0;
  padding: 20px;
}

.product-img img { width: 100%; }

.product-info {
  padding: 20px;
  flex: 1;
}

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.product-card--energy {
  border: 2px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
}

/* Disclaimer */
.disclaimer-section {
  padding: 40px 0;
  background: var(--color-light);
  border-top: 1px solid #e0e0e0;
}

.disclaimer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.disclaimer-section p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0.8rem;
}

/* ============================================
   STEVIA
   ============================================ */
.stevia-section {
  padding: 80px 0;
  background: var(--color-light);
}

.stevia-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.stevia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stevia-card {
  display: flex;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stevia-card-img {
  width: 40%;
  flex-shrink: 0;
}

.stevia-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stevia-card-content {
  padding: 20px;
  flex: 1;
}

.stevia-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stevia-card-content ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.stevia-card-content li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: var(--color-secondary);
  color: var(--color-white);
}

.contact-section .section-title { color: var(--color-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item { text-align: left; }

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-item a:hover { text-decoration: underline; }

.contact-social {
  display: flex;
  gap: 1.5rem;
}

.contact-social a {
  font-weight: 500;
  transition: opacity 0.3s;
}

.contact-social a:hover { opacity: 0.8; }

/* Contact Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.contact-form label .required {
  color: var(--color-primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit-btn:hover {
  background: #a30060;
  transform: translateY(-2px);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 200px; }

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-links a {
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-legal-links a:hover { opacity: 0.8; }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.social-icons img:hover { transform: scale(1.1); }

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a { transition: opacity 0.3s; }
.footer-contact a:hover { opacity: 0.8; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 120px 0 80px;
}

.legal-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--color-dark);
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #444;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #444;
}

/* ============================================
   RTL SUPPORT (Arabic)
   ============================================ */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .feature-card,
[dir="rtl"] .product-card,
[dir="rtl"] .stevia-card { flex-direction: row-reverse; }
[dir="rtl"] .stevia-card-content ul { padding-left: 0; padding-right: 1.2rem; }
[dir="rtl"] .product-info { text-align: right; }
[dir="rtl"] .contact-section .section-title,
[dir="rtl"] .hero-title,
[dir="rtl"] .hero-subtitle { text-align: right; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section { min-height: auto; }

  .features-grid,
  .products-grid,
  .stevia-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .product-card,
  .stevia-card {
    flex-direction: column;
  }

  .feature-img,
  .product-img,
  .stevia-card-img {
    width: 100%;
  }

  .badges-grid {
    gap: 8px;
  }
  .badge-item {
    padding: 10px 16px;
  }
  .badge-label {
    font-size: 0.8rem;
  }

  .nav-menu { display: none; }
  .mobile-menu-toggle { display: block; }

  .header-nav.active .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { gap: 1.5rem; }
  .contact-item { text-align: center; }
  .about-content .section-title { font-size: 2rem; }
  .about-content p { font-size: 1rem; }

  /* RTL mobile */
  [dir="rtl"] .feature-card,
  [dir="rtl"] .product-card,
  [dir="rtl"] .stevia-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .feature-text p { font-size: 1.1rem; }
  .lang-switcher { gap: 0.3rem; }
  .lang-link { padding: 3px 6px; font-size: 0.75rem; }
}