.gallery-item p:first-child {
  font-size: 1.08rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25em;
}
/* Add space between last gallery card and window edge */
.lighting-gallery {
  padding: 4px 14px 4px 14px;
}

/* Media Optimization Styles */
.video-loading {
  background: #f0f0f0;
  position: relative;
}

.video-loading::after {
  content: "Loading...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.video-ready {
  background: transparent;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

.optimized {
  transition: all 0.3s ease;
}

/* Enhanced loading animation for simultaneous loading */
#loading-progress,
#preload-progress {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95),
    rgba(20, 20, 20, 0.95)
  );
  color: white;
  padding: 25px;
  border-radius: 15px;
  z-index: 99999;
  display: none;
  min-width: 280px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

/* Loading overlay that blocks all interactions */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 99998;
  display: none;
  pointer-events: all;
}

.loading-overlay.active {
  display: block;
}

/* Prevent background interaction when loading */
body.loading-images {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

#loading-progress h3,
#preload-progress h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.progress-bar-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 2s infinite;
}

.progress-bar,
#preload-progress-bar {
  height: 100%;
  background: #880808;
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 0%;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progress-shine 1.5s infinite;
}

.progress-text,
#preload-progress-text {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 8px;
  font-weight: 500;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #880808;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Enhanced image loading states - force immediate display */
.fit-tile img {
  background: transparent !important;
  min-height: 200px;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
  transition: filter 0.3s ease !important;
  animation: none !important;
  will-change: auto !important;
  filter: grayscale(100%) !important;
  border-radius: 12px !important;
}

.fit-tile img.loading {
  opacity: 1 !important;
  filter: none !important;
  background: transparent !important;
}

.fit-tile img.loaded {
  opacity: 1;
  filter: grayscale(100%);
  background: transparent;
  border-radius: 12px !important;
}

/* Hover effect to restore color on desktop */
@media (min-width: 769px) {
  .fit-tile:hover img {
    filter: grayscale(0%) !important;
    border-radius: 12px !important;
  }
}

.fit-tile img.error {
  background: transparent !important;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}

.fit-tile img.error::before {
  content: "Image failed to load";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 12px;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Progressive loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fit-tile {
  animation: fadeInUp 0.6s ease-out;
}

/* Mobile video optimizations */
@media (max-width: 768px) {
  .modal-content {
    max-height: 90vh !important;
    height: 90vh !important;
    min-height: 90vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    border-radius: 0 !important;
  }

  .fit-tile {
    width: 100%;
    height: auto;
  }

  /* Mobile photo/video modal optimizations */
  .modal-content {
    max-height: 90vh !important;
    height: 90vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  #fit-grid-wrapper {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 8px 16px !important;
  }

  .fit-grid {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .fit-tile {
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .fit-tile img {
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  /* Videos section mobile optimizations */
  #fit-videos-grid {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 1rem 8px !important;
    grid-template-columns: 1fr !important;
  }

  .video-item {
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .gallery-video {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }
}

/* Loading progress bar enhancements */
.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #880808, #cc0000);
  border-radius: inherit;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(136, 8, 8, 0.5);
}

/* Smooth transitions for all media elements */
img,
video {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Performance optimizations */
.fit-grid {
  contain: none;
}

.fit-tile {
  contain: none;
  will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .fit-tile,
  .fit-tile img,
  .video-loading,
  .video-ready {
    transition: none;
    animation: none;
  }
}
/* Ensure gallery cards have margin and rounded corners */
.gallery-item {
  margin-bottom: 10px;
  /* margin: 12px !important; */
  border-radius: 18px !important;
  overflow: hidden;
}
.main-section {
  /* ...existing code... */
  position: relative;
}

.main-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #800000 100%);
  pointer-events: none;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Best-effort download deterrents for media (non-visual) */
img,
video {
  -webkit-touch-callout: none; /* disable long-press menu on iOS */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none; /* prevent dragging */
}

img::selection,
video::selection {
  background: transparent;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #181818;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  padding-top: 0;
}

/* Prevent horizontal rotation on mobile and tablet */
@media (max-width: 1024px) {
  html,
  body {
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  /* Prevent zoom and rotation */
  * {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }

  /* Allow text selection for input fields */
  input,
  textarea,
  [contenteditable] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
  }
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
  width: 100%;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #880808 0%, #660000 50%, #440000 100%);
  color: white;
  padding: 0;
  box-shadow: 0 4px 16px rgba(136, 8, 8, 0.3);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: auto;
  min-height: 60px;
  width: 100% !important;
}

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

.logo-img {
  height: 45px;
  width: auto;
  margin-top: 5px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.tagline {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 300;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.05rem;
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  background: transparent;
  transform: none;
}

/* Language Toggle */
.language-toggle {
  display: flex;
  gap: 10px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0;
}

.lang-btn:hover {
  background: transparent;
  transform: none;
}

.lang-btn:disabled,
.lang-btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
}

.lang-btn.active {
  background: transparent;
  color: inherit;
  border-color: transparent;
}

.lang-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lang-btn:hover img {
  transform: scale(1.05);
}

/* hide text labels for language buttons */
.lang-btn span {
  display: none;
}

/* Hero Section */
.hero {
  height: 75vh;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0;
  min-height: 75vh;
  max-height: 75vh;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Prevent any scrolling in hero section */
.hero * {
  max-width: 100%;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/background-home.jpg") center center / cover
    no-repeat;
  filter: blur(6px) brightness(0.5);
  z-index: 0;
}

/* Add grain texture and seamless gray-blue fade overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.0005) 62%,
    rgba(0, 0, 0, 0.001) 64%,
    rgba(0, 0, 0, 0.002) 66%,
    rgba(0, 0, 0, 0.004) 68%,
    rgba(0, 0, 0, 0.008) 70%,
    rgba(0, 0, 0, 0.015) 72%,
    rgba(0, 0, 0, 0.025) 74%,
    rgba(0, 0, 0, 0.04) 76%,
    rgba(0, 0, 0, 0.06) 78%,
    rgba(0, 0, 0, 0.085) 80%,
    rgba(0, 0, 0, 0.12) 82%,
    rgba(0, 0, 0, 0.16) 84%,
    rgba(0, 0, 0, 0.22) 86%,
    rgba(0, 0, 0, 0.3) 88%,
    rgba(0, 0, 0, 0.4) 90%,
    rgba(0, 0, 0, 0.52) 92%,
    rgba(0, 0, 0, 0.66) 94%,
    rgba(0, 0, 0, 0.82) 96%,
    rgba(0, 0, 0, 0.95) 98%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  /* Anti-banding and smooth blending */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-row {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-text {
  text-align: center;
  max-width: 100%;
  width: auto;
  overflow: hidden;
}

.hero-logo-left {
  height: 180px !important;
  width: 180px !important;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4)) brightness(1.1)
    contrast(1.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
  max-width: 100%;
  object-fit: contain;
}

.hero-logo-left:hover {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5)) brightness(1.2)
    contrast(1.3);
  transform: scale(1.05);
}

.hero {
  text-align: center;
}

@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-logo-left {
    height: 140px !important;
    width: 140px !important;
  }
}

.hero-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.hero-content h2 .brand-hl {
  color: #8a0303;
}

.fit-text {
  color: #ffffff;
  margin-right: 0.5rem;
}

.production-text {
  color: #8a0303;
}

.hero-tagline {
  font-size: 1.4rem;
  margin: 0 auto;
  opacity: 0.95;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
  text-align: center;
  max-width: none;
  overflow: hidden;
  word-wrap: break-word;
}

.hero-content p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
  overflow: hidden;
  word-wrap: break-word;
}

/* Ensure hero subtitle can match the title width exactly */
.hero-text p {
  max-width: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  word-wrap: break-word;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments: larger FIT Production, smaller tagline */
@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 2.8rem; /* bigger on mobile */
    line-height: 1.05;
  }

  .hero-tagline,
  .hero-content p {
    font-size: 0.95rem; /* smaller on mobile */
  }
}

/* Section Divider */
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #880808, transparent);
  margin: 0 auto;
  opacity: 1;
  width: 60%;
  max-width: 400px;
}
.services {
  padding: 80px 0;
  background: #000000;
}

/* Make the services section wider so 4 cards are roomier */
.services .container {
  max-width: 1400px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 800;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #880808, #660000);
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 2rem;
  padding-bottom: 5rem;
}

