/* =========================================
   OVA Sustainability Theme (CLEAN - Brand)
   Colors/Fonts aligned with OVA identity
   File: sustainability-ova-theme.clean.css
   ========================================= */

/* ---------- Tokens ---------- */
:root{
  --ova-dark:#1B512D;
  --ova-teal:#4AE2EF;
  --bg-creme:#F9FFF6;
  --card:#ffffff;

  --ova-dark-rgb:27,81,45;
  --ova-teal-rgb:74,226,239;

  --text:#0F2A20;
  --muted: rgba(15,42,32,.62);
  --line: rgba(var(--ova-dark-rgb), .12);

  --shadow: 0 18px 55px rgba(0,0,0,0.06);
  --shadow-strong: 0 30px 90px rgba(0,0,0,0.18);

  --header-h: 35px;
  --font-ar: "Amiri", serif;
  --font-en: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Base / Reset ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  overflow-x:hidden;
  line-height:1.85;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-creme);
  color: var(--text);
  font-family: var(--font-ar), var(--font-en), system-ui, -apple-system, sans-serif;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.w-4{ width:16px; height:16px; }
.w-5{ width:20px; height:20px; }

.container{ max-width:1400px; margin:0 auto; padding:0 18px; }
@media(min-width:1024px){ .container{ padding:0 120px; } }

.section{ padding:90px 0; }
@media(min-width:1024px){ .section{ padding:25px 0; } }

#about-ova{ scroll-margin-top: 140px; }

/* =========================================
   TOP TICKER
   ========================================= */
.top-ticker{
  background: rgb(var(--ova-dark-rgb));
  color: rgb(var(--ova-teal-rgb));
  height: var(--header-h);
  display:flex; align-items:center; overflow:hidden;
  position: fixed; top:0; left:0; right:0;
  z-index: 10002;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  direction:ltr;
}
.ticker-content{
  display:flex;
  white-space:nowrap;
  animation: tickerScroll 25s linear infinite;
}
@keyframes tickerScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(50%); }
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
header#main-header{
  position: fixed;
  top: 0px !important;
  left:0; right:0;
  z-index: 10001;
  padding: 8px 16px;
  background: transparent;
  transition:.25s ease;
}

