:root {
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light: #eef2f8;
  --blue: #1a6ef5;
  --blue-dark: #1455c8;
  --blue-light: #e8f0fe;
  --blue-mid: #5b9bf8;
  --slate: #64748b;
  --dark: #0f172a;
  --mid: #334155;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26,110,245,0.08);
  --shadow-md: 0 8px 40px rgba(26,110,245,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a.active {
  color: var(--dark);
}

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: white !important;
}

.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light) 0%, #dbeafe 50%, #eff6ff 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-bg-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: radial-gradient(rgba(26,110,245,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid rgba(26,110,245,0.2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

h1 span {
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(26,110,245,0.35);
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,110,245,0.45);
}

.btn-ghost {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.btn-ghost:hover {
  gap: 12px;
}

.blue-link {
  color: var(--blue);
  margin-bottom: 16px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.stat-num span {
  color: var(--blue);
}

.stat-label {
  font-size: 13px;
  color: var(--slate);
  margin-top: 2px;
}

section {
  padding: 96px 60px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.services-preview {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 18px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(26,110,245,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  background: var(--light);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  min-height: 70px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-visual-inner {
  background: white;
  border-radius: 12px;
  padding: 28px 32px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(26,110,245,0.15);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.check-row:last-child {
  border-bottom: none;
}

.check {
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
}

.features-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.testimonial-strip {
  background: var(--dark);
  padding: 64px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.testimonial-item {
  flex: 1;
}

.t-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.t-role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.t-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.1);
}

.stars {
  color: #fbbf24;
  font-size: 13px;
  margin-bottom: 12px;
}

.cta-banner {
  background: var(--blue);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 520px;
}

.btn-white {
  background: white;
  color: var(--blue);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.25s;
  flex-shrink: 0;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

footer {
  background: #0a0f1e;
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--blue-mid);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  background: #060a14;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 22px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    padding: 120px 24px 70px;
  }

  .hero-bg,
  .hero-bg-dots {
    width: 100%;
    opacity: 0.35;
  }

  section {
    padding: 72px 24px;
  }

  .section-head-row,
  .cta-banner,
  .testimonial-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .why-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .t-divider {
    display: none;
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* INNER PAGES */
.page-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, white 60%);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 18px;
}

.page-hero h1 span {
  color: var(--blue);
}

.page-hero p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 620px;
}

/* SERVICES PAGE */
.services-section {
  padding: 80px 60px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:first-child {
  padding-top: 0;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-visual {
  background: var(--light);
  border-radius: 8px;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s;
}

.service-row:hover .service-visual img {
  transform: scale(1.03);
}

.service-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.service-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-info p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
}

.feat::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-section {
  background: var(--off-white);
  padding: 80px 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 20px;
}

.plan-period {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 14px;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}

.plan-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.btn-plan-outline {
  border: 2px solid var(--border);
  color: var(--dark);
  background: transparent;
}

.btn-plan-solid {
  background: var(--blue);
  color: white;
}

/* ABOUT PAGE */
.story {
  padding: 96px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img {
  background: var(--light);
  border-radius: 8px;
  height: 440px;
  overflow: hidden;
}

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

.story-label,
.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.story h2,
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.story p,
.contact-info p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values {
  background: var(--off-white);
  padding: 96px 60px;
}

.values-grid,
.team-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card,
.gallery-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
}

.value-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.value-card h3,
.gallery-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p,
.gallery-info p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

.team {
  padding: 96px 60px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background: white;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  height: 200px;
  background: var(--light);
}

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

.team-info {
  padding: 24px 24px 28px;
}

.team-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.stats-bar {
  background: var(--dark);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stats-bar .stat {
  text-align: center;
}

.stats-bar .stat-num {
  font-size: 44px;
  color: white;
}

.stats-bar .stat-label {
  color: rgba(255,255,255,0.5);
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 60px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.method-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 4px;
}

.method-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.hours-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 28px;
}

.hours-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hours-day {
  color: rgba(255,255,255,0.6);
}

.hours-time {
  color: white;
  font-weight: 500;
}

.hours-time.available {
  color: #34d399;
}

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 14px;
  color: var(--slate);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--off-white);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-option {
  position: relative;
}

.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.service-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  background: var(--off-white);
}

.service-option input:checked + label {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}

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

.success-box {
  background: #dcfce7;
  color: #166534;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
}

/* GALLERY */
.gallery-section {
  padding: 96px 60px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 36px 0 72px;
}

.work-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-visual {
  display: block;
  height: 300px;
  background: var(--light);
  overflow: hidden;
}

.work-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s;
}

.work-card:hover .work-visual img {
  transform: scale(1.03);
}

.work-info {
  padding: 26px 28px 30px;
}

.work-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.work-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.work-info p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

.gallery-secondary-label {
  margin-top: 12px;
}

.gallery-card {
  overflow: hidden;
  transition: all 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-visual {
  height: 180px;
  background: var(--light);
  border-radius: 6px;
  margin-bottom: 22px;
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .page-hero,
  .services-section,
  .pricing-section,
  .story,
  .values,
  .team,
  .gallery-section,
  .contact-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-row,
  .story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .pricing-grid,
  .values-grid,
  .team-grid,
  .work-grid,
  .gallery-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .work-visual {
    height: 220px;
  }

  .form-row,
  .service-options {
    grid-template-columns: 1fr;
  }
}
