:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #0b63ce;
  --brand-dark: #083b7c;
  --accent: #ffb000;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img { max-width: 100%; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5, p { margin-top: 0; }

.navbar-glass {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(11, 99, 206, .28);
  font-size: .9rem;
}
.nav-link {
  position: relative;
  color: #1e293b;
  font-weight: 700;
  font-size: .95rem;
  padding: .7rem .9rem !important;
  border-radius: 999px;
}
.nav-link:hover { background: rgba(11, 99, 206, .08); color: var(--brand); }
.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 24px rgba(11, 99, 206, .24);
}
.navbar-toggler { border: 0; box-shadow: none !important; }

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #06101f;
}
.hero-carousel, .carousel-inner, .carousel-item { height: 760px; }
.slider-img {
  height: 760px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 176, 0, .23), transparent 24%),
    linear-gradient(90deg, rgba(3, 10, 24, .92) 0%, rgba(3, 10, 24, .68) 46%, rgba(3, 10, 24, .26) 100%);
}
.hero-content {
  max-width: 790px;
  padding-top: 76px;
  color: #fff;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.eyebrow::before, .section-kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}
.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.hero-content p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.btn-brand, .btn-ghost {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
}
.btn-brand {
  color: #07111f !important;
  background: linear-gradient(135deg, #ffd36b, var(--accent));
  box-shadow: 0 18px 35px rgba(255, 176, 0, .26);
}
.btn-brand:hover { transform: translateY(-2px); color: #07111f !important; }
.btn-ghost {
  color: #fff !important;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.hero-stats strong { display: block; font-size: 1.35rem; line-height: 1.2; }
.hero-stats span { color: rgba(255,255,255,.72); font-size: .9rem; }

.section { padding: 110px 0; }
.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(11,99,206,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}
.section-title { max-width: 720px; margin: 0 auto 48px; }
.section h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.055em;
}
.section-title p, .section-lead { color: var(--muted); font-size: 1.1rem; }
.content-card, .contact-form, .company-info, .contact-card, .service-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.content-card {
  padding: clamp(26px, 4vw, 46px);
}
.content-card p { color: #334155; font-weight: 500; }
.signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.signature strong { font-size: 1.05rem; }
.signature span { color: var(--muted); }

.service-card {
  position: relative;
  height: 100%;
  padding: 34px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(11,99,206,.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(11,99,206,.22);
}
.service-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
}
.service-card.featured p, .service-card.featured h3 { color: #fff; }
.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 20px;
  color: #07111f;
  background: linear-gradient(135deg, #ffe2a0, var(--accent));
  font-weight: 900;
  letter-spacing: -.02em;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.35rem; font-weight: 800; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); }

.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 26px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}
.gallery-item:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: var(--shadow);
  filter: saturate(1.08);
}
.lightbox-content {
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: transparent;
}

.contact-section {
  background:
    linear-gradient(180deg, #06101f 0%, #0b1730 54%, #f5f7fb 54%, #f5f7fb 100%);
}
.contact-section .section-title h2 { color: #fff; }
.contact-section .section-title p { color: rgba(255,255,255,.72); }
.contact-grid { display: grid; gap: 18px; height: 100%; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.profile-pic {
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid #fff;
  box-shadow: 0 16px 34px rgba(11,99,206,.18);
}
.contact-card h3, .contact-form h3, .company-info h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.035em;
}
.contact-card p { margin-bottom: 12px; color: var(--muted); }
.contact-card ul { list-style: none; padding: 0; margin: 0; color: #334155; }
.contact-card li + li { margin-top: 3px; }
.contact-form {
  height: 100%;
  padding: clamp(26px, 4vw, 40px);
}
.form-control {
  min-height: 58px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: none !important;
}
textarea.form-control { min-height: 150px; }
.form-control:focus { border-color: var(--brand); background: #fff; }
.form-floating > label { color: var(--muted); }

.company-info {
  max-width: 880px;
  margin: 42px auto 0;
  padding: 34px;
  text-align: center;
}
.company-info .section-kicker { margin-bottom: 10px; }
.company-info .address { color: var(--brand); font-size: 1.2rem; font-weight: 800; }
.company-meta { color: var(--muted); font-size: .92rem; }
.map-container {
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,23,42,.08);
}
.map-container iframe { display: block; width: 100%; height: 420px; border: 0; }

.footer-custom {
  padding: 26px 0;
  text-align: center;
  color: rgba(255,255,255,.72);
  background: #06101f;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-custom a { color: #ffd36b; font-weight: 800; }

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }
  .nav-cta { display: inline-block; margin-top: 6px; }
  .hero-section, .hero-carousel, .carousel-inner, .carousel-item, .slider-img { height: 700px; min-height: 700px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,10,24,.86), rgba(3,10,24,.62)); }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .hero-section, .hero-carousel, .carousel-inner, .carousel-item, .slider-img { height: 720px; min-height: 720px; }
  .hero-content { padding-top: 88px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .contact-card { align-items: flex-start; }
}

@media (max-width: 575px) {
  .navbar-brand span:last-child { font-size: 1rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .hero-content h1 { font-size: 2.7rem; }
  .contact-card { flex-direction: column; }
  .profile-pic { width: 96px; height: 96px; border-radius: 24px; }
  .content-card, .contact-form, .company-info, .contact-card, .service-card { border-radius: 22px; }
}
