/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #2b2b2b;
  --slate: #3d3d3d;
  --grey-dark: #555;
  --grey-mid: #888;
  --grey-light: #c5c5c5;
  --off-white: #f5f5f3;
  --white: #ffffff;
  --accent: #555555;
  --accent-dark: #333333;
  --accent-light: #999999;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .logo span {
  color: var(--charcoal);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--charcoal);
  transition: width var(--transition);
}

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

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

.header.scrolled .nav-links a {
  color: var(--grey-dark);
}

.header.scrolled .nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--charcoal) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--slate) !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.nav-dropdown > a::after {
  display: none !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  pointer-events: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--grey-dark) !important;
  letter-spacing: 0 !important;
  transition: all var(--transition);
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--charcoal) !important;
  padding-left: 28px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    min-width: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-radius: 8px;
    margin-top: 8px;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 8px 0;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem !important;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white) !important;
    padding-left: 20px;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header.scrolled .menu-toggle span {
  background: var(--charcoal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--slate) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--grey-light);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--charcoal);
}

.hero .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* Hero image mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.mosaic-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--slate);
}

.mosaic-item:first-child {
  grid-row: 1 / 3;
  border-radius: 12px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-item .overlay-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all var(--transition);
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85, 85, 85, 0.08);
  border-radius: 12px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--charcoal);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: gap var(--transition);
}

.service-card:hover .learn-more {
  gap: 10px;
}

.learn-more svg {
  width: 16px;
  height: 16px;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--charcoal);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-experience-badge span:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85, 85, 85, 0.12);
  border-radius: 50%;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--charcoal);
}

.about-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-dark);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}

.why-us .section-heading {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.why-us .section-label,
.cta .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all var(--transition);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.why-us-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.why-us-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.why-us-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 43, 43, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

/* ===== PARTNERS ===== */
.partners {
  padding: 80px 0;
  background: var(--off-white);
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 60px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== CONTACT / CTA ===== */
.cta {
  padding: 120px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  border-radius: 20px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(85, 85, 85, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .section-heading {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.cta-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.cta-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.cta-detail-text a,
.cta-detail-text p {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

/* Contact Form */
.cta-form {
  position: relative;
  z-index: 1;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

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

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

.cta-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
  background: var(--white);
  color: var(--charcoal);
}

.cta-form .btn-primary:hover {
  background: var(--off-white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ===== SERVICE PAGE ===== */
.service-hero {
  padding: 180px 0 100px;
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.service-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.service-hero .breadcrumb a:hover {
  color: var(--white);
}

.service-hero .breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

.service-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 650px;
}

.service-hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
}

/* Service detail content */
.service-detail {
  padding: 100px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.service-detail-content h2 {
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--grey-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin: 20px 0 32px;
}

.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--grey-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-detail-content ul li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--charcoal);
  margin-top: 2px;
}

.service-detail-content h3 {
  margin-top: 40px;
  margin-bottom: 12px;
}

/* Service sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-services {
  background: var(--off-white);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-services h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sidebar-services ul li {
  margin-bottom: 0;
}

.sidebar-services ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition);
}

.sidebar-services ul li a:hover,
.sidebar-services ul li a.current {
  color: var(--charcoal);
  font-weight: 600;
}

.sidebar-services ul li a svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.sidebar-services ul li a:hover svg,
.sidebar-services ul li a.current svg {
  opacity: 1;
}

.sidebar-cta {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--white);
  text-align: center;
}

.sidebar-cta h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.7;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--charcoal);
}

.sidebar-cta .btn:hover {
  background: var(--off-white);
}

/* Service features strip */
.service-features-strip {
  padding: 80px 0;
  background: var(--off-white);
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-feature-block {
  text-align: center;
  padding: 40px 24px;
}

.service-feature-block-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85,85,85,0.08);
  border-radius: 12px;
  margin: 0 auto 20px;
}

.service-feature-block-icon svg {
  width: 26px;
  height: 26px;
  color: var(--charcoal);
}

.service-feature-block h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-feature-block p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* Service page CTA band */
.service-cta-band {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
}

.service-cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.service-cta-band p {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.service-cta-band .btn {
  background: var(--white);
  color: var(--charcoal);
}

.service-cta-band .btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 140px 0 70px;
  }

  .service-detail {
    padding: 60px 0;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-mosaic {
    display: none;
  }

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

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

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .cta-box {
    grid-template-columns: 1fr;
    padding: 48px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span {
    background: var(--white) !important;
  }

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

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(1) {
    grid-column: auto;
  }

  .cta-box {
    padding: 32px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .partners-logos {
    gap: 30px;
  }
}