/* glass pill */
.header-pill{
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 10px 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;

  background: linear-gradient(
    135deg,
    rgba(27, 81, 45, .95),
    rgba(27, 81, 45, .88) 45%,
    rgba(27, 81, 45, .75)
  );
  border: 1px solid rgba(27, 81, 45, .3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
header.scrolled .header-pill{
  background: linear-gradient(
    135deg,
    rgba(27, 81, 45, .98),
    rgba(27, 81, 45, .95) 45%,
    rgba(27, 81, 45, .85)
  );
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
}

/* Logo */
.brand-logo, a[aria-label="OVA Home"], a[aria-label="OVA Home"] *{
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}
.brand-logo{ height:48px; width:auto; }
@media(min-width:1024px){ .brand-logo{ height: 90px; } }

/* responsive */
.desktop-only{ display:none; }
.mobile-only{ display:flex; }
@media(min-width:1024px){
  .desktop-only{ display:flex !important; }
  .mobile-only{ display:none !important; }
}

/* Desktop group/nav */
.desktop-group{ display:flex; align-items:center; gap:10px; min-width:0; }
.desktop-nav{
  display:flex;
  align-items:center;
  gap: 2px;
  min-width:0;
  white-space:nowrap;

  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none;
}
.desktop-nav::-webkit-scrollbar{ display:none; }

.nav-link{
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  text-transform: none;
  padding: 10px 16px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
  cursor:pointer;
  transition:.2s;
  user-select:none;
}
@media(min-width:1024px){ 
  .nav-link{
    font-size: 17px;
    line-height: 21px;
  }
}
.nav-link:hover{
  background: rgba(111, 207, 186, 0.18);
  color:#fff;
}

/* Header actions */
.header-actions{ display:flex; align-items:center; gap:10px; }
.pill{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  color:#fff;
  border-radius:999px;
  padding: 8px 14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  text-transform: none;
  cursor:pointer;
  transition:.2s;
  user-select:none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.pill:hover{ background: rgba(111, 207, 186, 0.20); }

/* Dropdown wrapper */
.nav-dd{ position:relative; display:inline-flex; align-items:center; }
.dd-btn{ background:transparent; border:0; padding:0; }

/* Desktop dropdown (dark glass like brand) */
@media(min-width:1024px){
  .nav-dd .dropdown{
    position:absolute;
    top: calc(100% + 10px);
    right:0;
    min-width: 340px;

    background: rgba(var(--ova-dark-rgb), .96);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 55px rgba(0,0,0,0.18);

    opacity:0; visibility:hidden;
    transform: translateY(10px);
    transition: .22s;

    padding: 12px 0;
    border-radius: 14px;
    z-index: 10050;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav-dd:hover .dropdown{
    opacity:1; visibility:visible;
    transform: translateY(0);
  }

  /* allow programmatic open (useful for touch / keyboard toggle) */
  .nav-dd.is-open .dropdown{
    opacity:1; visibility:visible;
    transform: translateY(0);
  }
  .nav-dd .dropdown a{
    display:block;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    transition: .2s;
    white-space: nowrap;
    text-align:right;
  }
  .nav-dd .dropdown a:hover{
    background: rgba(111, 207, 186, 0.18);
    color:#fff;
    padding-right: 26px;
  }
}

/* =========================================
   MOBILE MENU OVERLAY (Brand)
   ========================================= */
#mobile-menu-overlay{
  position: fixed;
  inset:0;
  z-index: 20000;

  display:none;              /* closed */
  flex-direction: column;
  padding: 90px 18px 24px;

  background: rgba(10,26,22,0.96);
  color: #fff;
  overflow-y:auto;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
#mobile-menu-overlay.is-open{
  display:flex !important;   /* open */
}

.mobile-close{
  position:absolute;
  top: 22px;
  left: 18px;
  padding: 10px 12px; /* keep pill look */
}

.mobile-title{
  color: rgba(111, 207, 186, 1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 18px 0 10px;
  direction:ltr;
  text-align:left;
}

.mobile-link{
  width:100%;
  font-size: 18px;
  font-weight: 900;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;

  background:none;
  border-top:0; border-left:0; border-right:0;
  color:#fff;
  text-align:right;
  cursor:pointer;
}
.mobile-link i{ opacity:.9; }

/* Mobile dropdown */
.mobile-dd{ width:100%; }
.mobile-dd .dropdown{
  display:none;
  margin-top: 10px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.mobile-dd.is-open .dropdown{ display:block; }
.mobile-dd .dropdown a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  color:#fff;
  font-weight:800;
  text-align:right;
}
.mobile-dd .dropdown a:hover{ background: rgba(111, 207, 186, .18); }

/* Improve mobile header pill spacing */
@media(max-width:1023px){
  .header-pill{ padding: 10px 16px; }
  .header-actions{ gap: 8px; }
  .pill{ padding: 8px 14px; letter-spacing: normal; }
}

/* =========================================
   HERO
   ========================================= */
.hero{
  position: relative;
  min-height: 80vh;
  padding-top: 150px;
  padding-bottom: 70px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-image: url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.5));
  pointer-events:none;
  opacity:.9;
}
.hero .container{ position:relative; z-index:2; }

.kicker{
  color: rgba(111, 207, 186, 0.95);
  font-weight: 900;
  letter-spacing: .45em;
  text-transform: uppercase;
  font-size: 11px;
  direction:ltr;
}
.hero h1{
  margin: 14px 0 0;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 4.0rem);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero p{
  margin-top: 16px;
  max-width: 820px;
  color: rgba(255,255,255,0.74);
  font-weight: 700;
  line-height: 2.0;
  font-size: 16px;
}
.hero-actions{
  margin-top: 22px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
}

.btn-primary{
  background: linear-gradient(135deg,
    rgba(111, 207, 186, .98),
    rgba(111, 207, 186, .78)
  );
  color: rgba(10,26,22,0.95);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: .25s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  white-space: nowrap;
  cursor:pointer;
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.04); }

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .pill,
  .hero-actions .tag {
    width: 100% !important;
    justify-content: center;
  }
}


