@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --brand-900: #0b2e5b;
  --brand-800: #0f3a73;
  --brand-700: #164c8a;
  --brand-500: #1f6fe5;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --ink-900: #0b1220;
  --ink-700: #1f2937;
  --muted-600: #64748b;
  --surface: #ffffff;
  --surface-alt: #eef3fb;
  --border: #d9e3f0;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #f4f7fc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar */

.top-bar {
  background: #ffffff;
  color: var(--ink-900);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(9, 30, 66, 0.12);
}

.utility-bar {
  background: #0b1f3b;
  color: #e2e8f0;
  font-size: 0.8rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.45rem 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
  position: relative;
  padding-left: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.logo--header {
  width: 437px;
  height: 177px;
  flex: 0 0 auto;
}

.logo-text {
  letter-spacing: 0.02em;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.logo-img--header {
  width: 100%;
  height: 100%;
  object-position: left center;
  display: block;
  object-fit: cover;
}

.logo-hero {
  width: 580px;
  height: 100px;
  margin-bottom: 1rem;
}

.logo-hero .logo-img--hero {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: none;
  gap: 1.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  opacity: 0.9;
  font-weight: 600;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav-links a.active-link {
  border-bottom-color: var(--accent-500);
  color: var(--accent-500);
  opacity: 1;
}

.top-contact {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.phone-link,
.top-phone {
  font-weight: 700;
  color: var(--brand-800);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-500);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-600);
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.3);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border);
  color: var(--brand-800);
  box-shadow: none;
}

.btn-outline:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-small {
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  color: #f8fafc;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(31, 111, 229, 0.35), transparent 45%),
    linear-gradient(120deg, #0b2e5b 0%, #0f4c8a 55%, #165aa3 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-inner {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.1rem);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.hero-text p {
  max-width: 36rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.hero-badges span {
  background: rgba(15, 23, 42, 0.35);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

/* Hero card */

.hero-card {
  background: #ffffff;
  color: var(--ink-900);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-family: "DM Serif Display", serif;
}

.hero-card p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.98rem;
  color: var(--muted-600);
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--ink-700);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  font: inherit;
  background: #f8fafc;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(31, 111, 229, 0.4);
  border-color: transparent;
  background: #ffffff;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted-600);
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.page-hero {
  background: linear-gradient(140deg, #f0f5ff 0%, #ffffff 40%, #eef3fb 100%);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-top: 0;
}

.section-subtitle {
  color: var(--muted-600);
  font-size: 1rem;
  margin-top: 0.4rem;
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", serif;
  color: var(--ink-900);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-2 {
  display: grid;
  gap: 1.6rem;
}

.services-grid,
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.card-note {
  color: var(--muted-600);
  font-size: 0.9rem;
}

.tag {
  display: inline-block;
  background: #eef2ff;
  color: var(--brand-700);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.muted {
  color: var(--muted-600);
}

/* About */

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.highlight-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-700);
  margin-bottom: 0.4rem;
}

/* Pricing */

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed #dbe3f0;
}

.price-list li:last-child {
  border-bottom: none;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Footer */

.footer {
  background: #071b35;
  color: #cbd5f5;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dot {
  display: inline-block;
  color: #cbd5f5;
}

/* Galleries */

.gallery {
  margin-top: 1rem;
  position: relative;
}

.gallery-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}

.gallery-item {
  flex: 0 0 auto;
  width: 180px;
  height: 125px;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
  scroll-snap-align: start;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-empty {
  color: var(--muted-600);
  font-size: 0.95rem;
  padding: 8px 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--brand-800);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  z-index: 2;
}

.gallery-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.gallery-prev {
  left: -12px;
}

.gallery-next {
  right: -12px;
}

.gallery-progress {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}

.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  transition: width 0.2s ease;
}

.gallery.compact .gallery-item {
  width: 120px;
  height: 85px;
}

.gallery.compact .gallery-img {
  width: 120px;
  height: 85px;
  object-fit: cover;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-inner {
  position: relative;
  max-width: min(1000px, 96vw);
  max-height: 92vh;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 92vh;
  border-radius: 16px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* Partner pills */

.partner-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.partner-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--brand-800);
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* Partners strip */

.partners {
  padding: 32px 0;
  background: #f0f4fb;
  border-top: 1px solid var(--border);
}

.partners-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partners-strip .gallery-track {
  overflow-x: auto;
  padding-bottom: 10px;
}

.gallery-logo {
  width: 170px;
  height: 90px;
  background: #fff;
  border: 1px solid var(--border);
}

.gallery-logo img {
  object-fit: contain;
  padding: 10px;
}

/* Responsive */

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: flex;
  }
}

@media (max-width: 720px) {
  .top-contact {
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 52px;
  }
  .logo--header {
    width: 260px;
    height: 106px;
  }
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    position: static;
    transform: none;
  }
  .top-contact {
    margin-left: 0;
  }
  .logo--header {
    order: 1;
  }
  .nav-links {
    order: 2;
  }
  .top-contact {
    order: 3;
  }
  .logo-hero {
    width: 320px;
    height: 80px;
  }
  .gallery-prev {
    left: 2px;
  }
  .gallery-next {
    right: 2px;
  }
}
