/* ============================================================
   Gades Tema – assets/css/gades.css
   ============================================================ */

:root {
  --coral:  #FF5C3A;
  --lime:   #C6F135;
  --navy:   #0D1B2A;
  --cream:  #FBF7F0;
  --violet: #6C3FC5;
  --gold:   #F0B429;
  --text:   #1A1A2E;
  --muted:  #7A7A8C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── LANG TOGGLE ── */
#lang-toggle { position: fixed; top: 1.2rem; right: 1.5rem; z-index: 9999; display: flex; gap: .4rem; }
.lang-btn { background: transparent; border: 1.5px solid var(--navy); border-radius: 2rem; padding: .25rem .8rem; font-size: .75rem; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; transition: all .25s; letter-spacing: .05em; }
.lang-btn.active { background: var(--navy); color: var(--cream); }
.lang-btn:hover:not(.active) { background: var(--navy); color: var(--cream); }

/* ── NAV ── */
#site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: rgba(251,247,240,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(13,27,42,.08); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em; color: var(--navy); text-decoration: none; }
.logo span { color: var(--coral); }
ul.nav-links { display: flex; gap: 2.5rem; list-style: none; }
ul.nav-links a { text-decoration: none; color: var(--text); font-size: .9rem; font-weight: 500; letter-spacing: .04em; position: relative; transition: color .2s; }
ul.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 2px; background: var(--coral); transition: right .3s ease; }
ul.nav-links a:hover { color: var(--coral); }
ul.nav-links a:hover::after { right: 0; }

