:root {
  --navy: #1a2f6e;
  --navy-dark: #0f1e4a;
  --gold: #f5a623;
  --gold-light: #ffd06e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --grey: #6b7280;
  --light-grey: #e5e7eb;
  --dark-bg: #0d1b3e;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(26,47,110,0.10);
  --shadow-lg: 0 12px 40px rgba(26,47,110,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
.gold { color: var(--gold); }
.navy { color: var(--navy); }
.about-text p strong,
.contact-left p strong,
.why-card p strong,
.team-info p strong { color: var(--navy); font-weight: 700; }
.rental-text p strong { color: var(--gold); font-weight: 700; }
p { line-height: 1.75; color: var(--grey); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gold { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--dark-bg); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark h2 { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26,47,110,0.10);
  border: 1px solid rgba(26,47,110,0.18);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  color: var(--gold);
  background: rgba(245,166,35,0.18);
  border-color: rgba(245,166,35,0.35);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 12px; font-size: 1.05rem; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.full-width { width: 100%; justify-content: center; }

/* NAV */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 18%, rgba(26,47,110,0.92) 60%, rgba(13,27,62,0.96) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,166,35,0.25);
}
#navbar.scrolled {
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 18%, rgba(26,47,110,0.96) 60%, rgba(13,27,62,0.99) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(13,27,62,0.25);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 42px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 18%, #000 40%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 18%, #000 40%);
  will-change: transform;
  transform: translateZ(0);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,62,0.12) 0%, rgba(13,27,62,0) 30%, rgba(13,27,62,0) 70%, rgba(13,27,62,0.3) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0;
  padding: 120px 24px 80px 6%;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; max-width: 580px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin-bottom: 18px;
}
.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  max-width: 500px;
  text-shadow: 0 1px 6px rgba(13,27,62,0.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.5; }
}

/* WHY CHOOSE */
.why-section { background: linear-gradient(180deg, #fff7e3 0%, #fff2d2 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(13,27,62,0.06);
  border: 1px solid rgba(13,27,62,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,27,62,0.1);
}
.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, color 0.3s ease;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 0.95rem; line-height: 1.6; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.img-stack { position: relative; padding: 14px 14px 32px 14px; }
.img-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: calc(var(--radius) + 6px);
  z-index: 0;
  box-shadow: 0 18px 40px rgba(13,27,62,0.22);
}
.img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 520px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.img-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--gold);
  box-shadow: 0 14px 36px rgba(245,166,35,0.35);
  z-index: 2;
}
.about-text h2 { margin-bottom: 16px; }
.about-text .lead { font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: 16px; opacity: 0.9; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.pillar:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.pillar-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(245,166,35,0.18);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar strong { display: block; color: var(--navy); margin-bottom: 2px; }
.pillar p { font-size: 0.88rem; margin: 0; }
.vision-box {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.vision-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 12px;
  color: var(--gold);
}
.vision-icon svg { width: 24px; height: 24px; }
.vision-box strong { display: block; color: var(--gold); margin-bottom: 4px; }
.vision-box p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin: 0; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-body { padding: 24px; }
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.22), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, color 0.3s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-body h3 { color: var(--white); margin-bottom: 8px; }
.service-equip {
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(245,166,35,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.service-body ul { display: flex; flex-direction: column; gap: 6px; }
.service-body li {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  padding-left: 16px;
  position: relative;
}
.service-body li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* AGE BANNER */
.age-banner {
  background: var(--gold);
  padding: 72px 0;
}
.age-banner-inner { text-align: center; color: var(--navy-dark); }
.age-banner-inner h2 { color: var(--navy-dark); margin-bottom: 8px; }
.age-banner-inner h2 .gold { color: var(--navy); }
.age-banner-inner p { color: rgba(13,27,62,0.78); margin-bottom: 40px; }
.age-cards { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.age-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,27,62,0.18);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  transition: var(--transition);
}
.age-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,27,62,0.12); }
.age-emoji {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  border: 1px solid rgba(245,166,35,0.45);
  color: var(--gold);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(13,27,62,0.25);
}
.age-emoji svg { width: 30px; height: 30px; }
.age-card strong { display: block; font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 4px; }
.age-card p { color: rgba(13,27,62,0.7); font-size: 0.88rem; margin: 0; }

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 28px 152px;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: var(--transition);
  cursor: pointer;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff7e3 0%, #fff2d2 100%);
}
.team-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 3px solid transparent;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(135deg, #ffd06e 0%, var(--gold) 100%);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}
.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(13,27,62,0.16), transparent 65%);
  z-index: 0;
  transition: opacity 0.4s ease;
}
.team-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: object-fit 0.3s ease;
}
.team-card:hover .team-avatar img { object-fit: cover; }
.team-card:hover .team-avatar {
  width: 100px;
  height: 100px;
  top: 28px;
  left: 28px;
  border-radius: 50%;
  border-color: var(--gold);
}
.team-name-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  padding: 12px 18px;
  background: rgba(13,27,62,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(245,166,35,0.35);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.tag-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.tag-qual {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-card:hover .team-name-tag {
  opacity: 0;
  transform: translateY(8px);
}
.team-info {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease 0.2s, transform 0.4s ease 0.2s;
}
.team-card:hover .team-info {
  opacity: 1;
  transform: none;
}
.team-info h3 { color: var(--navy); margin-bottom: 2px; font-size: 1.1rem; }
.team-qual {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 10px;
}
.team-info p { font-size: 0.875rem; line-height: 1.65; }

/* GALLERY */
.gallery-section { padding: 96px 0; background: linear-gradient(180deg, #fff7e3 0%, #fff2d2 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-dark);
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 3 / 5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* RENTAL */
.rental-section {
  position: relative;
  background: radial-gradient(ellipse at top right, rgba(245,166,35,0.08), transparent 60%), var(--dark-bg);
}
.rental-header { max-width: 720px; margin-bottom: 48px; }
.rental-header h2 { color: var(--white); }
.rental-header p { color: rgba(255,255,255,0.72); }

.rental-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(245,166,35,0.10), rgba(245,166,35,0.02));
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: var(--radius);
}
.rental-stat { text-align: center; padding: 0 8px; position: relative; }
.rental-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.rstat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.rstat-num span { color: var(--white); font-weight: 600; }
.rstat-label {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.rental-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.cat-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease, background 0.3s ease;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right, rgba(245,166,35,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.4);
  background: rgba(255,255,255,0.06);
}
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: 11px;
  margin-bottom: 14px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, color 0.3s ease;
}
.cat-icon svg { width: 22px; height: 22px; }
.cat-card:hover .cat-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-6deg) scale(1.05);
}
.cat-card h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1.02rem;
}
.cat-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