/* --- Redesigned Service Cards to match mockup --- */
.services .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  padding: 2rem;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    0 25px 60px rgba(255, 255, 255, 0.068);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Dark vignette overlay */
.services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(136, 8, 8, 0.35) 0%,
    rgba(136, 8, 8, 0.4) 40%,
    rgba(136, 8, 8, 0.45) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 1; /* default fully applied overlay */
  transition: opacity 0.55s ease-out; /* quicker, still smooth */
  will-change: opacity;
}

/* Reduce overlay via opacity on hover for smoother effect */
.services .service-card:hover::after {
  opacity: 0.4; /* approx matches previous hover intensity */
}

/* Removed bottom glass panel per request */

/* Ensure stacking context and stability */
.services .service-card {
  isolation: isolate;
}

/* Glass panel only behind text and button */
.services .service-card .service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px; /* stick to bottom */
  margin: 0 auto;
  transform: none;
  width: clamp(280px, 90%, 560px); /* rectangle, wider than tall */
  padding: 12px 18px 16px;
  background: rgba(20, 20, 20, 0.38); /* lighter by default */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px; /* rectangular corners */
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: visible;
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease;
}

/* Tweak sizes inside the glass panel */
.services .service-card .service-content h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
  word-break: break-word;
}

/* No hover changes requested */
.services .service-card:hover .service-content {
  background: rgba(20, 20, 20, 0.62); /* darken on hover */
  border-color: rgba(255, 255, 255, 0.18);
}

/* Also darken overall vignette on hover slightly */
/* No darkening of entire card on hover; only glass panel changes */

