/* ============================================
   SERVETIK – style.css
   ============================================ */

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

:root {
  --navy:       #08182e;
  --navy-mid:   #0f2847;
  --blue:       #1560BD;
  --blue-hover: #1a76e8;
  --blue-pale:  #e8f1fc;
  --blue-mid:   #c5d9f5;
  --gray-50:    #f7f9fc;
  --gray-100:   #eef1f7;
  --gray-200:   #dde3ef;
  --gray-400:   #9aa5be;
  --gray-600:   #556075;
  --gray-800:   #1e293b;
  --white:      #ffffff;
  --accent:     #e8a020;
  --font-head:  'Sora', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     10px;
  --radius-lg:  18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,24,46,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 66px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}

.logo {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 700;
  color: #fff; text-decoration: none;
  letter-spacing: -.5px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: var(--radius);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-hover) !important; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0; z-index: 199;
  background: var(--navy);
  padding: 1.5rem 6%;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.8);
  text-decoration: none; font-size: 16px; font-weight: 500;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: .2s;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 100px 6% 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0a2d5e 100%);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=70&fit=crop');
  background-size: cover; background-position: center right;
  opacity: .16;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,96,189,.28) 0%, transparent 68%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 660px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(21,96,189,.22);
  border: 1px solid rgba(21,96,189,.5);
  color: #88bbf4;
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 1.8rem; letter-spacing: .5px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: #88bbf4;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 1.3rem;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  max-width: 510px; margin-bottom: 2.2rem; line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-info {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 3.2rem; padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.info-item { display: flex; align-items: center; gap: 10px; }
.info-icon {
  width: 36px; height: 36px;
  background: rgba(21,96,189,.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-text { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.4; }
.info-text strong { display: block; color: rgba(255,255,255,.9); font-weight: 500; font-size: 14px; }

/* ── SHARED SECTION ── */
.section { padding: 88px 6%; }
.section-alt { background: var(--gray-50); }

.tag {
  display: inline-block;
  background: var(--blue-pale); color: var(--blue);
  font-size: 11.5px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: .9rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; letter-spacing: -.5px;
  margin-bottom: .9rem;
}
.section-sub {
  color: var(--gray-600);
  max-width: 540px; font-size: 1rem; line-height: 1.78;
}
.section-head { margin-bottom: 3.4rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(8,24,46,.14);
}
.svc-card img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
}
.svc-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}
.svc-icon {
  width: 46px; height: 46px;
  background: var(--blue-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: var(--navy); margin-bottom: .5rem;
}
.svc-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; flex: 1; }

/* ── HOURS STRIP ── */
.hours-strip {
  background: var(--navy);
  padding: 1.8rem 6%;
  display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.hours-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.8); font-size: 14.5px;
}
.hours-item svg { width: 19px; height: 19px; flex-shrink: 0; }
.hours-item strong { color: #fff; margin-right: 4px; }

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 440px; display: block;
}
.about-badge {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--blue); color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 8px 32px rgba(21,96,189,.4);
  text-align: center;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.badge-label { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 3px; line-height: 1.3; }

.about-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--gray-600); line-height: 1.55;
}
.check-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--blue-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 3.5rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: .7rem;
}
.contact-info > p {
  color: var(--gray-600); font-size: .95rem; margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.3rem;
}
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--blue-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--gray-400); margin-bottom: 2px;
}
.contact-value { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }
.contact-value a { color: var(--blue); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 190px;
  display: block; margin-top: 1.5rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 13px; font-weight: 500; color: var(--gray-800);
}
.optional { color: var(--gray-400); font-weight: 400; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px;
  color: var(--gray-800); background: var(--white);
  width: 100%; outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,96,189,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  background: var(--blue); color: #fff;
  border: none; padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; width: 100%;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 12px; color: var(--gray-400);
  text-align: center; margin-top: .9rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.2rem 6%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: #fff; text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.38); }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a {
  color: rgba(255,255,255,.45);
  text-decoration: none; font-size: 13px;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-img-main { height: 300px; }
  .about-badge { right: 12px; bottom: -14px; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #navbar .nav-links { display: none; }
  .burger { display: flex; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .hero-info { gap: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 5%; }
  .hours-strip { gap: 1.4rem; padding: 1.5rem 5%; flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-copy { order: 3; }
}