.rental-instruments-block {
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(245,166,35,0.02));
  border: 1px solid rgba(245,166,35,0.20);
  border-radius: var(--radius);
  padding: 28px 32px 32px;
  margin-bottom: 48px;
}
.instruments-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(245,166,35,0.25);
}
.instruments-header .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.2);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,166,35,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}
.instruments-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.instruments-sub {
  margin-left: auto;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-style: italic;
}
.instruments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.instrument-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease, background 0.3s ease;
}
.instrument-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.4);
  background: rgba(255,255,255,0.06);
}
.instrument-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.instrument-icon svg { width: 22px; height: 22px; }
.instrument-chip:hover .instrument-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-6deg);
}
.instrument-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.instrument-meta strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}
.instrument-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}

.rental-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #d98e10 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.rental-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.rental-cta-text { position: relative; z-index: 1; }
.rental-cta-text h3 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.4rem;
}
.rental-cta-text p {
  color: rgba(13,27,62,0.78);
  font-size: 0.95rem;
  margin: 0;
  max-width: 620px;
}
.rental-cta .btn-primary {
  position: relative;
  z-index: 1;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.rental-cta .btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* CONTACT */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .lead { font-size: 1.08rem; color: var(--navy); font-weight: 500; margin: 12px 0; opacity: 0.9; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-item:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: 12px;
  transition: var(--transition);
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item:hover .contact-item-icon {
  background: var(--gold);
  color: var(--white);
}
.contact-item strong { display: block; color: var(--navy); font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-item span { display: block; color: var(--grey); font-size: 0.9rem; }
.contact-item .hours-day { color: var(--navy); font-weight: 700; font-size: 0.82rem; margin-top: 4px; letter-spacing: 0.02em; }
.contact-item .hours-day:first-of-type { margin-top: 0; }
.serve-areas strong { color: var(--navy); font-size: 0.9rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-chips span {
  background: var(--navy);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.contact-right { display: flex; flex-direction: column; gap: 18px; }
.symptoms-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #2a3f7a 100%);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.2);
}
.symptoms-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.22), transparent 70%);
  pointer-events: none;
}
.symptoms-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.alert-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  border-radius: 14px;
}
.alert-icon svg { width: 26px; height: 26px; }
.symptoms-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.symptoms-headline h3 { color: var(--white); margin: 0; font-size: 1.18rem; line-height: 1.3; }
.symptom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.symptom-item:hover { background: rgba(255,255,255,0.05); }
.symptom-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}
.symptom-item span:last-child { color: rgba(255,255,255,0.88); font-size: 0.88rem; }
.symptoms-foot {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-style: italic;
}
.symptoms-card .btn-primary { position: relative; z-index: 1; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}
.trust-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.04));
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: 10px;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
}
.trust-item span {
  display: block;
  color: var(--grey);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* FOOTER */
#footer {
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.85) 18%, rgba(26,47,110,0.94) 60%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
  border-top: 1px solid rgba(245,166,35,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-services, .footer-links { justify-self: end; text-align: right; }
.footer-services h4, .footer-links h4 { text-align: right; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: var(--navy-dark); font-weight: 500; }
.footer-unit { font-size: 0.78rem !important; font-style: italic; color: var(--navy-dark); opacity: 0.85; margin-top: 8px !important; }
.footer-social a {
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--navy); }
.footer-brand .footer-icon {
  color: var(--navy-dark);
  background: rgba(13,27,62,0.12);
  border-color: rgba(13,27,62,0.25);
}
.footer-social a:hover .footer-icon {
  background: var(--navy-dark);
  color: var(--white);
}
.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-contact h4 { color: var(--gold); }
.footer-contact p { color: var(--gold); }
.footer-contact a { color: var(--gold) !important; }
.footer-contact a:hover { color: var(--gold-light) !important; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-services li { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact a { color: var(--gold); transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.28);
  color: var(--gold);
  border-radius: 9px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.footer-icon svg { width: 16px; height: 16px; }
.footer-contact p:hover .footer-icon,
.footer-social a:hover .footer-icon {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.footer-bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  border-top: 1px solid rgba(245,166,35,0.25);
}
.footer-bottom p { color: var(--gold-light); }

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].animated { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .rental-categories { grid-template-columns: repeat(2, 1fr); }
  .rental-stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .rental-stat:nth-child(2)::after { display: none; }
  .instruments-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-cta { grid-template-columns: 1fr; text-align: left; padding: 28px; }
  .img-float { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 110px 24px 70px 5%; max-width: 100%; }
  .hero-bg { left: 45%; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 20%, #000 45%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 20%, #000 45%); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* Nav — kill expensive blur on mobile */
  #navbar { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: linear-gradient(90deg, var(--white) 0%, var(--white) 22%, var(--navy) 65%, var(--navy-dark) 100%); }
  #navbar.scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 90px 28px 40px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .nav-links a:active { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.4); }
  .nav-links a.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    border-color: var(--gold);
    justify-content: center;
    margin-top: 12px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(245,166,35,0.3);
  }
  .hamburger { display: flex; z-index: 1001; }
  .nav-logo { z-index: 1001; position: relative; }
  .nav-logo img { height: 36px; }

  /* Hero — full-bleed image on mobile */
  .hero-bg { left: 0; -webkit-mask-image: none; mask-image: none; }
  .hero-img { object-position: center 35%; }
  .hero-overlay { background:
    linear-gradient(180deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.7) 45%, rgba(13,27,62,0.55) 70%, rgba(13,27,62,0.85) 100%); }
  .hero-content { padding: 96px 20px 56px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 14px; letter-spacing: 0.1em; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  .hero-sub { font-size: 0.98rem; max-width: 100%; line-height: 1.5; }
  .hero-tagline { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 40px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { flex: 1 1 28%; min-width: 80px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.7rem; }

  /* Section header */
  .section-header { margin-bottom: 44px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem) !important; }

  /* About */
  .img-stack { padding: 10px 10px 20px; }
  .img-main { height: 320px; }
  .about-pillars { gap: 12px; margin: 22px 0; }
  .pillar { padding: 14px 16px; }
  .vision-box { padding: 18px 20px; }

  /* Why */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 26px 22px; }

  /* Service cards */
  .service-body { padding: 22px; }

  /* Age */
  .age-cards { gap: 14px; flex-direction: column; }
  .age-card { padding: 22px 24px; width: 100%; max-width: 320px; }

  /* Team */
  .team-card { padding: 22px 22px 22px 116px; min-height: 200px; }
  .team-card:hover .team-avatar { width: 80px; height: 80px; top: 22px; left: 22px; }
  .team-name-tag { bottom: 18px; right: 18px; padding: 10px 14px; }
  .tag-name { font-size: 0.92rem; }
  .tag-qual { font-size: 0.65rem; }
  .team-info h3 { font-size: 1.05rem; }
  .team-info p { font-size: 0.85rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4 / 3; }

  /* Rental */
  .rental-categories { grid-template-columns: 1fr; }
  .rental-stats-row { padding: 22px 16px; }
  .rstat-num { font-size: 1.5rem; }
  .instruments-grid { grid-template-columns: 1fr; }
  .instruments-header { flex-wrap: wrap; }
  .instruments-sub { margin-left: 0; flex-basis: 100%; }
  .rental-cta { padding: 24px 20px; }
  .rental-cta-text h3 { font-size: 1.2rem; }
  .rental-cta .btn-primary { width: 100%; justify-content: center; }
  .rental-instruments-block { padding: 22px 18px; }

  /* Contact */
  .symptom-list { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; gap: 4px; padding: 14px; }
  .trust-item { padding: 8px; }
  .symptoms-card { padding: 26px 22px; }
  .symptoms-header { gap: 12px; }
  .alert-icon { width: 44px; height: 44px; }
  .symptoms-headline h3 { font-size: 1.05rem; }
  .area-chips { gap: 6px; }
  .area-chips span { font-size: 0.76rem; padding: 5px 12px; }
  .contact-item { padding: 14px 16px; gap: 14px; }
  .contact-item-icon { width: 40px; height: 40px; }

  /* Footer — vertical gradient on mobile (white top, navy bottom) */
  #footer { background: linear-gradient(180deg, var(--white) 0%, var(--white) 22%, rgba(26,47,110,0.97) 50%, var(--navy-dark) 100%); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; padding-bottom: 36px; }
  .footer-contact p, .footer-social a { justify-content: flex-start; }
}

