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

:root {
  --bg: #f8fafb;
  --surface: #ffffff;
  --surface-alt: #f0f4f9;
  --text: #0f172a;
  --text-light: #64748b;
  --brand: #0066cc;
  --brand-dark: #004499;
  --brand-light: #e0eeff;
  --accent: #00a3ff;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(0, 51, 102, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 51, 102, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --container: min(1140px, 94vw);
  
  /* Premium colors from logo */
  --premium-burgundy: #A51B2C;
  --premium-gold: #D4AF37;
  --premium-burgundy-dark: #7a1420;
  --premium-gold-light: #E5C158;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: "Lexend", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: #0f172a;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.section-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.35rem;
  font-size: 0.72em;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(46, 166, 255, 0.14));
  color: var(--brand-dark);
  vertical-align: middle;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 251, 0.82);
  border-bottom: 0;
}

.topbar,
.topbar-actions {
  display: none !important;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.brand-mark {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  display: block;
}

.brand {
  gap: 1.2rem;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.8rem;
  font: inherit;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Section background image with transparency effect */
.section-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  opacity: 0.08;
  object-fit: cover;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Image with premium transparency effect */
.section-visual {
  position: relative;
  height: clamp(220px, 34vw, 340px);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 18px 42px rgba(0, 51, 102, 0.14);
}

.section-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 58, 116, 0.36) 0%, rgba(0, 102, 204, 0.2) 38%, rgba(255, 255, 255, 0.06) 72%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.section-visual::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.58) 100%);
  z-index: 3;
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-visual-bottom {
  margin: 1.4rem 0 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(234, 241, 248, 0.85));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  padding-top: clamp(1.2rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("media/inter%202.jpg");
  background-size: cover;
  background-position: right center;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.35) 52%,
    rgba(0, 0, 0, 0.7) 72%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.35) 52%,
    rgba(0, 0, 0, 0.7) 72%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.4rem;
  background: var(--brand-light);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.lead {
  max-width: 62ch;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.hero-cta {
  margin: 0.8rem 0 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.quick-points {
  margin: 0.8rem 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.quick-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
}

.quick-points li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 1.2rem;
}

.hero-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f9 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  justify-items: center;
}

.hero-panel h2 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  justify-self: start;
}

.hero-panel .btn.btn-primary.btn-small {
  width: min(100%, 26rem);
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 0.85rem;
}

.hero-panel small {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1.2;
}

.hero-panel p {
  margin: 0.1rem 0 0.4rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.hero-socials {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.05rem;
  justify-content: center;
}

.hero-social-link {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-social-link i {
  font-size: 1.15rem;
}

.hero-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.social-linkedin {
  background: #0a66c2;
}

.social-tiktok {
  background: #0b0b0f;
}

.social-instagram {
  background: linear-gradient(135deg, #5b51d8 0%, #c13584 45%, #fd1d1d 70%, #fcb045 100%);
}

@media (max-width: 760px) {
  .hero-panel {
    padding: 0.75rem;
    gap: 0.35rem;
  }

  .hero-panel h2 {
    margin-bottom: 0.05rem;
    font-size: 0.95rem;
  }

  .hero-panel .btn {
    padding: 0.58rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-panel .btn.btn-primary.btn-small {
    width: min(100%, 22rem);
    min-height: 2.6rem;
    font-size: 0.82rem;
  }

  .hero-socials {
    gap: 0.3rem;
    margin-top: 0.05rem;
  }

  .hero-social-link {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 0.58rem;
  }

  .hero-social-link i {
    font-size: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand-light);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--text-light);
}

.btn-ghost:hover {
  background: var(--surface-alt);
  border-color: var(--brand);
}

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

.btn-call {
  min-width: 210px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 10px 25px rgba(20, 52, 82, 0.06);
}

.service-card {
  border-top: 4px solid #0f7acb;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.facts ul,
.card ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1rem;
}

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

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(19, 48, 76, 0.08);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card div {
  padding: 0.9rem;
}

.stars {
  letter-spacing: 2px;
  color: #f8a620;
  margin-bottom: 0.5rem;
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.form-card,
.booking-form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  background: #fff;
}

.form-card,
.booking-form {
  display: grid;
  gap: 1rem;
}

.form-card h3,
.booking-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.form-feedback {
  min-height: 1.2rem;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b7a3f;
}

.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1a2444 100%);
  color: #cbd5e1;
  padding: 3rem 0 2rem;
}

.site-footer p {
  color: #94a3b8;
  margin: 0.5rem 0;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-layout strong {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.social-links a:hover::after {
  width: 100%;
}

.form-privacy {
  margin: 0;
  color: #526070;
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-privacy a,
.legal-links a,
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.8rem;
}

.legal-links a {
  color: #cbd5e1;
}

.legal-page {
  max-width: 920px;
}

.legal-page section {
  scroll-margin-top: 7rem;
  margin-bottom: 2rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin-top: 2rem;
}

.legal-page h3 {
  margin-top: 1.25rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.7;
}


.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  background: linear-gradient(135deg, #0f172a 0%, #1a2444 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 95;
}

.mobile-cta a {
  color: #fff;
  text-align: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.3s ease;
}

.mobile-cta a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-cta a:last-child {
  border-right: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.320, 1), transform 0.75s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .cards-3,
  .cards-2,
  .project-grid,
  .about-grid,
  .contact-grid,
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    flex-direction: column;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}
