/* ===== VARIABLES ===== */
:root {
  --navy-900: #050b1a;
  --navy-800: #0a1428;
  --navy-700: #0f1d38;
  --navy-600: #16264a;
  --orange: #ff7a00;
  --orange-light: #ff9d33;
  --blue: #1e6fd9;
  --blue-light: #3b8bf0;
  --silver: #d6dde8;
  --white: #ffffff;
  --text: #c3ccdb;
  --text-dim: #8a97ad;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --grad-orange: linear-gradient(135deg, #ff7a00, #ff9d33);
  --grad-brand: linear-gradient(135deg, #3b8bf0, #ff7a00);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--white); line-height: 1.15; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-grad {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; font-family: 'Montserrat', sans-serif;
  cursor: pointer; border: none; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--grad-orange); color: var(--white); box-shadow: 0 10px 30px rgba(255, 122, 0, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(255, 122, 0, 0.5); }
.btn--ghost { background: rgba(255, 255, 255, 0.06); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.18); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }
.btn--phone { background: rgba(255, 122, 0, 0.12); color: var(--orange-light); border: 1px solid rgba(255, 122, 0, 0.4); font-size: 15px; }
.btn--phone:hover { background: var(--orange); color: var(--white); }
.btn--wa { background: #25d366; color: var(--white); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.45); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, padding 0.3s;
}
.header.scrolled { background: rgba(7, 13, 26, 0.92); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand__text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: var(--white); letter-spacing: 0.5px; }
.brand__accent { color: var(--orange); margin-left: 6px; font-weight: 800; }

.nav__list { display: flex; gap: 6px; }
.nav__link {
  padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 15px;
  color: var(--text); transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(30, 111, 217, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(255, 122, 0, 0.12), transparent 60%),
    var(--navy-800);
}
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 50px; position: relative; z-index: 2; }

.hero__badge {
  display: inline-block; padding: 8px 18px; border-radius: 50px;
  background: rgba(255, 122, 0, 0.12); border: 1px solid rgba(255, 122, 0, 0.35);
  color: var(--orange-light); font-weight: 600; font-size: 14px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; margin-bottom: 22px; letter-spacing: -1px; }
.hero__sub { font-size: 17px; color: var(--text); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: var(--white); }
.stat__num { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

.hero__visual { display: flex; justify-content: center; }
.hero__logo {
  width: 100%; max-width: 420px; border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ===== TRUST BAR ===== */
.trustbar { background: var(--navy-900); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 22px 0; }
.trustbar__inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: 2px; color: var(--silver); }
.trust__icon { font-size: 20px; }
.trust__sep { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.15); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section--dark { background: var(--navy-900); }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section__tag {
  display: inline-block; color: var(--orange); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 18px; }
.section__lead { font-size: 17px; color: var(--text); }

.grid { display: grid; gap: 24px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--why { grid-template-columns: repeat(4, 1fr); }

/* ===== CARDS ===== */
.card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--grad-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(255, 122, 0, 0.4); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 20px;
  background: rgba(255, 122, 0, 0.12); border: 1px solid rgba(255, 122, 0, 0.2);
}
.card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card__text { font-size: 14.5px; color: var(--text-dim); }

/* ===== WHY ===== */
.why { text-align: center; padding: 30px 20px; }
.why__icon {
  width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  background: linear-gradient(160deg, rgba(255,122,0,0.18), rgba(30,111,217,0.12));
  border: 1px solid rgba(255, 122, 0, 0.3);
}
.why__title { font-size: 21px; font-weight: 800; margin-bottom: 12px; color: var(--orange-light); }
.why__text { font-size: 15px; color: var(--text-dim); }

/* ===== AREAS ===== */
.areas { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.areas__heading { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 18px; }
.areas__desc { font-size: 16.5px; color: var(--text); margin-bottom: 28px; }
.areas__feats { display: flex; flex-direction: column; gap: 14px; }
.areas__feats li {
  display: flex; align-items: center; gap: 14px; padding: 16px 22px;
  background: var(--navy-700); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 16px; color: var(--white);
  transition: all 0.3s var(--ease);
}
.areas__feats li:hover { border-color: var(--orange); transform: translateX(6px); background: var(--navy-600); }
.feat__ico { font-size: 20px; }

.areas__map { display: flex; justify-content: center; align-items: center; }
.cyprus {
  width: 100%; max-width: 560px; height: auto; display: block; overflow: visible;
  animation: mapPulse 3.5s ease-in-out infinite;
}
.isle__path {
  fill: url(#isleFill);
  stroke: url(#isleStroke);
  stroke-width: 13;
  stroke-linejoin: round;
  stroke-linecap: round;
}
@keyframes mapPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.85)) drop-shadow(0 0 22px rgba(255, 122, 0, 0.5)); }
  50%      { filter: drop-shadow(0 0 13px rgba(255, 160, 40, 0.95)) drop-shadow(0 0 36px rgba(255, 122, 0, 0.6)); }
}

/* ===== CTA ===== */
.cta {
  position: relative; padding: 90px 0; overflow: hidden; text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 122, 0, 0.18), transparent 65%),
    linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.cta__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(30,111,217,0.2), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.cta__sub { font-size: 18px; color: var(--text); margin-bottom: 36px; }
.cta__phone {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--white);
  padding: 16px 40px; border-radius: 60px; margin-bottom: 26px;
  background: var(--grad-orange); box-shadow: 0 14px 40px rgba(255, 122, 0, 0.4);
  transition: transform 0.3s var(--ease);
}
.cta__phone:hover { transform: translateY(-4px) scale(1.02); }
.cta__phone .icon { width: 34px; height: 34px; }
.cta__row { display: flex; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-900); padding: 70px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__slogan { color: var(--orange-light); font-weight: 600; font-style: italic; margin-bottom: 8px; }
.footer__text { color: var(--text-dim); font-size: 14.5px; max-width: 280px; }
.footer__title { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer__links li { margin-bottom: 11px; }
.footer__links a, .footer__links li { color: var(--text-dim); font-size: 14.5px; transition: color 0.2s; }
.footer__links a:hover { color: var(--orange-light); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 22px 0; text-align: center; }
.footer__bottom p { color: var(--text-dim); font-size: 14px; }

/* ===== FLOATING WHATSAPP ===== */
.fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s infinite; transition: transform 0.3s;
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 32px; height: 32px; fill: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--why { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__logo { max-width: 300px; }
  .hero__content { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
}

@media (max-width: 768px) {
  .header__cta { display: none; }
  .nav {
    position: fixed; top: 76px; right: 0; width: 70%; max-width: 320px; height: calc(100vh - 76px);
    background: var(--navy-900); padding: 30px 24px;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 6px; }
  .nav__link { display: block; padding: 14px 16px; font-size: 17px; }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .areas { grid-template-columns: 1fr; gap: 30px; }
  .areas__map { order: -1; }
  .section { padding: 70px 0; }
  .hero { padding: 120px 0 70px; }
}

@media (max-width: 560px) {
  .grid--services, .grid--why { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr; }
  .trustbar__inner { gap: 16px; }
  .trust { font-size: 14px; letter-spacing: 1px; }
  .hero__stats { gap: 24px; }
  .stat__num { font-size: 26px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