@media (hover: none) {
  .why-card:hover, .service-card:hover, .gallery-item:hover img, .cat-card:hover, .instrument-chip:hover, .pillar:hover, .contact-item:hover { transform: none; }
  .team-card:hover { transform: none; }
  .team-card:hover .team-avatar { transition-duration: 0.4s; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Hero */
  .hero-img { object-position: center 30%; }
  .hero-content { padding: 88px 16px 44px; }
  h1 { font-size: 1.85rem !important; line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }
  .hero-tagline { font-size: 0.9rem; }

  /* About */
  .img-main { height: 280px; }
  .img-stack { padding: 8px 8px 16px; }

  /* Section heads */
  h2 { font-size: 1.55rem !important; }
  .section-tag { font-size: 0.72rem; padding: 5px 14px; }

  /* Team */
  .team-card { padding: 20px 18px 20px 104px; min-height: 180px; }
  .team-card:hover .team-avatar { width: 72px; height: 72px; top: 20px; left: 18px; }
  .team-name-tag { padding: 8px 12px; }
  .tag-name { font-size: 0.85rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.tall { aspect-ratio: 4 / 3; }

  /* Service / Why */
  .service-body { padding: 20px 18px; }
  .service-icon, .why-icon { width: 48px; height: 48px; }
  .service-icon svg, .why-icon svg { width: 22px; height: 22px; }

  /* Rental stats — keep 2 cols to avoid huge stack */
  .rstat-num { font-size: 1.35rem; }
  .rstat-label { font-size: 0.7rem; letter-spacing: 0.06em; }

  /* CTA buttons full width by default */
  .btn-primary, .btn-outline { padding: 13px 22px; font-size: 0.9rem; }

  /* Symptoms card */
  .symptoms-card { padding: 22px 18px; }

  /* Footer */
  .footer-bottom { font-size: 0.75rem; padding: 20px 16px; }
}