/* ── HERO ── */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { background: var(--navy); padding: 10rem 4rem 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-left::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: var(--coral); opacity: .15; top: -60px; left: -80px; filter: blur(80px); }
.hero-tag { display: inline-flex; align-items: center; gap: .5rem; background: var(--coral); color: #fff; font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 2rem; margin-bottom: 2rem; width: fit-content; }
.hero-tag::before { content: '◆'; font-size: .55rem; }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; line-height: 1.05; color: var(--cream); margin-bottom: 1.5rem; }
.hero-h1 em { font-style: italic; color: var(--lime); }
.hero-sub { color: rgba(251,247,240,.65); font-size: 1.05rem; line-height: 1.7; max-width: 380px; margin-bottom: 2.5rem; }
.btn-primary { display: inline-flex; align-items: center; gap: .7rem; background: var(--lime); color: var(--navy); text-decoration: none; font-weight: 700; font-size: .9rem; letter-spacing: .04em; padding: .9rem 2rem; border-radius: .5rem; transition: transform .2s, box-shadow .2s; width: fit-content; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(198,241,53,.3); }
.btn-primary .arrow { font-size: 1.1rem; transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.hero-right { background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 8rem 3rem 4rem; position: relative; }
.hero-visual { width: 100%; max-width: 460px; position: relative; }
.barter-card { background: #fff; border-radius: 1.2rem; padding: 2rem; box-shadow: 0 20px 60px rgba(13,27,42,.1); position: relative; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.card-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card-badge { background: var(--lime); color: var(--navy); font-size: .7rem; font-weight: 700; padding: .25rem .7rem; border-radius: 1rem; letter-spacing: .06em; }
.exchange-flow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.exch-box { flex: 1; background: var(--cream); border-radius: .75rem; padding: 1rem; text-align: center; }
.exch-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.exch-label { font-size: .75rem; font-weight: 600; color: var(--text); }
.exch-sub { font-size: .65rem; color: var(--muted); }
.exch-arrow { font-size: 1.5rem; color: var(--coral); font-weight: 700; }
.card-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .75rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.stat-lbl { font-size: .65rem; color: var(--muted); font-weight: 500; }
.accent-pill { position: absolute; background: var(--violet); color: #fff; font-size: .7rem; font-weight: 600; padding: .5rem 1rem; border-radius: 2rem; animation: float 5s ease-in-out infinite; white-space: nowrap; }
.accent-pill.a1 { top: 10%; right: -2rem; animation-delay: .5s; background: var(--coral); }
.accent-pill.a2 { bottom: 20%; left: -2rem; animation-delay: 1.2s; background: var(--gold); color: var(--navy); }

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.section-label::before { content: '—'; }
h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.15; color: var(--navy); margin-bottom: 1.2rem; }
h2.section-title em { font-style: italic; color: var(--coral); }
.section-intro { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 560px; }

/* ── ABOUT ── */
#about { background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
#about .section-label { color: var(--lime); }
#about .section-title { color: var(--cream); }
#about .section-title em { color: var(--lime); }
#about .section-intro { color: rgba(251,247,240,.65); }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.av-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 1.5rem; transition: background .3s; }
.av-card:hover { background: rgba(255,255,255,.1); }
.av-card:nth-child(2) { margin-top: 1.5rem; }
.av-card:nth-child(4) { margin-top: -1.5rem; }
.av-icon { font-size: 2rem; margin-bottom: .75rem; }
.av-title { font-weight: 700; color: var(--cream); font-size: .95rem; margin-bottom: .4rem; }
.av-desc { font-size: .8rem; color: rgba(251,247,240,.5); line-height: 1.6; }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.srv-card { background: #fff; border-radius: 1.2rem; padding: 2.5rem 2rem; border: 1px solid rgba(13,27,42,.06); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.srv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.srv-card:nth-child(1)::before { background: var(--coral); }
.srv-card:nth-child(2)::before { background: var(--violet); }
.srv-card:nth-child(3)::before { background: var(--lime); }
.srv-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(13,27,42,.1); }
.srv-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(13,27,42,.06); line-height: 1; margin-bottom: .5rem; }
.srv-icon { font-size: 2rem; margin-bottom: 1rem; }
.srv-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.srv-desc { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.srv-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.tag { font-size: .7rem; font-weight: 600; padding: .25rem .7rem; border-radius: 1rem; letter-spacing: .05em; }
.tag-coral { background: rgba(255,92,58,.1); color: var(--coral); }
.tag-violet { background: rgba(108,63,197,.1); color: var(--violet); }
.tag-lime { background: rgba(198,241,53,.3); color: #4a5e00; }

/* ── HOW ── */
#how { background: #fff; text-align: center; }
#how .section-label, #how h2.section-title, #how .section-intro { margin-left: auto; margin-right: auto; text-align: center; }
#how .section-label { justify-content: center; }
.steps { display: flex; gap: 0; margin-top: 3.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 3rem; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--coral), var(--violet), var(--lime)); }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 0 1.5rem; position: relative; }
.step-circle { width: 6rem; height: 6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.5rem; position: relative; z-index: 2; border: 3px solid #fff; box-shadow: 0 8px 25px rgba(13,27,42,.12); transition: transform .3s; }
.step:hover .step-circle { transform: scale(1.1); }
.step:nth-child(1) .step-circle { background: var(--coral); }
.step:nth-child(2) .step-circle { background: var(--violet); }
.step:nth-child(3) .step-circle { background: var(--gold); }
.step:nth-child(4) .step-circle { background: var(--lime); }
.step-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.step-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── SECTORS ── */
#sectors { background: var(--navy); overflow: hidden; }
#sectors .section-label { color: var(--lime); }
#sectors .section-title { color: var(--cream); }
#sectors .section-title em { color: var(--coral); }
.sectors-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
#sectors .section-intro { color: rgba(251,247,240,.6); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.sector-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 2rem 1.5rem; text-align: center; transition: background .3s, transform .3s; }
.sector-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.sector-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.sector-name { font-weight: 700; color: var(--cream); font-size: .95rem; margin-bottom: .4rem; }
.sector-sub { font-size: .78rem; color: rgba(251,247,240,.45); }

/* ── CONTACT ── */
#contact { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { padding-top: .5rem; }
.contact-info .section-intro { margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(13,27,42,.08); }
.ci-icon { width: 2.5rem; height: 2.5rem; border-radius: .6rem; background: var(--navy); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-label { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.ci-value { font-size: .95rem; font-weight: 500; color: var(--navy); }
.ci-value a { color: var(--navy); text-decoration: none; }
.ci-value a:hover { color: var(--coral); }
.contact-form { background: #fff; border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 20px 60px rgba(13,27,42,.07); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label, .contact-form .wpcf7-form label { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select { width: 100%; padding: .85rem 1rem; border: 1.5px solid rgba(13,27,42,.1); border-radius: .6rem; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; margin-bottom: .75rem; }
.contact-form input:focus, .contact-form textarea:focus, .wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,92,58,.1); }
.contact-form textarea, .wpcf7-form textarea { min-height: 100px; resize: vertical; }
.contact-form input[type="submit"],
.wpcf7-form input[type="submit"],
.btn-submit { width: 100%; padding: 1rem; background: var(--navy); color: var(--lime); border: none; border-radius: .6rem; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: .05em; cursor: pointer; transition: background .2s, transform .2s; margin-top: .5rem; }
.contact-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* ── FOOTER ── */
#site-footer { background: var(--navy); padding: 3rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--cream); text-decoration: none; }
.footer-logo span { color: var(--lime); }
.footer-mid { color: rgba(251,247,240,.4); font-size: .82rem; text-align: center; }
.footer-piva { color: rgba(251,247,240,.25); font-size: .78rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(251,247,240,.5); font-size: .82rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--lime); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #site-nav { padding: 1rem 2rem; }
  ul.nav-links { gap: 1.2rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 2rem 4rem; }
  section { padding: 4rem 2rem; }
  #about { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sectors-header { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; gap: 2rem; }
  #site-footer { flex-direction: column; text-align: center; padding: 2rem; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
}
