*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; color-scheme: light; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --navy:        #1E4F7A;
  --navy-dark:   #122f4a;
  --navy-mid:    #163d61;
  --blue:        #5195C9;
  --blue-light:  #a8cfe8;
  --gray-dark:   #808080;
  --gray-mid:    #969798;
  --gray-light:  #f4f6f9;
  --gray-border: #e3eaf0;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(30,79,122,0.07);
  --shadow-md:   0 8px 32px rgba(30,79,122,0.12);
  --shadow-lg:   0 20px 56px rgba(30,79,122,0.16);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 13px 28px;
  border-radius: var(--r-sm); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s ease; border: none; letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,79,122,0.28); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #e8f0f8; transform: translateY(-1px); }
.btn-hero {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.32);
  color: #fff; padding: 14px 32px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.btn-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(81,149,201,0.1) 100%);
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.btn-hero:hover::before { transform: translateX(0); }
.btn-hero:hover {
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 28px rgba(81,149,201,0.22), inset 0 0 16px rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* TYPOGRAPHY */
.section-tag {
  display: inline-block; background: #e8f0f8; color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800;
  color: var(--navy); line-height: 1.18; margin-bottom: 14px; letter-spacing: -0.025em;
}
.section-sub { font-size: 1rem; color: var(--gray-dark); line-height: 1.7; max-width: 560px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 1px 16px rgba(30,79,122,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-img-footer { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: #555; font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 700; color: #aaa;
  letter-spacing: 0.06em; padding: 5px 9px; border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s; font-family: 'Inter', sans-serif;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { color: var(--navy); background: #e8f0f8; }
.lang-sep { color: #ddd; font-size: 0.72rem; }

/* NAV TOPBAR */
.nav-topbar { background: var(--navy); }
.nav-topbar-inner {
  display: flex; justify-content: flex-end; align-items: center; gap: 28px;
  padding-top: 8px; padding-bottom: 8px;
}
.nav-topbar-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.9rem; color: #fff; text-decoration: none;
  font-weight: 600; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-topbar-link:hover { color: var(--blue); }
.nav-topbar-link svg { flex-shrink: 0; width: 16px; height: 16px; }

/* HERO */
.hero {
  background: linear-gradient(155deg, #0b1e2f 0%, var(--navy-dark) 28%, var(--navy) 62%, #1c68ac 100%);
  color: var(--white); padding: 64px 0 0; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 68% 58% at 78% 22%, rgba(81,149,201,0.26) 0%, transparent 100%),
    radial-gradient(ellipse 44% 36% at 6% 90%, rgba(8,20,34,0.65) 0%, transparent 100%),
    radial-gradient(ellipse 32% 38% at 94% 94%, rgba(28,104,172,0.18) 0%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.09;
  mask-image: linear-gradient(135deg, transparent 30%, rgba(0,0,0,0.4) 52%, rgba(0,0,0,0.85) 75%);
  -webkit-mask-image: linear-gradient(135deg, transparent 30%, rgba(0,0,0,0.4) 52%, rgba(0,0,0,0.85) 75%);
}
.hero-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 920px; margin: 0 auto; padding-bottom: 40px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 40px; letter-spacing: -0.035em;
}
.hero h1 span { color: var(--blue-light); text-shadow: 0 0 36px rgba(81,149,201,0.32); white-space: nowrap; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.68); margin: 0 auto; max-width: 560px; line-height: 1.75; }
.hero-question-cards {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.hero-q-card {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-md); padding: 18px 14px; text-align: center;
}
.hero-q-card p {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.5; margin: 0; max-width: none; word-break: break-word;
}
.hero-q-card:first-child { transform: rotate(-4deg); transform-origin: top center; }
.hero-q-card:last-child  { transform: rotate(4deg);  transform-origin: top center; }
.hero-leader-gap { height: 72px; }
.hero-cta-line {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.hero-contact-btn { margin-top: 44px; }
.hero-stats {
  display: flex; justify-content: center;
  margin-top: 40px; padding: 22px 40px;
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; width: fit-content; margin-left: auto; margin-right: auto;
  margin-bottom: -36px;
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800; line-height: 1.4; letter-spacing: -0.035em;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-align: center;
}
.hero-showcase-wrap {
  position: relative; margin: 8px 24px 32px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
}
.hero-showcase-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px; z-index: 1;
  background: linear-gradient(to bottom, rgba(22,45,69,0.85), transparent);
  pointer-events: none;
}
.hero-showcase-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 110px; z-index: 1;
  background: linear-gradient(to top, rgba(22,45,69,0.95), transparent);
  pointer-events: none;
}
.hero-showcase-img {
  width: 100%; display: block; object-fit: cover;
  max-height: 220px; object-position: center 45%;
}


/* HOW IT WORKS */
.how { padding: 96px 0; background: var(--white); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-sub { margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--r-lg); padding: 40px 32px 36px; text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; z-index: 1; overflow: hidden;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.step::after { display: none; }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--blue-light); z-index: 2; }
.step:hover::before { transform: scaleX(1); }
.step-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  color: var(--blue); display: block; width: auto; height: auto;
  border-radius: 0; background: none; margin: 0 0 4px;
}
.step-num::after {
  content: ''; display: block; width: 24px; height: 2px;
  background: currentColor; opacity: 0.3; margin-top: 14px; margin-bottom: 18px; margin-left: auto; margin-right: auto;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 0.9375rem; color: var(--gray-dark); line-height: 1.65; }
.step.step-accent {
  background: linear-gradient(160deg, var(--navy) 0%, #1a5f9e 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(30,79,122,0.18);
}
.step.step-accent::before { display: none; }
.step.step-accent .step-num { color: rgba(255,255,255,0.22); }
.step.step-accent h3 { color: var(--white); }
.step.step-accent p { color: rgba(255,255,255,0.65); }
.step.step-accent:hover { border-color: transparent; box-shadow: 0 16px 48px rgba(30,79,122,0.3); }
.step-note {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin-top: 16px;
  background: linear-gradient(135deg, #fff8ed 0%, #fff3e0 100%);
  border: 1.5px solid #f5a623;
  padding: 9px 14px; border-radius: var(--r-sm);
  box-shadow: 0 2px 12px rgba(245,166,35,0.18);
}
.step-note strong { font-size: 0.82rem; color: #b86e00; font-weight: 700; white-space: nowrap; }
.step-note-sub { font-size: 0.76rem; color: #c47d00; font-weight: 500; }
.step-done { color: var(--gray-dark); letter-spacing: 0.06em; }

/* SERVICES */
.services { padding: 96px 0; background: var(--gray-light); }
.services-inner { display: flex; flex-direction: column; align-items: center; gap: 44px; }
.services-text { order: -1; text-align: center; max-width: 680px; width: 100%; }
.services-text .section-sub { margin: 0 auto; max-width: 520px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: 100%; }
.service-card {
  background: var(--white); border-radius: var(--r-md); padding: 26px 22px;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #c5d8eb; }
.service-card:hover::after { transform: scaleX(1); }
.service-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.service-card p { font-size: 0.79rem; color: var(--gray-dark); line-height: 1.62; }
.service-card-note { font-size: 0.75rem; color: var(--gray-mid); margin: 0 0 8px; font-style: italic; line-height: 1.4; }
.service-list { margin: 6px 0 0; padding: 0; list-style: none; }
.service-list li { font-size: 0.79rem; color: var(--gray-dark); line-height: 1.55; padding: 2px 0 2px 14px; position: relative; }
.service-list li::before { content: '–'; position: absolute; left: 0; color: var(--blue); font-weight: 600; }
.service-card--cta {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a6aaa 100%);
  border-color: transparent; margin-top: 10px; margin-bottom: -6px;
}
.service-card--cta::after { display: none; }
.service-card--cta:hover { border-color: transparent; }
.service-card--cta h4 { color: var(--white); margin-bottom: 4px; }
.service-card--cta p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.service-cta-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.service-cta-body { flex: 1; }
.service-cta-btn { flex-shrink: 0; white-space: nowrap; }

/* GALLERY */
.gallery { padding: 96px 0; }
.gallery-header { text-align: center; margin-bottom: 44px; }
.gallery-stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  max-width: 820px; margin: 0 auto; aspect-ratio: 4 / 3;
  background: #d0dde8;
}
.gallery-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.7s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.82); border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.6rem; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s; z-index: 2;
}
.gallery-arrow:hover { background: var(--white); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  padding: 0; transition: background 0.2s, transform 0.2s;
}
.gallery-dot.active { background: var(--white); transform: scale(1.35); }

/* TESTIMONIALS */
.testimonials { padding: 96px 0; background: var(--gray-light); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-swiper-wrap { overflow: hidden; padding: 24px 0 52px; position: relative; }
.testimonials-swiper { max-width: 820px; margin: 0 auto; overflow: visible; }
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 28px;
  border: 1px solid var(--gray-border);
  position: relative; overflow: hidden; height: auto; box-sizing: border-box;
  transform: scale(0.82); opacity: 0.5;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}
.swiper-slide-active .testimonial-card,
.swiper-slide-active.testimonial-card {
  transform: scale(1); opacity: 1;
  box-shadow: 0 8px 32px rgba(30,79,122,0.12);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 22px;
  font-size: 5rem; line-height: 1; color: #e8f0f8;
  font-family: Georgia, serif; font-weight: 900; pointer-events: none;
}
.swiper-slide.testimonial-card { width: 420px; }
.testimonials-swiper-wrap .swiper-button-prev,
.testimonials-swiper-wrap .swiper-button-next {
  position: absolute; top: calc(50% - 26px); z-index: 10;
  color: var(--navy); background: var(--white); border-radius: 50%;
  width: 44px; height: 44px; box-shadow: 0 2px 12px rgba(30,79,122,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  left: max(12px, calc(50% - 570px));
}
.testimonials-swiper-wrap .swiper-button-next { left: auto; right: max(12px, calc(50% - 570px)); }
.testimonials-swiper-wrap .swiper-button-prev::after,
.testimonials-swiper-wrap .swiper-button-next::after { font-size: 1rem; font-weight: 700; }
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--gray-mid); opacity: 1;
  width: 8px; height: 8px;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--navy) !important; opacity: 1 !important;
  width: 24px; border-radius: 4px;
}
.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card p { font-size: 0.88rem; color: #555; line-height: 1.72; font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.83rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 0.86rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.76rem; color: var(--gray-mid); margin-top: 1px; }


/* CONTACT */
.contact-section { padding: 96px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-text .section-title { margin-bottom: 32px; }
.contact-text .section-sub { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 9px; background: #e8f0f8;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-detail-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-detail-value { font-size: 0.9rem; color: #333; font-weight: 500; text-decoration: none; }
a.contact-detail-value:hover { color: var(--blue); }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--r-lg); padding: 40px 36px; box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #333; letter-spacing: 0.01em; }
.optional { font-weight: 400; color: var(--gray-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid #d8e2ec; border-radius: var(--r-sm);
  font-size: 0.88rem; font-family: 'Inter', sans-serif; color: #222;
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b8c4cc; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(81,149,201,0.12);
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23808080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}
.form-submit { width: 100%; padding: 13px; font-size: 0.93rem; border-radius: var(--r-sm); margin-top: 2px; }
.form-success {
  display: none; background: #e6f4ea; border: 1px solid #a8d5b0;
  color: #2e7d32; border-radius: var(--r-sm); padding: 13px 16px;
  font-size: 0.86rem; font-weight: 600; text-align: center;
}

/* FOOTER */
footer { background: #0a1e30; color: #7fb3d3; padding: 0 0 28px; }
.footer-header {
  display: flex; align-items: center; gap: 24px;
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-tagline { font-size: 0.9rem; color: #5a8aab; font-weight: 400; letter-spacing: 0.01em; }
.footer-cols {
  display: flex; justify-content: space-between; gap: 40px;
  padding-bottom: 36px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #2d5c7a;
  margin-bottom: 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  text-decoration: none; color: #7fb3d3; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; width: fit-content;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-link {
  display: flex; align-items: center; gap: 9px;
  color: #7fb3d3; text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--white); }
.footer-contact-link svg { flex-shrink: 0; }
.footer-legal { font-size: 0.8rem; color: #3e6a85; line-height: 2; }
.footer-legal-name { color: #5a8aab; font-weight: 600; margin-bottom: 2px; }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 0.78rem; }

/* PHOTO PLACEHOLDER SLOTS */
.service-img-slot {
  width: 100%;
  border-radius: var(--r-sm);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(81,149,201,0.035) 0px,
      rgba(81,149,201,0.035) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(135deg, #eef4fa 0%, #dde9f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-img-slot { height: 150px; margin-bottom: 16px; }

.service-img-slot::before {
  content: '';
  width: 36px; height: 36px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235195C9' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175 2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039 48.774 48.774 0 0 0-5.232 0 2.192 2.192 0 0 0-1.736 1.039l-.821 1.316z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16.5 12.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM18.75 10.5h.008v.008h-.008V10.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.45;
}
.service-img-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--navy-mid); }

/* ENTRANCE ANIMATIONS */
.fade-in-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.step.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.step.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.service-card.fade-in-up:nth-child(2) { transition-delay: 0.07s; }
.service-card.fade-in-up:nth-child(3) { transition-delay: 0.14s; }
.service-card.fade-in-up:nth-child(4) { transition-delay: 0.21s; }
.service-card.fade-in-up:nth-child(5) { transition-delay: 0.28s; }
.service-card.fade-in-up:nth-child(6) { transition-delay: 0.35s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { border-radius: var(--r-lg) !important; border: 1px solid var(--gray-border) !important; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-stage { aspect-ratio: 4 / 3; }
  .swiper-slide.testimonial-card { width: 300px; }
  .testimonials-swiper { max-width: 680px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-topbar-inner { justify-content: center; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
  .nav-topbar-link { font-size: 0.8rem; }
  .nav-links { display: none; }

  /* Section paddings */
  .how, .services, .gallery, .testimonials, .contact-section { padding: 60px 0; }
  .how-header { margin-bottom: 40px; }
  .gallery-header { margin-bottom: 28px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 1.3rem; }

  /* Hero */
  .hero { padding: 36px 0 48px; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); margin-bottom: 20px; }
  .hero-question-cards { flex-direction: column; gap: 8px; width: 100%; }
  .hero-q-card { padding: 12px 16px; width: 100%; min-width: 0; }
  .hero-q-card:first-child, .hero-q-card:last-child { transform: none; }
  .hero-q-card p { font-size: 13px; text-align: center; }
  .hero-leader-gap { height: 36px; }
  .hero-cta-line { font-size: 1rem; }
  .hero-contact-btn { margin-top: 24px; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-showcase-img { max-height: 160px; }
  .hero .container { display: flex; flex-direction: column; }
  .hero-content { order: 1; }
  .hero-showcase-wrap { order: 2; margin: 8px 0 0; }
  .hero-stats { order: 3; padding: 14px 20px; margin: -28px auto 0; position: relative; z-index: 4; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-stage { aspect-ratio: 4 / 3; }
  .gallery-arrow { width: 32px; height: 32px; font-size: 1.1rem; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }

  /* Testimonials */
  .swiper-slide.testimonial-card { width: 260px; }
  .testimonials-swiper { max-width: 560px; }
  .testimonials-header { margin-bottom: 36px; }
  .testimonials-swiper-wrap .swiper-button-prev,
  .testimonials-swiper-wrap .swiper-button-next { width: 36px; height: 36px; left: 12px; }
  .testimonials-swiper-wrap .swiper-button-next { left: auto; right: 12px; }
  .testimonials-swiper-wrap .swiper-button-prev::after,
  .testimonials-swiper-wrap .swiper-button-next::after { font-size: 0.85rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 18px; }

  /* Footer */
  .footer-header { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 28px 0 24px; margin-bottom: 28px; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-col { align-items: center; }
  .footer-col-label { width: 100%; text-align: center; }
  .footer-nav { align-items: center; }
  .footer-contact { align-items: center; }
  .footer-legal { text-align: center; }
}