.tag{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  direction:ltr;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* =========================================
   SECTION HEAD
   ========================================= */
.section-head .k{
  color: rgba(111, 207, 186, 1);
  font-weight:900;
  letter-spacing:.45em;
  text-transform:uppercase;
  font-size:11px;
  direction:ltr;
}
.section-head h2{
  margin:10px 0 0;
  color: var(--ova-dark);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height:1.1;
}
.section-head p{
  margin:14px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.05;
  text-align: justify;
  max-width: 980px;
}

/* =========================================
   GRIDS / CARDS
   ========================================= */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media(min-width:900px){ .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media(min-width:1280px){ .grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  transition: .2s;
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(111, 207, 186, 0.55);
  box-shadow: 0 22px 70px rgba(0,0,0,0.10);
}
.icon{
  width: 46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 16px;
  background: rgba(111, 207, 186, 0.10);
  border: 1px solid rgba(111, 207, 186, 0.20);
  color: var(--ova-dark);
  margin-bottom: 12px;
}
.card h3{ margin:0; font-weight: 900; color: var(--ova-dark); font-size: 18px; line-height: 1.25; }
.card p{ margin:10px 0 0; font-weight: 700; color: rgba(15,42,32,.68); font-size: 14px; line-height: 2.0; text-align: justify; }

/* =========================================
   SPLIT / PANELS / LISTS
   ========================================= */
.split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
  align-items: stretch;
}
@media(min-width:1024px){ .split{ grid-template-columns: 1.1fr .9fr; gap: 22px; } }

.panel{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(111, 207, 186, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(249,255,246,1));
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.panel strong{
  display:block;
  color: var(--ova-dark);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.panel .q{
  margin:0;
  color: var(--ova-dark);
  font-weight: 800;
  line-height: 2.05;
  font-size: 14px;
  text-align: justify;
}
.list{
  margin:0;
  padding:0;
  list-style:none !important;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.li{
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.04);
  list-style:none !important;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);

}
.li::before{
  display:none !important;
  content: none !important;
}
.li-heading{
  display:flex;
  align-items:center;
  gap: 12px;
}
html[dir="rtl"] .li-heading{
  flex-direction: row-reverse;
}
.li-heading i{ 
  color: var(--ova-teal); 
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.li-heading b{ 
  display:inline; 
  font-weight: 900; 
  color: var(--ova-dark); 
  margin: 0;
  line-height: 1.4;
}
.li span{ 
  display:block; 
  color: rgba(15,42,32,.70); 
  font-weight: 700; 
  line-height: 1.6; 
  font-size: 14px; 
  text-align: left;
  margin-top: 0;
}
html[dir="rtl"] .li span{
  text-align: right !important;
  direction: rtl;
}
html[dir="ltr"] .li span{
  text-align: left !important;
  direction: ltr;
}
html[dir="rtl"] .li-heading b{
  text-align: right;
}
html[dir="ltr"] .li-heading b{
  text-align: left;
}
/* ✅ إصلاح شامل لقائمة التنقل في الشاشات الكبيرة */
@media (min-width: 1024px) {
  
  /* 1. السماح للمحتوى بالخروج من حاوية الهيدر */
  .header-pill {
    overflow: visible !important; /* لضمان عدم قص المنسدلة */
  }

  /* 2. تعديل قائمة الروابط */
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: visible !important; /* تغيير من auto إلى visible */
    scrollbar-width: none;
  }

  /* 3. حاوية القائمة المنسدلة */
  .nav-dd {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  /* 4. القائمة المنسدلة نفسها */
  .nav-dd .dropdown {
    position: absolute;
    top: 100%; /* تظهر مباشرة تحت الزر */
    right: 0;
    min-width: 240px;
    background: rgba(var(--ova-dark-rgb), 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
    padding: 12px;
    z-index: 99999;
    backdrop-filter: blur(14px);
    
    /* حالة الإخفاء الافتراضية */
    display: none; 
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* 5. إظهار القائمة عند الـ Hover */
  .nav-dd:hover .dropdown {
    display: block; /* تفعيل العرض */
    opacity: 1;
    transform: translateY(0);
  }

  /* 6. منع أي تداخل من الأكواد القديمة */
  .nav-dd:hover > .dropdown {
    visibility: visible;
  }
}

/* Groups */
.desktop-group{ display:none; align-items:center; gap:10px; min-width:0; }
@media(min-width:1024px){ .desktop-group{ display:flex; } }

.desktop-nav{
  display:flex;
  align-items:center;
  gap:2px;
  min-width:0;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none;
}
.desktop-nav::-webkit-scrollbar{ display:none; }

/* Links */
.nav-link{
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  text-transform: none;
  padding: 10px 16px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  gap: 6px;
  white-space: nowrap;
  color: rgba(255,255,255,0.92);
  cursor:pointer;
  transition:.2s;
}
@media(min-width:1024px){ 
  .nav-link{
    font-size: 17px;
    line-height: 21px;
  }
}
.nav-link:hover{ background: rgba(111, 207, 186, .18); color:#fff; }

/* Pills */
.header-actions{ display:flex; align-items:center; gap:10px; }
.pill{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  color:#fff;
  border-radius:999px;
  padding: 8px 14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  text-transform: none;
  cursor:pointer;
  transition:.2s;
  user-select:none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.pill:hover{ background: rgba(111, 207, 186, .20); }

/* Icons size */
.ico{ width:18px; height:18px; }
.ico-sm{ width:16px; height:16px; }

/* Desktop/Mobile visibility */
@media(min-width:1024px){ .mobile-only{ display:none !important; } }
@media(max-width:1023px){ .desktop-only{ display:none !important; } }

/* ===== Dropdown ===== */
.nav-dd{ position:relative; display:inline-flex; align-items:center; }
.dd-btn{ padding-inline: 14px; }

.dropdown{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
    min-width: 200px;
    background: rgba(var(--ova-dark-rgb), .96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    overflow:hidden;
    padding: 6px;
    display:none;
    z-index: 10050;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dropdown a{
  display:block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  text-transform: none;
  color: rgba(255,255,255,0.92);
  transition: .18s ease;
  text-align: right;
}
.dropdown a:hover{
  background: rgba(111, 207, 186, .18);
  color:#fff;
  transform: translateY(-1px);
}

@media (min-width:1024px){
  .nav-dd:hover .dropdown,
  .nav-dd:focus-within .dropdown{ display:block; }
}

@media (max-width:1023px){
  .nav-dd{ display:block; width:100%; }
  .nav-dd .dropdown{
    position: static;
    min-width: 0;
    margin-top: 10px;
  }
  .nav-dd.is-open .dropdown{ display:block; }
}

/* ===== Mobile Overlay (THIS is the key) ===== */
.mobile-overlay{
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(10,26,22,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.mobile-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet{
  position: absolute;
  inset: 0;
  padding: 92px 18px 24px; /* اترك مكان للهيدر */
  overflow-y: auto;
  color: #fff;
  background: rgba(10,26,22,0.90);
  transform: translateY(14px);
  transition: transform .18s ease;
}

.mobile-overlay.is-open .mobile-sheet{ transform: translateY(0); }

.mobile-close{
  position: absolute;
  top: 22px;
  left: 22px;
}

.mobile-title{
  color: rgba(111, 207, 186, 1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 18px 0 10px;
}

.mobile-link{
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  background:none;
  border:0;
  color:#fff;
  text-align:right;
  width:100%;
  cursor:pointer;
  line-height: 24px;
  text-transform: none;
  letter-spacing: normal;
}
html[dir="ltr"] .mobile-link{ text-align:left; }

/* Prevent body scroll when menu open */
body.nav-open{ overflow: hidden; }

/* ✅ أهم إصلاح: لا تقصّ الـ dropdown */
@media (min-width:1024px){
  .header-pill{ overflow: visible !important; }
  .desktop-nav{
   overflow: visible !important;
  }
  .nav-dd{ position: relative; }
  .dropdown{ z-index: 99999; }       /* ✅ فوق كل شيء */
}

/* ✅ hover نفسه */
@media (min-width:1024px){
  .nav-dd:hover > .dropdown,
  .nav-dd:focus-within > .dropdown{
    display: block;
  }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.cta h3 {
  font-weight: 900;
  color: var(--ova-dark);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 12px;
}
.cta p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  max-width: 1400px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

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

/* Mobile adjustments */
@media (max-width: 640px) {
  .cta {
    padding: 30px 16px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
