/* =========================================================
   EYTEK Import — stylesheet
   Professional import company website
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --navy-3: #1b3a6b;
  --gold: #d4a017;
  --gold-2: #e8b923;
  --ink: #1c2b3a;
  --muted: #5a6b7c;
  --bg: #f5f7fa;
  --white: #ffffff;
  --line: #e3e8ef;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.18);
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); font-weight: 700; }

.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: 90px 0; }
.section-alt { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.2px;
  transition: all 0.25s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(212,160,23,.35); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-white { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost-white:hover { background: var(--white); color: var(--navy); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: grid; place-items: center; color: var(--gold);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  box-shadow: inset 0 0 0 2px rgba(212,160,23,.55);
}
.logo-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy); letter-spacing: .5px; }
.logo-name span { color: var(--gold); }
.logo-tag { display: block; font-size: .62rem; font-weight: 500; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-weight: 500; color: var(--ink); font-size: .95rem; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .25s ease; border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang { display: flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.lang a { padding: 4px 10px; font-size: .82rem; font-weight: 600; border-radius: 999px; color: var(--muted); }
.lang a.active { background: var(--navy); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(212,160,23,.35), transparent 60%),
    linear-gradient(135deg, #0a1f3a 0%, var(--navy) 45%, var(--navy-3) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 18px),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(212,160,23,.15), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 110px 0 120px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.4);
  color: var(--gold-2); padding: 7px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-2); }
.hero p { color: #c9d6e8; font-size: 1.08rem; max-width: 54ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 56px; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold-2); }
.stat .lbl { font-size: .85rem; color: #a9bcd4; }

.hero-art { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.hero-card .sub { color: #a9bcd4; font-size: .85rem; margin-bottom: 18px; }
.hero-card ul { display: grid; gap: 12px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: #dbe6f5; }
.hero-card li .tick {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(212,160,23,.2); color: var(--gold-2);
  display: grid; place-items: center; font-size: .7rem; margin-top: 2px;
}
.hero-badge {
  position: absolute; top: -18px; right: -10px;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: .8rem;
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow);
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Section headings ---------- */
.sec-head { max-width: 720px; margin-bottom: 54px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-tag { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; margin-bottom: 10px; display: block; }
.sec-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.sec-head p { color: var(--muted); }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold-2);
}
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; position: relative; counter-increment: step;
}
.step .n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--gold); opacity: .9; line-height: 1; margin-bottom: 10px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- About / why us ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media { position: relative; }
.split .media .panel {
  background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--white);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg);
}
.split .media .panel h3 { color: var(--white); margin-bottom: 14px; font-size: 1.3rem; }
.split .media .panel p { color: #c9d6e8; margin-bottom: 20px; }
.split .media .panel .big { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--gold-2); }

.check-list { display: grid; gap: 16px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(212,160,23,.18); color: var(--navy); display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 3px;
}
.check-list strong { display: block; }
.check-list p { color: var(--muted); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(212,160,23,.28), transparent 60%),
    linear-gradient(135deg, #0a1f3a, var(--navy-3));
  color: var(--white); text-align: center; padding: 80px 0;
}
.cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.cta p { color: #c9d6e8; max-width: 60ch; margin: 0 auto 34px; }
.cta .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.info-card { background: linear-gradient(135deg, var(--navy), var(--navy-3)); border-radius: var(--radius); padding: 36px; color: var(--white); box-shadow: var(--shadow-lg); }
.info-card h2 { color: var(--white); margin-bottom: 8px; }
.info-card > p { color: #c9d6e8; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.info-item:last-of-type { border-bottom: 1px solid rgba(255,255,255,.1); }
.info-item .ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: rgba(212,160,23,.2); color: var(--gold-2); display: grid; place-items: center; font-size: 1.2rem; }
.info-item .t { font-size: .8rem; color: #93a7c4; letter-spacing: 1px; text-transform: uppercase; }
.info-item .v { font-weight: 600; color: var(--white); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 26px; font-size: .95rem; }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: #fbfcfe; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,160,23,.15); background: var(--white); }
.field input.invalid, .field textarea.invalid { border-color: #c0392b; }
.field .err { display: none; color: #c0392b; font-size: .82rem; margin-top: 5px; }
.field.invalid .err { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: .92rem; display: none; }
.form-status.ok { display: block; background: #eaf7ee; color: #1e7b3c; border: 1px solid #bfe6cb; }
.form-status.err { display: block; background: #fdecec; color: #b0302a; border: 1px solid #f5c2c2; }
.form-status.loading { display: block; background: #eef3fb; color: var(--navy-3); border: 1px solid #d5e0f0; }

/* ---------- Footer ---------- */
.footer { background: #071530; color: #9fb2cc; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer .logo-name { color: var(--white); }
.footer p { font-size: .92rem; }
.footer-links a { display: block; padding: 5px 0; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; font-size: .92rem; }
.footer-contact .ic { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .85rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: #6f82a0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%, rgba(212,160,23,.28), transparent 60%),
    linear-gradient(135deg, #0a1f3a, var(--navy-3));
  color: var(--white); padding: 90px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: #c9d6e8; max-width: 62ch; margin: 0 auto; }
.breadcrumb { font-size: .82rem; color: #8aa0c0; margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform .25s; font-weight: 700; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .body { padding: 0 24px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Footer CTA strip ---------- */
.footer-cta { background: rgba(212,160,23,.08); border: 1px solid rgba(212,160,23,.25); border-radius: var(--radius); padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-cta h3 { color: var(--white); margin-bottom: 4px; }
.footer-cta p { font-size: .92rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 24px; gap: 20px;
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav-links { flex-direction: column; gap: 16px; }
  .nav-right { flex-direction: column; align-items: stretch; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 70px 0 80px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}