/* Icon badge - rounded square in top-left */
.services .service-card .service-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(136, 8, 8, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Icon hover effect - scale and glow */
.services .service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(136, 8, 8, 0.6),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* Title inside cards */
.services .service-card h3 {
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.services .service-card h3::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  border-radius: 2px;
  margin: 10px auto 0 auto;
  background: linear-gradient(90deg, #880808, #660000);
  box-shadow: 0 4px 12px rgba(136, 8, 8, 0.6);
}

/* Description: subtle glass panel */
.services .service-card p {
  color: #f3f4f6;
  z-index: 3;
  text-align: center;
  line-height: 1.5;
  font-size: 0.9rem;
  background: transparent;
  border: 0;
  padding: 4px 8px 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 100%;
  word-break: break-word;
  margin: 0; /* remove default paragraph margins to shrink the gap */
}

/* CTA button - bold red pill, aligned center */
.services .service-card .service-btn {
  align-self: center;
  margin-top: 0; /* no extra space above the button */
  z-index: 3;
  background: linear-gradient(90deg, #880808, #660000);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(136, 8, 8, 0.45);
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Button shine effect */
.services .service-card .service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.services .service-card .service-btn:hover::before {
  left: 100%;
}

/* Button hover effects */
.services .service-card .service-btn:hover {
  box-shadow: 0 16px 40px rgba(136, 8, 8, 0.6);
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #a00a0a, #770000);
}

/* Background images via data-service attribute */
.service-card[data-service="photography"] {
  background-image: url("../images/ourservices/card1.jpg");
}

.service-card[data-service="lighting"] {
  background-image: url("../images/ourservices/card2.jpg");
}

.service-card[data-service="pyrotechnics"] {
  background-image: url("../images/ourservices/card3.jpg");
}

.service-card[data-service="smoke"] {
  background-image: url("../images/ourservices/card4.png");
}

/* Hover effect on entire service card */
.services .service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 35px 90px rgba(0, 0, 0, 0.35);
}

/* Desktop: show 4 cards in a single row */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    column-gap: 24px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 600px) {
  .services .service-card {
    min-height: 340px; /* smaller cards on tablet */
    padding: 1.25rem; /* reduce padding */
    width: 92%; /* make the card less wide inside its grid cell */
    max-width: 520px; /* cap tablet card width */
    margin: 0 auto; /* center within column */
  }
  .services .service-card h3 {
    font-size: 1.5rem; /* smaller title on tablet */
  }
  .services .service-card .service-content {
    width: clamp(260px, 88%, 480px);
    padding: 10px 16px 14px; /* slightly tighter */
  }
  .services .service-card .service-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  /* Make About Us squares red on tablet */
  .about .stat-item {
    background: linear-gradient(135deg, #880808, #660000);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about .stat-number {
    color: #ffffff;
  }

  .about .stat-label {
    color: #f3f4f6;
  }

  .about .image-placeholder {
    background: linear-gradient(135deg, #880808, #660000);
    color: #ffffff;
  }

  .services .service-card .service-icon {
    width: 46px; /* smaller icon on tablet */
    height: 46px;
    font-size: 1.15rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Increase Contact Us logo size on tablet */
  .contact::before {
    opacity: 0.03 !important;
    background-size: 120% !important;
  }
}

/* Mobile */
@media (max-width: 599px) {
  .services .service-card {
    min-height: 340px; /* smaller cards on mobile */
    padding: 0.9rem; /* reduce padding */
    width: 92%; /* narrower than full width */
    max-width: 360px; /* cap mobile card width */
    margin: 0 auto; /* center card */
  }
  .services .service-card h3 {
    font-size: 1.2rem; /* smaller title on mobile */
  }
  .services .service-card .service-content {
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    width: clamp(220px, 90%, 340px);
    bottom: 12px;
    padding: 8px 12px 12px; /* tighter */
    border-radius: 12px;
  }
  .services .service-card .service-btn {
    padding: 9px 16px;
    font-size: 0.9rem;
  }
  .services .service-card .service-icon {
    width: 42px; /* smaller icon on mobile */
    height: 42px;
    font-size: 1.1rem;
  }
}

/* Strong override for mobile: ensure hero title/subtitle sizes apply */
@media (max-width: 600px) {
  .hero .hero-content h2 {
    font-size: 3.2rem !important;
    line-height: 1.02 !important;
  }

  .hero .hero-tagline,
  .hero .hero-content p {
    font-size: 0.9rem !important;
  }
}

.service-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 30, 58, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

/* Disable sweep highlight on hover */
.service-card:hover::before {
  left: -100%;
}

/* Generic card hover: subtle lift/scale */
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  border-color: transparent;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #880808 0%, #660000 50%, #440000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 12px 30px rgba(136, 8, 8, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #880808, #660000);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Prevent icon glow on hover */
.service-card:hover .service-icon::before {
  opacity: 0;
}

/* Keep icon steady on hover */
.service-card:hover .service-icon {
  transform: none;
  box-shadow: 0 12px 30px rgba(136, 8, 8, 0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #880808;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-btn {
  background: linear-gradient(135deg, #880808, #660000);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(136, 8, 8, 0.4);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(200, 200, 200, 0.18) 60%,
    rgba(160, 160, 160, 0.18) 100%
  );
  backdrop-filter: blur(8px);
  overflow: hidden;
  overflow-x: hidden;
  animation: fadeIn 0.3s ease;
  /* display will be set to flex via JS when opening */
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw; /* small breathing room around content */
}

.modal-content {
  background-color: #000; /* dark background for checkout */
  margin: 0; /* handled by .modal flex centering */
  padding: 0;
  border-radius: 0; /* square corners */
  width: 95%;
  max-width: 1200px;
  max-height: calc(100vh - 4vh); /* ensure inner scroll only */
  overflow-y: auto; /* scroll inside the window */
  overflow-x: visible; /* allow horizontal overflow for images */
  overscroll-behavior: none; /* allow overflow */
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
  /* Cross-browser scrollbar styling */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #880808 #f0f0f0; /* thumb color | track color */
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  color: #f1f1f1; /* ensure default text is readable on black */
}

/* Unified modal header: sticky red bar */
.modal-header {
  height: 1.5cm; /* increased height */
  background: linear-gradient(135deg, #880808, #660000);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(1rem + 1.5cm) 0 1rem; /* space for the close button on the right */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky; /* stick to top within modal-content scroll */
  top: 0;
  z-index: 101; /* above content, below close button */
}

/* Tabs under the modal header: sticky as well */
.media-tabs {
  position: sticky !important; /* override inline position if any */
  top: 1.5cm; /* align just below header on desktop */
  z-index: 100; /* under header/close, above content */
  background: #000; /* dark checkout tabs background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Dark theme overrides for checkout tabs and items (inline styles need !important) */
.media-tabs {
  border-bottom: 2px solid #222 !important;
}
.media-tab {
  background: #111 !important;
  color: #ddd !important;
  border: none !important;
}
.media-tab.active {
  background: linear-gradient(90deg, #880808, #660000) !important;
  color: #fff !important;
}

/* Ensure video card shells inside modal are not white */
.video-item {
  background: transparent !important;
}

/* Dark theme for Videos tab inside checkout modal */
#videos-section {
  background: #000 !important;
}
#fit-videos-grid {
  background: #000 !important;
}
.gallery-video {
  background: #000 !important;
}
@media (max-width: 1024px) {
  #fit-videos-grid {
    background: #000 !important;
  }
  .gallery-video {
    background: #000 !important;
  }
}

.modal-title {
  margin: 0;
  font-size: 1.5rem; /* smaller title */
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
}

@media (max-width: 600px) {
  .modal-title {
    font-size: 0.95rem;
    /* Allow wrapping so full title is readable */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
    text-align: center !important;
  }

  /* Specific rule for Photo/Video modal title */
  .modal-title {
    font-size: 0.2rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1 !important;
    padding-right: 100px !important;
    padding-left: 40px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    max-height: 30px !important;
    height: 30px !important;
  }
  /* Smaller close "X" icon on mobile */
  .modal-header {
    display: block !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 101 !important;
    background: linear-gradient(135deg, #880808, #660000) !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 5px 0.5rem 0 1rem !important;
  }
  .modal-title {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.2 !important;
    padding-right: 30px !important;
    padding-left: 20px !important;
    padding-top: 8px !important;
  }
  .close {
    font-size: 36px;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 5px !important;
    position: absolute !important;
    top: -22px !important;
    right: -14px !important;
    z-index: 102 !important;
    width: auto !important;
    height: auto !important;
    padding: 20px !important;
    line-height: 1 !important;
    transition: none !important;
  }
  /* Reduce header height and reserved space for the close button */
  .modal-header {
    height: 44px; /* fixed height to match sticky offsets */
    padding: 0 calc(1rem + 44px) 0 1rem; /* no vertical padding to keep total at 44px */
  }
  /* Shrink media tabs on mobile (override inline styles) */
  .media-tabs {
    margin-bottom: 8px !important;
    top: 44px !important; /* sit directly under the sticky header on mobile */
  }
  .media-tab {
    padding: 0.5rem 0.75rem !important;
    height: 2.2rem !important;
    font-size: 0.95rem !important;
  }
}

/* Tablet: tighten header/close and tabs without affecting desktop */
@media (min-width: 601px) and (max-width: 1024px) {
  .modal-header {
    height: 52px; /* fixed height to match sticky offsets */
    padding: 5px calc(1rem + 52px) 0 1rem; /* no vertical padding to keep total at 52px */
  }
  .close {
    width: auto;
    height: auto;
    font-size: 42px;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    top: -13px !important;
    transform: translateY(0) !important;
    padding: 20px !important;
    line-height: 1 !important;
    transition: none !important;
    margin-left: 5px !important;
  }
  .modal-title {
    font-size: 0.2rem;
    text-align: center;
    padding-right: 100px;
    padding-left: 35px;
    /* Prevent wrapping - keep on single line */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .media-tabs {
    margin-bottom: 10px !important;
    top: 52px !important; /* align under sticky header on tablet */
  }
  .media-tab {
    padding: 0.65rem 1rem !important;
    height: 2.4rem !important;
    font-size: 1.05rem !important;
  }
}

/* Optional: nicer scrollbar inside modal */
.modal-content::-webkit-scrollbar {
  width: 12px;
}
.modal-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 0; /* rectangular track */
}
.modal-content::-webkit-scrollbar-thumb {
  background: #880808; /* solid brand red */
  border-radius: 0; /* rectangular thumb */
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #880808; /* keep exact same color on hover */
}

/* Global page scrollbar: brand red, rectangular */
html {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #880808 #f0f0f0; /* thumb | track */
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 0; /* rectangular track */
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: #880808; /* solid brand red */
  border-radius: 0; /* rectangular thumb */
}
body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: #880808; /* same color on hover */
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  right: 0;
  top: -15px;
  color: white;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  z-index: 200;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: none;
  border: none;
  padding: 20px;
  line-height: 1;
  margin-left: 5px;
}

/* Gallery Styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

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

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

/* Black window style used in smoke demo to show plain black panels */
.gallery-item.black-window {
  background: #000 !important;
  box-shadow: none !important;
  display: block;
  color: #fff;
}

.gallery-item.black-window > div:first-child {
  height: 250px;
  background: #000;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Video grid items (hover like photos) */
.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: scale(1.02);
}

/* Mobile and Tablet: Stack lighting, pyrotechnics, and smoke items vertically */
@media (max-width: 1024px) {
  .lighting-gallery .gallery-item,
  .pyrotechnics-gallery .gallery-item,
  .smoke-gallery .gallery-item {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
  }

  .lighting-gallery .gallery-item img,
  .pyrotechnics-gallery .gallery-item img,
  .smoke-gallery .gallery-item img {
    width: 100% !important;
    height: 120px !important;
    margin-right: 0 !important;
    margin-bottom: 0.5rem !important;
    object-fit: contain !important;
    border-radius: 6px;
  }

  /* Specific styling for TEN MOVING HEAD image */
  .lighting-gallery .gallery-item img[alt*="TEN MOVING HEAD"],
  .lighting-gallery .gallery-item img[alt*="ten moving head"] {
    height: 80px !important;
    max-height: 80px !important;
  }

  .lighting-gallery .gallery-item > div,
  .pyrotechnics-gallery .gallery-item > div,
  .smoke-gallery .gallery-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .lighting-gallery .gallery-item p:first-child,
  .pyrotechnics-gallery .gallery-item p:first-child,
  .smoke-gallery .gallery-item p:first-child {
    font-size: 1rem !important;
    font-weight: bold !important;
    margin-bottom: 0.25rem !important;
  }

  .lighting-gallery .gallery-item p:nth-child(2),
  .pyrotechnics-gallery .gallery-item p:nth-child(2),
  .smoke-gallery .gallery-item p:nth-child(2) {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
  }

  .lighting-gallery .check-effect-btn,
  .pyrotechnics-gallery .check-effect-btn,
  .smoke-gallery .check-effect-btn {
    align-self: center !important;
    margin-top: 0 !important;
  }
}

/* Adjusted Lighting Demo Styles for Narrower Items */
.lighting-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
  padding: 0 14px;
}

/* Pyrotechnics Gallery Styles - Same as Lighting */
.pyrotechnics-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
  padding: 0 14px;
}

/* Smoke Gallery Styles - Same as Lighting */
.smoke-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
  padding: 0 14px;
}

/* Hide desktop placeholders on mobile */
@media (max-width: 1024px) {
  .desktop-placeholder {
    display: none !important;
  }
}

.gallery-item {
  display: flex;
  align-items: center;
  background: #222;
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  margin-right: 1rem;
}

.gallery-item p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* About Us Section */
.about {
  padding: 80px 0;
  background: #000000;
  color: #ffffff;
}

.about .container {
  max-width: 800px;
}

.about .section-title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
  position: relative;
  text-align: center;
}

.about .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #880808, #660000);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
  text-align: left;
}

.about-story h3,
.about-team h3 {
  color: #880808;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-story p,
.about-team p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #6b7280;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-1px) scale(1.03) !important;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 200px;
  background: #6b7280;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.image-placeholder p {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

/* Desktop-only: make About Us cards red */
@media (min-width: 1025px) {
  .about .stat-item {
    background: linear-gradient(135deg, #880808, #660000);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about .stat-number {
    color: #ffffff;
  }

  .about .stat-label {
    color: #f3f4f6;
  }

  .about .image-placeholder {
    background: linear-gradient(135deg, #880808, #660000);
    color: #ffffff;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #000000;
}

.faq-content {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: #181818;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  box-shadow: none;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #222;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(136, 8, 8, 0.15);
  border-color: #880808;
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #880808, #660000);
  color: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #aa0a0a, #770000);
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #181818;
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: 400px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #000000;
  color: #eee;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("../images/2.png");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  opacity: 0.03;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    #000000 0%,
    #000000 70%,
    transparent 100%
  );
  padding: 2rem;
  position: relative;
}

/* Show/hide descriptions based on screen size */
.contact-description-desktop {
  margin-top: 1rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-description-desktop p {
  color: #ddd;
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 100%;
  letter-spacing: -0.3px;
  word-spacing: -0.5px;
}

/* Hide mobile description on desktop */
@media (min-width: 769px) {
  .contact-description {
    display: none !important;
  }
}

/* Hide desktop description on mobile */
@media (max-width: 768px) {
  .contact-description-desktop {
    display: none !important;
  }

  .contact-description {
    display: block !important;
  }

  /* Reduce font size of description text on mobile */
  .contact-description p {
    font-size: 1.1rem !important; /* Reduced from 1.4rem */
    line-height: 1.5 !important; /* Reduced from 1.7 */
  }

  .contact-description-desktop p {
    font-size: 1.1rem !important; /* Also reduce desktop description if shown */
    line-height: 1.5 !important;
  }
}

.contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #111111 0%,
    #111111 70%,
    transparent 100%
  );
  z-index: -1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #111111;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background: #333333;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #880808;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #880808;
  margin-bottom: 0.25rem;
  font-weight: 400;
  font-size: 1.3rem;
}

.contact-description {
  margin-top: 1rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-description p {
  color: #ddd;
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 100%;
  letter-spacing: -0.3px;
  word-spacing: -0.5px;
}

/* Contact Form */
.contact-form {
  background: #111111;
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-form h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #ccc;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  opacity: 1;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  background: #333333 !important;
  color: #ffffff !important;
}

/* Force gray background for all input states */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: #333333 !important;
  color: #ffffff !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #880808;
  color: #ffffff !important;
  background: #333333 !important;
}

.submit-btn {
  background: #880808;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #660000;
}

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

.submit-btn {
  background: linear-gradient(135deg, #880808, #660000);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(136, 8, 8, 0.4);
}

.submit-btn i {
  font-size: 1.2rem;
}

/* Footer Logo */
.footer-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* FAQ Section in Footer - Right Side */
.faq-section {
  min-width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.faq-section h4 {
  color: #fff !important;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  width: 100%;
  align-self: flex-end;
  margin-right: -5px;
}

.faq-section h4::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #880808, #660000);
  border-radius: 1px;
}

.faq-section .faq-content {
  max-width: 92%;
  width: 92%;
  margin: 0 0 0 auto;
  align-self: flex-end;
}

.faq-section .faq-item {
  background: linear-gradient(135deg, #222, #1a1a1a);
  border-radius: 8px;
  margin-bottom: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
  position: relative;
}

.faq-section .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 8, 8, 0.25);
  border-color: #880808;
}

.faq-section .faq-question {
  padding: 0.6rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: linear-gradient(135deg, #880808, #660000);
  color: white;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  min-height: 35px;
}

.faq-section .faq-question span {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.faq-section .faq-question:hover {
  background: linear-gradient(135deg, #aa0a0a, #770000);
}

.faq-section .faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-section .faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.faq-section .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-section .faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #1a1a1a, #111);
}

.faq-section .faq-item.active .faq-answer {
  padding: 0.6rem 1rem;
  max-height: 400px;
}

.faq-section .faq-answer p {
  color: #ccc;
  line-height: 1.3;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

.footer {
  padding: 0.8rem 0 0.3rem 0;
  background: #000;
  color: #fff;
  border-top: 2px solid rgba(136, 8, 8, 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

/* Left side - Contact and Follow Us */
.footer-left {
  display: grid;
  grid-template-columns: 10fr 5fr 6fr;
  gap: 4rem;
  align-items: start;
}

/* Right side - FAQ */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-section.text-left {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
}

.footer-section.text-left h4 {
  text-align: left;
  width: 100%;
}

.footer-section h3,
.footer-section h4 {
  color: #880808;
}

.footer-section h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-section h4 {
  margin-bottom: 0.3rem;
}

.footer-section p {
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  white-space: nowrap;
}
.reviews-section {
  margin-top: 0.4rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-section h4 {
  color: #880808;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-align: center;
}

.stars {
  color: #ffd700;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Testimonials */
.testimonial {
  margin-bottom: 0.3rem;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #880808;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial p {
  font-style: italic;
  font-size: 0.7rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  color: #e0e0e0;
}

.testimonial span {
  font-size: 0.65rem;
  color: #880808;
  font-weight: 500;
  display: block;
  text-align: right;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.social-links a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  text-align: left;
}

.social-links a:hover {
  color: #880808;
}

.social-links a i {
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover i {
  color: #880808;
}

/* Quick Links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.quick-links li {
  margin-bottom: 0.5rem;
  text-align: left;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: left;
}

.quick-links a:hover {
  color: #880808;
}

.footer-bottom {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid #444;
  opacity: 0.7;
}

/* Mobile/Tablet Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 5px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Dropdown Menu */
/* Mobile Dropdown Menu */
.mobile-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #880808 0%, #660000 50%, #440000 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

/* Mobile menu overlay for background darkening */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.mobile-dropdown.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

.mobile-language-toggle {
  display: flex;
  justify-content: flex-start;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.mobile-lang-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0;
  margin: 0 0.5rem;
  width: auto;
  height: auto;
}

.mobile-lang-btn:hover {
  background: transparent;
  transform: none;
}
.mobile-lang-btn:hover img {
  transform: scale(1.05);
}

.mobile-lang-btn.active {
  background: transparent;
  color: inherit;
  border-color: transparent;
}

.mobile-lang-btn img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-lang-btn:disabled,
.mobile-lang-btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
}

.mobile-lang-btn:disabled:hover,
.mobile-lang-btn[aria-disabled="true"]:hover {
  background: transparent;
  transform: none;
}

.mobile-lang-btn span {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Hide desktop navigation and language toggle on tablet */
  .main-nav,
  .language-toggle {
    display: none;
  }

  /* Footer responsive for tablet */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Move FAQ to top on tablet */
  .footer-right {
    order: 1 !important;
  }

  .footer-left {
    order: 2 !important;
    grid-template-columns: 1fr 1fr 1fr !important; /* 3 columns: Logo, Quick Links, Stay in Touch */
    gap: 1.5rem;
  }

  .faq-section {
    margin-top: 0;
    align-items: center !important; /* Center FAQ on tablet */
  }

  /* Center FAQ content on tablet */
  .faq-section .faq-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Increase FAQ text size on tablet */
  .faq-section h4 {
    font-size: 1.5rem !important; /* Larger FAQ title */
  }

  .faq-section .faq-question span {
    font-size: 1.1rem !important;
  }

  .faq-section .faq-answer p {
    font-size: 1rem !important;
  }

  .faq-section .faq-question {
    font-size: 1.05rem !important;
    padding: 0.8rem 1rem !important;
  }

  /* Show hamburger menu on tablet */
  .hamburger-menu {
    display: flex;
  }

  /* Ensure header is fixed and centered */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
  }

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    min-height: 60px;
  }

  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* Add top padding to body to account for fixed header */
  body {
    padding-top: 80px;
  }

  /* Ensure all containers don't exceed viewport width */
  .container {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Prevent any element from causing horizontal scroll */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .logo-img {
    height: 80px;
    width: auto;
  }

  /* Make hamburger menu match logo size on tablet */
  .hamburger-menu {
    width: 60px;
    height: 60px;
  }

  .hamburger-line {
    height: 7px;
  }

  /* Make hero image shorter on tablet */
  .hero {
    height: 45vh;
    min-height: 45vh;
    max-height: 45vh;
  }

  /* Photo/Video service specific styling for tablet */
  .services .service-card[data-service="photography"] {
    filter: none !important; /* Remove any grayscale/black-white effects */
    background-image: url("../images/ourservices/card1.jpg") !important;
    background-size: cover;
    background-position: center 20% !important;
  }

  /* Make photo/video service card full width (stack vertically) on tablet */
  .services-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ) !important; /* 2 columns for 2x2 layout */
    gap: 1.8rem; /* Much smaller gap between cards */
    column-gap: 0rem; /* Even smaller horizontal gap */
  }

  /* Remove grayscale effect from photo/video gallery images on tablet */
  .fit-tile img.loaded {
    filter: grayscale(0%) !important; /* Remove black and white effect */
  }

  /* Make photo/video gallery images stack vertically on tablet */
  .fit-grid {
    grid-template-columns: 1fr !important; /* Single column for gallery images */
    gap: 1rem;
  }

  /* TABLET ONLY: Make modal title bigger and positioned more to the right */
  .modal-title {
    font-size: 2rem !important; /* Bigger title for tablet */
    font-weight: 700;
    text-align: center !important;
    width: 100% !important;
    position: absolute !important;
    left: 55% !important; /* Move more to the right */
    transform: translateX(-50%) !important;
    top: 50% !important; /* Center vertically */
    margin-top: -1rem !important; /* Half of font-size for perfect vertical centering */
  }

  /* Ensure modal header remains sticky while allowing proper title positioning */
  .modal-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 101 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Make ALL modals normal height on tablet */
  .modal-content {
    width: 95% !important;
    max-width: 1200px !important;
    max-height: calc(
      80vh - 4vh
    ) !important; /* Normal height for ALL services */
    height: calc(80vh - 4vh) !important; /* Force height as well */
    overflow-x: hidden !important; /* Prevent horizontal scrolling */
  }

  /* Make ONLY photo/video modal taller on tablet */
  .modal-content[data-service="photography"] {
    max-height: calc(
      90vh - 2vh
    ) !important; /* Taller height for photo/video only */
    height: calc(90vh - 2vh) !important; /* Force height as well */
  }

  /* Ensure all content fits within modal width */
  .modal-content * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Prevent horizontal overflow in gallery */
  #fit-grid-wrapper {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .fit-grid {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .fit-tile {
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .fit-tile img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Move close button higher up on tablet */
  .close {
    top: -20px !important; /* Move higher up */
    right: -14px !important;
  }

  /* Section titles slightly smaller on tablet */
  .services .section-title,
  .about .section-title,
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile specific styles */
  .header .container {
    padding: 0 15px;
    min-height: 50px;
  }

  /* Restore mobile services layout */
  .services-grid {
    grid-template-columns: 1fr !important; /* Single column for mobile */
    gap: 20px !important; /* Normal gap for mobile */
    column-gap: 20px !important;
  }

  /* Mobile gallery layout - single column and color images */
  .fit-tile img.loaded {
    filter: grayscale(
      0%
    ) !important; /* Remove black and white effect for mobile */
  }

  .fit-grid {
    grid-template-columns: 1fr !important; /* Single column for mobile - one under the other */
    gap: 1rem !important;
  }

  /* Mobile modal title - restore normal positioning and move up */
  .modal-title {
    font-size: 1.5rem !important; /* Normal mobile size */
    font-weight: 700;
    text-align: center !important;
    width: 100% !important;
    position: absolute !important; /* Use absolute positioning to move up */
    left: 50% !important; /* Center horizontally */
    transform: translateX(-50%) !important;
    top: 4% !important; /* Move title up */
    margin-top: 0 !important;
  }

  body {
    padding-top: 0;
  }

  .logo-img {
    height: 70px;
  }

  .hamburger-menu {
    width: 35px;
    height: 35px;
  }

  .hamburger-line {
    height: 4px;
  }

  .floating-social {
    right: 14px !important;
    gap: 4px !important;
  }

  .social-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
  }

  .social-btn i {
    font-size: 18px !important;
  }

  .chat-button {
    height: 42px !important;
    padding: 0 16px !important;
    gap: 6px !important;
  }

  .chat-button i {
    font-size: 18px !important;
  }

  .chat-button-text {
    font-size: 14px !important;
  }

  .mobile-nav a {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .mobile-language-toggle {
    padding: 0.8rem;
  }

  .mobile-lang-btn {
    padding: 0.4rem;
    font-size: 0.8rem;
    margin: 0 0.3rem;
  }

  .mobile-lang-btn img {
    width: 20px;
    height: 20px;
  }

  /* Additional mobile optimizations */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
  }

  /* Ensure mobile dropdown doesn't cause horizontal scroll */
  .mobile-dropdown {
    max-width: 100vw;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Prevent text overflow in mobile nav */
  .mobile-nav a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Section titles smaller on mobile */
  .services .section-title,
  .about .section-title,
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  /* About Us: shrink stats on mobile */
  .about .stats {
    gap: 0.75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .about .stat-item {
    padding: 0.8rem;
  }
  .about .stat-number {
    font-size: 1.5rem;
  }
  .about .stat-label {
    font-size: 0.85rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Reduce padding on Contact section for mobile */
  .contact {
    padding: 40px 0 !important; /* Reduced from 80px */
  }

  /* Reduce margin on Contact section title */
  .contact .section-title {
    margin-bottom: 1.5rem !important; /* Reduced from 3rem */
  }

  .contact-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important; /* Reduced from 2rem */
    padding: 1rem 1rem !important; /* Reduced from 2rem */
    margin: 0 auto !important; /* Center the content */
    max-width: 100% !important;
  }

  .contact-info {
    order: 1 !important;
  }

  .contact-form {
    order: 2 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .contact-description {
    order: 3 !important;
    margin-top: 1rem !important;
  }

  .contact-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .faq-content {
    max-width: 100%;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.5rem;
  }

  /* FAQ Footer Mobile Styles */
  .faq-footer .section-title {
    font-size: 1.8rem;
  }

  .faq-footer .faq-question {
    padding: 1.2rem;
  }

  .faq-footer .faq-question h3 {
    font-size: 1rem;
  }

  .faq-footer .faq-item.active .faq-answer {
    padding: 1.2rem;
  }

  /* FAQ Section Mobile Styles */
  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  /* FAQ first on mobile */
  .footer-right {
    order: 1 !important;
  }

  /* Footer-left second (contains logo, quick links, stay in touch) */
  .footer-left {
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
  }

  /* Reorder sections inside footer-left: Quick Links, Stay in Touch, Logo */
  .footer-left > .footer-section:first-child {
    order: 4 !important; /* Logo - move to bottom */
    text-align: center !important; /* Center logo block on mobile */
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }

  /* Center logo block elements on mobile */
  .footer-left > .footer-section:first-child * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  /* Ensure footer-first-child buttons are centered and don't wrap */
  .footer-left > .footer-section:first-child button {
    display: inline-flex !important;
    white-space: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Prevent text wrapping inside button */
  .footer-left > .footer-section:first-child button span {
    white-space: nowrap !important;
  }

  .footer-left > .footer-section:nth-child(2) {
    order: 2 !important; /* Quick Links */
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-left > .footer-section:last-child {
    order: 3 !important; /* Stay in Touch */
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Override text-left class on mobile to center everything */
  .footer-left .footer-section.text-left {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .faq-section {
    min-width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    align-items: center !important; /* Center FAQ on mobile */
  }

  /* Make FAQ content wider on mobile */
  .faq-section .faq-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .faq-section h4 {
    font-size: 1rem !important; /* Larger FAQ title on mobile */
    margin-bottom: 0.8rem;
  }

  .faq-section .faq-question {
    padding: 0.5rem 0.8rem;
    font-size: 0.6rem !important; /* Increased from 0.8rem */
    min-height: 30px;
  }

  .faq-section .faq-question span {
    font-size: 0.9rem !important; /* Increased from 0.7rem */
    line-height: 1.2;
  }

  .faq-section .faq-question i {
    font-size: 0.6rem;
  }

  .faq-section .faq-item.active .faq-answer {
    padding: 0.8rem 1rem;
    max-height: 400px;
  }

  .faq-section .faq-answer p {
    font-size: 0.95rem !important; /* Increased from 0.75rem */
    line-height: 1.3;
  }

  /* Increase footer logo size on mobile */
  .footer-logo {
    height: 80px !important; /* Increased from 60px */
  }

  /* Center Quick Links on mobile */
  .footer-section.text-left .quick-links {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .footer-section.text-left .quick-links li {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .footer-section.text-left .quick-links a {
    text-align: center !important;
    margin: 0 auto !important;
    display: inline-block !important;
  }

  /* Center Social Links on mobile */
  .footer-section.text-left .social-links {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .footer-section.text-left .social-links a {
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 auto !important;
    width: auto !important;
  }

  /* Center footer section headings on mobile */
  .footer-section.text-left h4 {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Reviews Section Mobile */
  .reviews-section {
    margin-top: 1rem;
    padding-top: 0.8rem;
  }

  .reviews-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  /* Testimonials Mobile */
  .testimonial {
    padding: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .stars {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .testimonial p {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }

  .testimonial span {
    font-size: 0.7rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .lighting-controls {
    flex-direction: column;
    align-items: center;
  }

  /* Floating social buttons mobile adjustments */
  .floating-social {
    right: 12px !important;
    gap: 4px !important;
  }

  .social-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22) !important;
  }

  .social-btn i {
    font-size: 18px !important;
  }

  .social-btn[title]:hover::after {
    right: 60px;
    font-size: 12px;
    padding: 6px 10px;
  }

  .social-btn[title]:hover::before {
    right: 50px;
  }

  /* Larger WhatsApp icon on mobile */
  .social-btn.whatsapp {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .social-btn.whatsapp i {
    font-size: 30px;
    transform: scale(1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  /* Larger Instagram icon on mobile */
  .social-btn.instagram i {
    font-size: 24px;
    transform: scale(1.2);
  }

  /* Larger Facebook icon on mobile */
  .social-btn.facebook i {
    font-size: 24px;
    transform: scale(1.2);
  }

  /* Larger phone icon on mobile */
  .social-btn.phone i {
    font-size: 20px;
  }
}

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

  .logo-img {
    height: 50px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* About Us: extra compact stats on very small screens */
  .about .stats {
    gap: 0.6rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .about .stat-item {
    padding: 0.7rem;
  }
  .about .stat-number {
    font-size: 1.35rem;
  }
  .about .stat-label {
    font-size: 0.8rem;
  }

  /* Section titles extra compact on very small screens */
  .services .section-title,
  .about .section-title,
  .section-title {
    font-size: 1.85rem;
  }

  /* Floating social buttons for very small screens */
  .floating-social {
    right: 10px !important;
    gap: 4px !important;
  }

  .social-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 17px !important;
  }

  .social-btn i {
    font-size: 17px !important;
  }

  .social-btn[title]:hover::after {
    right: 45px;
    font-size: 10px;
    padding: 4px 7px;
  }

  .social-btn[title]:hover::before {
    right: 38px;
  }

  /* Larger WhatsApp icon for very small screens */
  .social-btn.whatsapp {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .social-btn.whatsapp i {
    font-size: 28px;
    transform: scale(1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  /* Larger Instagram icon for very small screens */
  .social-btn.instagram i {
    font-size: 22px;
    transform: scale(1.15);
  }

  /* Larger Facebook icon for very small screens */
  .social-btn.facebook i {
    font-size: 22px;
    transform: scale(1.15);
  }

  /* Larger phone icon for very small screens */
  .social-btn.phone i {
    font-size: 18px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .slide-up {
  animation: slideUp 0.6s ease-out;
} */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Social Media & Contact Buttons */
.floating-social {
  position: fixed !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.social-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.social-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: white !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(136, 8, 8, 0.28) !important;
  border: 2px solid rgba(255, 255, 255, 0.18) !important;
  position: relative !important;
  z-index: 99999 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.social-btn i {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(136, 8, 8, 0.4);
}

.social-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* All buttons use consistent red color scheme */
.social-btn {
  background: linear-gradient(135deg, #880808, #660000);
}

.social-btn:hover {
  background: linear-gradient(135deg, #aa0a0a, #770000);
}

/* Pulse animation for phone button */
.social-btn.phone {
  animation: pulseGlow 3s infinite;
}

/* Ripple effect for phone button */
.social-btn.phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid rgba(136, 8, 8, 0.8);
  animation: ripple 3s infinite;
}

.social-btn.phone::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid rgba(136, 8, 8, 0.6);
  animation: ripple 3s infinite 1s;
}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(136, 8, 8, 0.3), 0 0 0 0 rgba(136, 8, 8, 0.7);
  }
  50% {
    box-shadow: 0 6px 20px rgba(136, 8, 8, 0.3), 0 0 0 8px rgba(136, 8, 8, 0);
  }
}

/* Smaller WhatsApp icon only */
.social-btn.whatsapp {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.social-btn.whatsapp i {
  font-size: 26px;
  transform: scale(1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* Larger Instagram icon only */
.social-btn.instagram i {
  font-size: 24px;
  transform: scale(1.2);
}

/* Larger Facebook icon only */
.social-btn.facebook i {
  font-size: 24px;
  transform: scale(1.2);
}

/* Desktop: make Instagram and Facebook icons match WhatsApp size */
@media (min-width: 1025px) {
  .social-btn.instagram i,
  .social-btn.facebook i {
    font-size: 24px !important; /* 2px smaller than WhatsApp on desktop */
    transform: none !important; /* remove per-button scale so they match visually */
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Ensure WhatsApp remains at 26px on desktop for consistency */
  .social-btn.whatsapp i {
    font-size: 26px !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(136, 8, 8, 0.7);
  }
  70% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(136, 8, 8, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(136, 8, 8, 0);
  }
}

/* Tooltip styles */
.social-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 1001;
  animation: fadeInTooltip 0.3s ease;
}

.social-btn[title]:hover::before {
  content: "";
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
}

@keyframes fadeInTooltip {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Final mobile override for broader device coverage */
@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2.5rem !important;
    line-height: 1.03 !important;
  }

  .hero .hero-tagline,
  .hero .hero-content p {
    font-size: 1rem !important;
  }

  /* Make floating social buttons smaller and position them lower on mobile */
  .floating-social {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    right: 12px !important;
  }

  .social-btn {
    width: 42px !important;
    height: 42px !important;
  }

  .social-btn i {
    font-size: 18px !important;
  }

  .social-btn.whatsapp {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .social-btn.whatsapp i {
    font-size: 25px !important;
    transform: scale(1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
  }

  .social-btn.instagram i {
    font-size: 20px !important;
    transform: scale(1.1) !important;
  }

  .social-btn.facebook i {
    font-size: 20px !important;
    transform: scale(1.1) !important;
  }

  .social-btn.phone i {
    font-size: 18px !important;
  }

  /* Make About Us stat cards red on mobile/tablet */
  .about .stat-item {
    background: linear-gradient(135deg, #880808, #660000) !important;
  }

  .about .stat-number {
    color: #ffffff !important;
  }

  .about .stat-label {
    color: #f3f4f6 !important;
  }

  /* Reduce hero section height on mobile */
  .hero {
    min-height: 75vh !important;
    height: 75vh !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero .container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: -50px !important;
  }

  .hero-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* --- Services background images: ensure local assets show on mobile --- */
  .service-card {
    background: transparent !important;
  }
  .services .service-card[data-service="photography"] {
    background-image: url("../images/ourservices/card1.jpg") !important;
    background-size: cover;
    background-position: center 20% !important; /* focus on camera higher */
  }
  .services .service-card[data-service="lighting"] {
    background-image: url("../images/ourservices/card2.jpg") !important;
    background-size: cover;
    background-position: center;
  }
  .services .service-card[data-service="pyrotechnics"] {
    background-image: url("../images/ourservices/card3.jpg") !important;
    background-size: cover;
    background-position: center;
  }
  .services .service-card[data-service="smoke"] {
    background-image: url("../images/ourservices/card4.png") !important;
    background-size: cover;
    background-position: center;
  }

  /* Reduce space between FIT and Production on mobile */
  .fit-text {
    margin-right: 0.2rem !important;
  }

  /* Make subtitle same width as title on mobile */
  .hero-content p,
  .hero-tagline {
    max-width: 100% !important;
    width: auto !important;
    display: inline-block !important;
  }

  /* Increase Contact Us logo opacity on mobile - extend from top to bottom */
  .contact::before {
    opacity: 0.1 !important;
    background-size: 250% !important; /* Make logo bigger from top to bottom */
    top: -70% !important; /* Start higher */
    height: 230% !important; /* Extend more vertically */
    width: 230% !important; /* Extend more horizontally */
    left: -65% !important; /* Center better */
  }
}

/* Tablet too: enforce local backgrounds and transparent card base */
@media (max-width: 1024px) {
  .service-card {
    background: transparent !important;
  }
  .services .service-card[data-service="photography"] {
    background-image: url("../images/ourservices/card1.jpg") !important;
    background-size: cover;
    background-position: center 20% !important; /* focus on camera higher */
  }
  .services .service-card[data-service="lighting"] {
    background-image: url("../images/ourservices/card2.jpg") !important;
    background-size: cover;
    background-position: center;
  }
  .services .service-card[data-service="pyrotechnics"] {
    background-image: url("../images/ourservices/card3.jpg") !important;
    background-size: cover;
    background-position: center;
  }
  .services .service-card[data-service="smoke"] {
    background-image: url("../images/ourservices/card4.png") !important;
    background-size: cover;
    background-position: center;
  }
  /* About Us: shrink stat cards on tablet */
  .about .stats {
    gap: 0.75rem;
  }
  .about .stat-item {
    padding: 0.85rem;
  }
  .about .stat-number {
    font-size: 1.6rem;
  }
  .about .stat-label {
    font-size: 0.85rem;
  }
}

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */

.live-chat-widget {
  position: fixed !important;
  bottom: 30px !important;
  right: 20px !important;
  z-index: 999999 !important;
  font-family: "Montserrat", sans-serif;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Chat Button */
.chat-button {
  width: auto !important;
  height: 32px !important;
  padding: 0 12px !important;
  background: linear-gradient(135deg, #880808, #660000) !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  cursor: pointer !important;
  box-shadow: 0 3px 12px rgba(136, 8, 8, 0.35) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 9999 !important;
  visibility: visible !important;
  opacity: 1 !important;
  border: none !important;
  color: white !important;
}

.chat-button:hover {
  transform: translateY(-3px) !important;
  /* box-shadow: 0 8px 25px rgba(136, 8, 8, 0.5) !important; */
  background: linear-gradient(135deg, #aa0a0a, #770000) !important;
}

.chat-button:active {
  transform: translateY(-1px) !important;
}

.chat-button i {
  color: white !important;
  font-size: 15px !important;
  pointer-events: none !important;
  display: block !important;
}

.chat-button-text {
  color: white !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0.3px !important;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 12px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  pointer-events: none;
}

.chat-badge.active {
  display: flex;
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 50px;
  right: 0;
  min-width: 320px !important;
  max-width: 320px !important;
  width: 320px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  height: 420px !important;
  background: #1a1a1a !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6) !important;
  display: none !important;
  flex-direction: column !important;
  overflow: visible !important;
  z-index: 999999 !important;
  transition: all 0.3s ease !important;
  visibility: hidden !important;
  opacity: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.chat-window.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: slideUp 0.3s ease;
  overflow: hidden !important;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat Header */
.chat-header {
  background: #000000 !important;
  color: white !important;
  padding-left: 15px;
  padding-right: 15px;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-height: 60px !important;
  flex-shrink: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
}

.chat-header-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white !important;
}

.chat-status {
  margin: 4px 0 0 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.chat-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
  position: absolute;
  top: 10px;
  right: 12px;
  width: auto;
  height: auto;
  display: block;
}

.chat-close:hover {
  transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  padding: 16px !important;
  background: #1a1a1a !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 300px !important;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.chat-message {
  display: flex;
  gap: 10px;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #880808;
  color: white;
  font-size: 14px;
}

.bot-message .message-avatar {
  background: #880808;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-avatar {
  background: #333;
  color: white;
}

.message-content {
  flex: 0 1 auto;
  background: #2a2a2a;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: none;
  max-width: 82%;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-message .message-content {
  background: #880808;
  color: white;
  border: none;
}

.message-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  max-width: 100%;
  color: #e0e0e0;
}

.user-message .message-content p {
  color: white;
}

/* Message Attachments */
.message-attachment {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image-attachment {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.image-attachment a {
  display: block;
  width: 100%;
  max-width: 100%;
}

.image-attachment img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

.attachment-filename {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-message .attachment-filename {
  color: rgba(255, 255, 255, 0.8);
}

.file-attachment {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.file-attachment a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.file-attachment a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

/* Typing Indicator */
.typing-indicator {
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #888;
  border-radius: 50%;
  animation: typingAnimation 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Chat Input */
.chat-input-container {
  padding: 12px 14px !important;
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  min-height: 58px !important;
  align-items: center !important;
}

.chat-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible !important;
  order: 1 !important;
}

.chat-emoji {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #bbb !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
  order: 2 !important;
}

.chat-attach {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #bbb !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
  order: 3 !important;
  box-shadow: none !important;
}

.chat-emoji:hover,
.chat-attach:hover {
  background: #2a2a2a !important;
  color: #fff !important;
  transform: scale(1.15) !important;
}

.chat-emoji i,
.chat-attach i {
  font-size: 16px !important;
  pointer-events: none !important;
  color: inherit !important;
  display: block !important;
}

.chat-input {
  flex: 1;
  padding: 9px 46px 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: all 0.2s ease;
  background: #2a2a2a;
  color: white;
  height: 36px;
  line-height: 1.4;
}

.chat-input:focus {
  border-color: #880808;
  box-shadow: 0 0 0 2px rgba(136, 8, 8, 0.2);
  background: #333;
}

.chat-input::placeholder {
  color: #888;
}

.chat-send {
  position: absolute !important;
  right: 7px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #880808 !important;
  border: none !important;
  cursor: pointer !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  z-index: 100 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 0 !important;
}

.chat-send.show {
  display: flex !important;
  animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.chat-send:hover {
  transform: scale(1.1) !important;
  color: #aa0a0a !important;
}

.chat-send:active {
  transform: scale(0.9) !important;
}

.chat-send i {
  font-size: 15px !important;
  color: #880808 !important;
}

.chat-send:hover i {
  color: #aa0a0a !important;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Emoji Picker */
.emoji-picker {
  position: absolute;
  bottom: 50px;
  right: 10px;
  background: #2a2a2a;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
  width: calc(100% - 20px);
  max-width: 300px;
  max-height: 240px;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

.emoji-grid::-webkit-scrollbar {
  width: 5px;
}

.emoji-grid::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.emoji-item {
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: center;
  user-select: none;
}

.emoji-item:hover {
  background: #3a3a3a;
  transform: scale(1.2);
}

/* Quick Replies */
.chat-quick-replies {
  padding: 12px 18px !important;
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  min-height: 55px !important;
}

.quick-reply-btn {
  padding: 8px 14px;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #e0e0e0;
  white-space: nowrap;
}

.quick-reply-btn:hover {
  background: #880808;
  color: white;
  border-color: #880808;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(136, 8, 8, 0.3);
}

.quick-reply-btn:active {
  transform: translateY(0);
}

/* Mobile Responsive for Chat Window */
@media (max-width: 768px) {
  .live-chat-widget {
    bottom: 15px !important;
    right: 20px !important;
  }

  .chat-button {
    height: 42px !important;
    padding: 0 16px !important;
    gap: 6px !important;
  }

  .chat-button-text {
    font-size: 14px !important;
  }

  .chat-button i {
    font-size: 18px !important;
  }

  .chat-window {
    width: calc(100vw - 40px) !important;
    max-width: 550px !important;
    min-width: auto !important;
    height: 60vh !important;
    max-height: 600px !important;
    right: 0 !important;
    bottom: 50px !important;
  }
}

@media (max-width: 480px) {
  .live-chat-widget {
    bottom: 10px !important;
    right: 15px !important;
  }

  .chat-button {
    height: 40px !important;
    padding: 0 14px !important;
    gap: 5px !important;
  }

  .chat-button-text {
    font-size: 13px !important;
  }

  .chat-button i {
    font-size: 17px !important;
  }

  .chat-window {
    width: calc(100vw - 30px) !important;
    height: 65vh !important;
    max-height: 550px !important;
    bottom: 45px !important;
  }

  .chat-header {
    padding: 18px 20px !important;
  }

  .chat-header-info h3 {
    font-size: 17px !important;
  }

  .chat-status {
    font-size: 12px !important;
  }

  .chat-messages {
    padding: 20px !important;
    gap: 12px !important;
  }

  .chat-input-container {
    padding: 12px 14px !important;
  }

  .chat-attach,
  .chat-emoji {
    width: 28px !important;
    height: 28px !important;
  }

  .chat-attach i,
  .chat-emoji i {
    font-size: 14px !important;
  }

  .chat-input {
    padding: 10px 42px 10px 14px !important;
    font-size: 14px !important;
  }

  .chat-send {
    right: 8px !important;
  }

  .chat-send i {
    font-size: 18px !important;
  }

  .chat-send:hover {
    transform: scale(1.15) !important;
  }

  .emoji-picker {
    bottom: 60px !important;
    right: 40px !important;
    max-width: 220px !important;
  }

  .emoji-grid {
    grid-template-columns: repeat(6, 1fr) !important;
  }

  .emoji-item {
    font-size: 20px !important;
    padding: 4px !important;
  }

  .message-content {
    padding: 12px 16px !important;
  }

  .message-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .message-attachment {
    max-width: 100% !important;
  }

  .image-attachment img {
    max-width: 100% !important;
    max-height: 250px !important;
  }

  .attachment-filename {
    font-size: 0.8rem !important;
  }

  .file-attachment {
    padding: 10px !important;
  }

  .quick-reply-btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .message-avatar {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 599px) {
  .services .service-card[data-service] {
    background-size: cover !important;
    background-position: center center !important;
    filter: saturate(1.15) brightness(0.92);
    position: relative;
  }
  .services .service-card[data-service]::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(34, 34, 34, 0.09) 38%,
      rgba(0, 0, 0, 0.36) 98%
    );
    pointer-events: none;
    border-radius: inherit;
  }
  .services .service-card > * {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1024px) and (min-width: 600px) {
  .services .service-card[data-service] {
    background-size: cover !important;
    background-position: center center !important;
    filter: saturate(1.1) brightness(0.96);
    position: relative;
  }
  .services .service-card[data-service]::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(34, 34, 34, 0.07) 32%,
      rgba(0, 0, 0, 0.28) 96%
    );
    pointer-events: none;
    border-radius: inherit;
  }
  .services .service-card > * {
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 390px) and (max-width: 844px) and (min-height: 390px) and (max-height: 844px) and (orientation: landscape) {
  body {
    padding-top: 52px;
  }

  .header {
    min-height: 52px;
    height: 52px;
    padding: 6px 16px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    overflow: visible;
  }

  .header .container {
    min-height: 52px;
    padding: 0;
    gap: 0.75rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .header .nav-brand {
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 50px;
    width: auto;
    margin-top: 0;
    padding-bottom: 10px;
  }

  .tagline {
    font-size: 0.65rem;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .main-nav a {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
  }

  .language-toggle {
    gap: 6px;
  }

  .lang-btn img {
    width: 22px;
    height: 22px;
  }

  .hamburger-menu {
    width: 32px;
    height: 32px;
    gap: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .hamburger-line {
    height: 4px;
  }

  .mobile-dropdown {
    padding: 6px 16px;
    max-height: 0;
  }

  .mobile-dropdown.active {
    max-height: 220px;
  }

  .mobile-nav ul {
    gap: 0.35rem;
  }

  .mobile-nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
  }

  .mobile-language-toggle {
    padding: 0.45rem 0.75rem;
    gap: 0.5rem;
  }

  .mobile-lang-btn {
    padding: 0.25rem;
  }

  .hero {
    min-height: calc(82vh - 50px) !important;
    height: calc(82vh - 50px) !important;
    max-height: none !important;
  }

  .hero::before {
    min-height: calc(82vh - 50px) !important;
  }

  .hero .hero-background,
  .hero .hero-content {
    min-height: calc(82vh - 50px) !important;
  }

  .hero-logo-left {
    height: 150px !important;
    width: 150px !important;
  }

  .hero-content h2 {
    font-size: 3rem !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.55) !important;
  }

  .hero-tagline {
    font-size: 1.3rem !important;
    letter-spacing: 0.4px !important;
  }

  .hero-content p {
    font-size: 1.25rem !important;
    max-width: 600px !important;
  }

  .chat-window {
    min-width: 255px !important;
    max-width: 255px !important;
    width: 230px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    height: 300px !important;
    bottom: 35px !important;
    border-radius: 12px !important;
    left: -135px !important;
  }

  .chat-header {
    min-height: 44px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .chat-header-info h3 {
    font-size: 13px !important;
  }

  .chat-status {
    font-size: 10px !important;
    gap: 3px !important;
  }

  .chat-close {
    font-size: 20px !important;
    top: 6px !important;
    right: 8px !important;
  }

  .chat-messages {
    padding: 10px !important;
    gap: 6px !important;
    min-height: 190px !important;
  }

  .message-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 11px !important;
  }

  .message-content {
    padding: 7px 10px !important;
    border-radius: 9px !important;
  }

  .message-content p {
    font-size: 11px !important;
  }

  .message-attachment {
    max-width: 100% !important;
  }

  .image-attachment img {
    max-width: 100% !important;
    max-height: 200px !important;
  }

  .attachment-filename {
    font-size: 0.75rem !important;
  }

  .file-attachment {
    padding: 8px !important;
    font-size: 0.75rem !important;
  }

  .chat-input-container {
    padding: 8px 10px !important;
    min-height: 44px !important;
    gap: 5px !important;
  }

  .chat-emoji,
  .chat-attach {
    width: 24px !important;
    height: 24px !important;
  }

  .chat-emoji i,
  .chat-attach i {
    font-size: 13px !important;
  }

  .chat-input {
    padding: 7px 34px 7px 10px !important;
    font-size: 11px !important;
    height: 28px !important;
    border-radius: 14px !important;
  }
}

/* Reduce header logo and hamburger size for phone-like landscape widths around 932x430
   Use a broader range to account for devicePixelRatio and browser reporting. */
@media only screen and (min-width: 900px) and (max-width: 980px) and (min-height: 420px) and (max-height: 460px) and (orientation: landscape) {
  .logo-img {
    height: 45px !important;
    margin-top: 5px !important;
    width: auto !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
  }

  .hamburger-line {
    width: 94% !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    display: block !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  /* Extend background image from top to 80% of screen height */
  .hero {
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
  }

  .hero::after {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 80vh !important;
    position: fixed !important;
    z-index: -1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reduce logo and text size */
  .hero-logo-left {
    height: 120px !important;
    width: 120px !important;
  }

  .hero-content h2 {
    font-size: 2.8rem !important;
  }

  .hero-tagline,
  .hero-content p {
    font-size: 1.1rem !important;
  }

  /* Move chat lower and right */
  .live-chat-widget {
    bottom: 1px !important;
    right: 1px !important;
  }

  .chat-window {
    bottom: 1px !important;
    right: 1px !important;
  }

  /* Reduce Instagram and Facebook icon size (only the inner white icon) */
  .social-btn.instagram i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }

  .social-btn.facebook i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }
}

@media only screen and (min-width: 875px) and (max-width: 890px) and (min-height: 340px) and (max-height: 350px) and (orientation: landscape) {
  .logo-img {
    height: 45px !important;
    margin-top: 5px !important;
    width: auto !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
  }

  .hamburger-line {
    width: 94% !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    display: block !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  /* Extend background image from top to 80% of screen height */
  .hero {
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
  }

  .hero::after {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 80vh !important;
    position: fixed !important;
    z-index: -1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reduce logo and text size */
  .hero-logo-left {
    height: 120px !important;
    width: 120px !important;
  }

  .hero-content h2 {
    font-size: 2.8rem !important;
  }

  .hero-tagline,
  .hero-content p {
    font-size: 1.1rem !important;
  }

  /* Move chat lower and right */
  .live-chat-widget {
    bottom: 1px !important;
    right: 1px !important;
  }

  .chat-window {
    bottom: 1px !important;
    right: 1px !important;
  }

  /* Reduce Instagram and Facebook icon size (only the inner white icon) */
  .social-btn.instagram i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }

  .social-btn.facebook i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }
}

@media only screen and (min-width: 910px) and (max-width: 920px) and (min-height: 408px) and (max-height: 418px) and (orientation: landscape) {
  .logo-img {
    height: 45px !important;
    margin-top: 5px !important;
    width: auto !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
  }

  .hamburger-line {
    width: 94% !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    display: block !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  /* Extend background image from top to 80% of screen height */
  .hero {
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
  }

  .hero::after {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 80vh !important;
    position: fixed !important;
    z-index: -1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reduce logo and text size */
  .hero-logo-left {
    height: 120px !important;
    width: 120px !important;
  }

  .hero-content h2 {
    font-size: 2.8rem !important;
  }

  .hero-tagline,
  .hero-content p {
    font-size: 1.1rem !important;
  }

  /* Move chat lower and right */
  .live-chat-widget {
    bottom: 1px !important;
    right: 1px !important;
  }

  .chat-window {
    bottom: 1px !important;
    right: 1px !important;
  }

  /* Reduce Instagram and Facebook icon size (only the inner white icon) */
  .social-btn.instagram i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }

  .social-btn.facebook i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }
}

@media only screen and (min-width: 840px) and (max-width: 850px) and (min-height: 385px) and (max-height: 395px) and (orientation: landscape) {
  .logo-img {
    height: 45px !important;
    margin-top: 5px !important;
    width: auto !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
  }

  .hamburger-line {
    width: 94% !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    display: block !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  /* Extend background image from top to 80% of screen height */
  .hero {
    overflow: visible !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
  }

  .hero::after {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: 80vh !important;
    position: fixed !important;
    z-index: -1 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reduce logo and text size */
  .hero-logo-left {
    height: 120px !important;
    width: 120px !important;
  }

  .hero-content h2 {
    font-size: 2.8rem !important;
  }

  .hero-tagline,
  .hero-content p {
    font-size: 1.1rem !important;
  }

  /* Move chat lower and right */
  .live-chat-widget {
    bottom: 1px !important;
    right: 1px !important;
  }

  .chat-window {
    bottom: 1px !important;
    right: 1px !important;
  }

  /* Reduce Instagram and Facebook icon size (only the inner white icon) */
  .social-btn.instagram i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }

  .social-btn.facebook i {
    font-size: 22px !important;
    transform: scale(1.05) !important;
  }
}


