/*
Theme Name: Eye Vision Ads
Theme URI: https://eyevisionads.com
Author: Eye Vision SARL
Author URI: https://eyevisionads.com
Description: Professional corporate theme for Eye Vision SARL – Premium Marketing & Advertising Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eyevision-ads
Tags: corporate, marketing, advertising, responsive, professional
*/

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #2d3748;
  background: #ffffff;
  line-height: 1.7;
}

a { color: #1a56db; text-decoration: none; transition: color .2s; }
a:hover { color: #1040b2; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--alt { background: #f0f4fb; }
.section--dark { background: #0d2559; color: #e8edf7; }
.section--dark h2,
.section--dark h3,
.section--dark p { color: #e8edf7; }

.text-center { text-align: center; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
}

.btn-primary {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}
.btn-primary:hover {
  background: #0d3da8;
  border-color: #0d3da8;
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,86,219,.35);
}

.btn-outline {
  background: transparent;
  color: #1a56db;
  border-color: #1a56db;
}
.btn-outline:hover {
  background: #1a56db;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #1a56db;
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: #e8edf7;
  color: #0d3da8;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1a56db 0%, #0d9cdb 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo .logo-icon svg { width: 24px; height: 24px; fill: #fff; }
.site-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -.3px;
}
.site-logo .logo-text span { color: #1a56db; }

/* Primary nav */
.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.primary-nav a {
  color: #4a5568;
  font-weight: 600;
  font-size: .95rem;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: #1a56db;
  border-bottom-color: #1a56db;
}
.primary-nav .nav-cta {
  background: #1a56db;
  color: #fff !important;
  padding: .5rem 1.25rem !important;
  border-radius: 4px;
  border-bottom: none !important;
}
.primary-nav .nav-cta:hover { background: #0d3da8 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2d3748;
  border-radius: 3px;
  transition: all .3s;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    display: none;
    padding: 1.5rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
  .primary-nav a { font-size: 1.05rem; }
}

/* =========================================================
   HERO / PAGE BANNER
   ========================================================= */
.hero {
  background: linear-gradient(135deg, #0d2559 0%, #1a56db 55%, #0d9cdb 100%);
  color: #fff;
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p  { font-size: 1.2rem; opacity: .9; margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Inner page banner */
.page-banner {
  background: linear-gradient(135deg, #0d2559 0%, #1a56db 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p   { color: rgba(255,255,255,.85); font-size: 1.1rem; }

/* =========================================================
   CARDS / GRID
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,86,219,.13);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a56db22, #0d9cdb22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 28px; height: 28px; fill: #1a56db; }

.card h3 { margin-bottom: .75rem; }
.card p   { color: #4a5568; font-size: .95rem; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: #1a56db;
  color: #fff;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .9rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a56db;
  margin-bottom: .75rem;
  background: #e8edf7;
  padding: .3rem .9rem;
  border-radius: 20px;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: #718096; font-size: 1.05rem; }

/* =========================================================
   VALUES / CHECKLIST
   ========================================================= */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-check {
  width: 36px;
  height: 36px;
  background: #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-check svg { width: 18px; height: 18px; fill: #fff; }
.value-item h4 { margin-bottom: .3rem; }
.value-item p  { color: #4a5568; font-size: .92rem; margin: 0; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, #0d2559 0%, #1a56db 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .88; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-band h2 { margin-bottom: 1rem; }

/* =========================================================
   ABOUT / TEAM
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.about-visual {
  background: linear-gradient(135deg, #e8edf7, #d0daf5);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual svg { width: 120px; height: 120px; fill: #1a56db; opacity: .35; }

/* =========================================================
   PROSE / PAGE CONTENT
   ========================================================= */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: #0d2559; font-size: 1.5rem; border-bottom: 2px solid #e8edf7; padding-bottom: .5rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .75rem; color: #1a56db; }
.prose p  { color: #4a5568; line-height: 1.8; }
.prose ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.prose ul li { margin-bottom: .5rem; color: #4a5568; }
.prose a  { color: #1a56db; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }

.contact-info-box { }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: #e8edf7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ci-icon svg { width: 22px; height: 22px; fill: #1a56db; }
.contact-info-item h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #718096; margin-bottom: .25rem; }
.contact-info-item p  { color: #2d3748; margin: 0; font-size: .95rem; }

.contact-form { background: #fff; border-radius: 10px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; color: #2d3748; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #cbd5e0;
  border-radius: 5px;
  font-size: 1rem;
  color: #2d3748;
  background: #f9fafc;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: #0b1e45;
  color: #a0b0cc;
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .9rem; margin-top: 1rem; line-height: 1.75; color: #7a91b5; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a { color: #7a91b5; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1c3060;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}
.footer-bottom a { color: #7a91b5; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   ADVERTISER PAGE SPECIFICS
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  border-top: 4px solid #1a56db;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.benefit-card p  { color: #4a5568; font-size: .93rem; margin: 0; }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible { outline: 3px solid #1a56db; outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================
   RESPONSIVE UTILITIES
   ========================================================= */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero    { padding: 72px 0 64px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
