:root {
  --primary: #0B3D5C;
  --primary-dark: #072A40;
  --accent: #E85D04;
  --accent-hover: #D45103;
  --success: #2A9D8F;
  --light: #F8FAFC;
  --gray: #64748B;
  --dark: #1E293B;
  --white: #FFFFFF;
  --shadow: 0 10px 40px rgba(11, 61, 92, 0.12);
  --radius: 12px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

/* ===== Smooth global transitions ===== */
a, button, .btn, .nav a, .service-card, .gallery-item, .gallery-item img,
.hero-feature, .trust-item, .review-card, .float-btn, .hero-video-item,
.lightbox, .video-modal, .lightbox-close, .video-modal-close,
input, textarea, select {
  transition: color 0.25s ease, background 0.25s ease, background-color 0.25s ease,
              border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s ease,
              opacity 0.3s ease, filter 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

/* Fade-in for lightboxes / modals */
.lightbox {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-modal {
  opacity: 0;
  visibility: hidden;
  display: flex !important;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-inner {
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-modal.active .video-modal-inner {
  transform: scale(1) translateY(0);
}

/* Service cards lift */
.service-card:hover {
  transform: translateY(-6px);
}

/* Gallery zoom polish */
.gallery-item img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Floating CTA pulse-friendly */
.floating-cta .float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Buttons subtle lift */
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* Nav underline feel */
.nav a {
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Trust / review soft lift */
.trust-item, .review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-item:hover, .review-card:hover {
  transform: translateY(-4px);
}



h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top a {
  color: white;
  font-weight: 500;
}

.header-top a:hover {
  color: #FFD166;
}

.header-main {
  padding: 14px 0;
}

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

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

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.4px;
}

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

.nav a {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0b2c3d 0%, #0e4a66 55%, #0A4D6E 100%);
  color: white;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255,209,102,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}

.hero-badge i {
  color: #FFD166;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero h1 span {
  color: #FFD166;
}

.hero-lead {
  font-size: 1.08rem;
  opacity: 0.93;
  margin-bottom: 26px;
  max-width: 480px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-feature i {
  color: #4ade80;
  font-size: 0.9rem;
}

.hero-card {
  background: white;
  color: var(--dark);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
.hero-card-label {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.hero-card .phone-big {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  margin: 6px 0 14px;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.hero-card .phone-big:hover {
  color: var(--primary-dark);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}

.hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: #334155;
}

.hero-card ul li i {
  color: #059669;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 48px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.hero-card .phone-big {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  margin: 10px 0 16px;
  display: block;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.hero-card ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.hero-card ul li i {
  color: var(--success);
}

/* Trust bar */
.trust-bar {
  background: var(--light);
  padding: 32px 0;
  border-bottom: 1px solid #E2E8F0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Sections – keep short for little scrolling */
section {
  padding: 55px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-header .label {
  display: inline-block;
  background: rgba(232, 93, 4, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

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

.service-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(11, 61, 92, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-card .btn {
  padding: 9px 18px;
  font-size: 0.88rem;
}

/* About / Business description */
.about-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-box h2 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.about-box p {
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* Promo Video */
.video-section {
  background: #0f172a;
  color: white;
}
.video-section .section-header .label {
  color: #38bdf8;
}
.video-section .section-header h2 {
  color: white;
}
.video-section .section-header p {
  color: #94a3b8;
}
.video-wrapper {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  background: #000;
}
.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}
.video-caption {
  text-align: center;
  margin-top: 18px;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: #eee;
}

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

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

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 92, 0.45);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* Lightbox – responsive image popup */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: clamp(12px, 3vw, 28px);
  box-sizing: border-box;
}

.lightbox.active {
  pointer-events: auto;
}

.lightbox img {
  max-width: min(960px, 92vw);
  max-height: min(88vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: max(12px, env(safe-area-inset-right, 12px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.75);
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .lightbox {
    padding: 10px;
    align-items: center;
  }
  .lightbox img {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 8px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Service page specific */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 48px 0 52px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.service-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.service-content ul {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 24px auto 28px;
}

.service-content ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
}

.service-content ul li i {
  color: var(--success);
  margin-top: 4px;
}

/* CTA strip */
.cta-strip {
  background: var(--primary);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.cta-strip p {
  opacity: 0.9;
  margin-bottom: 22px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.footer a:hover {
  color: #FFD166;
}

.footer ul {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 400px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 40px 0;
  }
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  color: white !important;
}
.btn-whatsapp.btn-lg {
  padding: 14px 24px;
  font-size: 1.05rem;
}

/* Compact sections */
.compact-section {
  padding: 36px 0 !important;
}
.about-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-box h2 {
  margin-bottom: 12px;
}
.about-box p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

/* Google Reviews */
.reviews-section {
  background: #f8fafc;
  padding: 48px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.review-card {
  background: white;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.review-card .stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  margin: 0 0 12px;
}
.review-card .reviewer {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* Header top WhatsApp spacing */
.header-top a {
  text-decoration: none;
}
.header-top .fab.fa-whatsapp {
  color: #25D366;
}

/* Floating Call Us box - stays visible while scrolling */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-cta .float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  color: white !important;
}
.floating-cta .float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.floating-cta .float-call {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.floating-cta .float-wa {
  background: #25D366;
}
.floating-cta .float-btn i {
  font-size: 1.25rem;
}
.floating-cta .float-label {
  display: inline;
}
@media (max-width: 520px) {
  .floating-cta {
    bottom: 16px;
    right: 12px;
    left: 12px;
    align-items: stretch;
  }
  .floating-cta .float-btn {
    justify-content: center;
    border-radius: 12px;
    padding: 14px 16px;
  }
}

/* Contact form on service pages */
.contact-form-section {
  background: #f8fafc;
  padding: 40px 0;
}
.contact-form-box {
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.contact-form-box h3 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.35rem;
}
.contact-form-box .form-sub {
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.contact-form-box label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #334155;
}
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.contact-form-box textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form-box .form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-form-box button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.contact-form-box button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2,132,199,0.35);
}

.videos-grid video {
  width: 100%;
  border-radius: 12px;
  display: block;
  background: #000;
}
.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


/* Hero vertical video marquee (right side) */
.hero-videos {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
}

.hero-videos marquee {
  display: block;
  width: 100%;
  height: 520px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  margin: 0 8px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-video-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.hero-video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  max-height: 170px;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.hero-video-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  text-align: center;
  letter-spacing: 0.02em;
}

/* Centre popup video player – responsive */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
  box-sizing: border-box;
  /* visibility/opacity handled in global transitions block */
}

.video-modal-inner {
  position: relative;
  width: min(480px, 92vw);
  max-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0f172a;
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.08);
  opacity: 1;
}

.video-modal-inner video {
  width: 100%;
  max-height: min(70vh, 680px);
  border-radius: 12px;
  background: #000;
  display: block;
  object-fit: contain;
}

.video-modal-inner p {
  color: #e2e8f0;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
  padding: 0 8px;
}

/* Tablet */
@media (max-width: 768px) {
  .video-modal-inner {
    width: min(420px, 90vw);
    border-radius: 16px;
  }
  .video-modal-inner video {
    max-height: min(68vh, 560px);
  }
}

/* Mobile phones */
@media (max-width: 520px) {
  .video-modal {
    padding: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  }
  .video-modal-inner {
    width: min(100%, 96vw);
    max-height: 90vh;
    padding: 10px 10px 12px;
    border-radius: 14px;
  }
  .video-modal-inner video {
    max-height: 72vh;
    border-radius: 10px;
  }
  .video-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
  .video-modal-inner p {
    font-size: 0.88rem;
    margin-top: 8px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .video-modal-inner {
    width: 98vw;
    padding: 8px;
  }
  .video-modal-inner video {
    max-height: 68vh;
  }
}

@media (max-width: 900px) {
  .hero-videos {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-videos marquee {
    height: 200px !important;
    direction: left; /* horizontal on mobile - attribute overridden via CSS limited */
  }
  .hero-video-item {
    display: inline-block;
    width: 110px;
    margin: 0 8px 0 0;
    vertical-align: top;
  }
  .hero-video-item video {
    max-height: 180px;
  }
}
