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

:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #a0a0a0;
  --dark: #111111;
  --border: rgba(255,255,255,0.1);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

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

/* ── Navbar ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #e0e0e0;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

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

/* ── Sections ── */
section {
  border-top: 1px solid var(--border);
}

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

/* ── Hero ── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  border-top: none;
}

.hero h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero p {
  color: var(--gray);
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 40px;
}

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

/* ── Stats ── */
.stats {
  padding: 80px 60px;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── About ── */
.about {
  padding: 80px 60px;
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

/* ── Social ── */
.social {
  padding: 70px 60px;
}

.social-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.social h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s;
}

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

/* ── Slideshow ── */
.slideshow-section {
  padding-bottom: 0;
  background: #000000;
}

.slideshow-header {
  text-align: center;
  padding: 60px 24px 40px;
}

.slideshow-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e5e5eb;
}

.slideshow-header p {
  color: var(--gray, #666);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* MAIN SLIDESHOW CONTAINER - FIXED FOR RESPONSIVENESS */
.slideshow {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

/* SLIDE - FULL COVERAGE, NO WHITE SPACES */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-color: #000000;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* CRITICAL FIX: Images fill entire frame perfectly */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Alternative if using background-image */
.slide[style*="background-image"] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* OVERLAY - Keeps text readable if needed */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* DOTS NAVIGATION */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 20;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slide-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 10px;
}

.slide-dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

/* OPTIONAL: Navigation Arrows */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: white;
  font-size: 28px;
  font-weight: 300;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.slide-nav:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.05);
}

.slide-nav.prev {
  left: 20px;
}

.slide-nav.next {
  right: 20px;
}

/* ANIMATION FOR ACTIVE SLIDE */
.slide.active .slide-img {
  animation: subtleZoom 8s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* ── Companies ── */
.companies {
  padding: 80px 60px;
}

.companies-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.companies-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s;
}

.company-name:hover {
  color: var(--white);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  text-align: center;
}

footer p {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Page header (inner pages) ── */
.page-header {
  padding: 140px 60px 60px;
  text-align: center;
  border-top: none;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ── Portfolio ── */
/* ===== PORTFOLIO PAGE STYLES ===== */

/* Category Filter Section */
.portfolio-categories {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.category-btn {
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.category-btn:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
  transform: translateY(-2px);
}

.category-btn.active {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: white;
}

/* Portfolio Grid */
.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #f0f0f0;
  height: 250px;
}

.portfolio-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.portfolio-img::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-img:hover::after {
  opacity: 1;
}

.portfolio-meta {
  padding: 20px;
}

.portfolio-meta h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #ff6b6b;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Filter Animation */
.portfolio-item {
  transition: all 0.4s ease;
}

.portfolio-item.hide {
  display: none;
}

.portfolio-item.show {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Video Samples Section */
.video-samples-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 40px 24px 60px;
  padding: 60px 40px;
  border-radius: 32px;
  text-align: center;
}

.video-samples-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.video-samples-header p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

.video-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.video-btn span {
  font-size: 24px;
}

.facebook-reel {
  background: #1877f2;
  color: white;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.facebook-reel:hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.instagram-reel {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
  color: white;
  box-shadow: 0 5px 15px rgba(214, 41, 118, 0.3);
}

.instagram-reel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 41, 118, 0.4);
}

.tiktok-reel {
  background: #ff0000;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.tiktok-reel:hover {
  background: #ff0050;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.video-note {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 20px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  color: white;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  padding: 12px 24px;
  background: rgba(0,0,0,0.6);
  border-radius: 40px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.close-lightbox:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* ── Booking ── */
.booking-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: white;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
  margin-bottom: 32px;
}

.whatsapp-btn:hover {
  background: #1fb855;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  color: var(--gray);
  font-size: 12px;
}

.form-section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 28px 0 16px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: rgba(255,255,255,0.4);
}

input::placeholder,
textarea::placeholder {
  color: var(--gray);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.service-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 10px;
  font-family: inherit;
}

.service-btn.selected {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.counter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  margin-bottom: 10px;
}

.counter-row span {
  color: var(--gray);
  font-size: 13px;
  flex: 1;
}

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

.counter-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s;
  font-family: inherit;
}

.counter-btn:hover {
  border-color: var(--white);
}

.counter-val {
  width: 20px;
  text-align: center;
  font-size: 15px;
}

.hidden {
  display: none;
}

.submit-btn {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  font-family: inherit;
  transition: background 0.3s;
}

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

.success-screen {
  text-align: center;
  padding: 80px 24px;
}

.success-screen .check {
  font-size: 56px;
  margin-bottom: 24px;
}

.success-screen h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-screen p {
  color: var(--gray);
  max-width: 400px;
  margin: 0 auto 32px;
}

/* ── Reviews ── */
.reviews-grid {
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(255,255,255,0.3);
}

.stars {
  color: #f5c518;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 14px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
}

.reviewer-event {
  color: var(--gray);
  font-size: 12px;
  margin-top: 4px;
}

.review-cta {
  max-width: 700px;
  margin: 20px auto 80px;
  border: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}

.review-cta h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.review-cta p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 24px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .slideshow {
    aspect-ratio: 16 / 9;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
  /* Navbar */
  nav {
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
  }
  
  .nav-links {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 11px;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 260px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    text-align: center;
  }
  
  /* Stats */
  .stats {
    padding: 50px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  /* Sections padding */
  .about,
  .social,
  .companies {
    padding: 50px 24px;
  }
  
  /* About */
  .about h2 {
    font-size: 28px;
  }
  
  .about p {
    font-size: 16px;
    padding: 0 16px;
  }
  
  /* Social */
  .social h2 {
    font-size: 24px;
  }
  
  .social-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .social-links a {
    text-align: center;
  }
  
  /* Companies */
  .companies-logos {
    flex-direction: column;
    gap: 28px;
  }
  
  .company-name {
    font-size: 16px;
  }
  
  /* Slideshow */
  .slideshow-header {
    padding: 40px 20px 30px;
  }
  
  .slideshow-header h2 {
    font-size: 22px;
  }
  
  .slide-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .slide-nav.prev {
    left: 10px;
  }
  
  .slide-nav.next {
    right: 10px;
  }
  
  /* Portfolio */
  .portfolio-categories {
    gap: 12px;
    padding: 0 16px;
  }
  
  .category-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .portfolio-images {
    height: 200px;
  }
  
  .video-samples-section {
    margin: 40px 16px;
    padding: 40px 20px;
  }
  
  .video-samples-header h2 {
    font-size: 24px;
  }
  
  .video-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .video-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .close-lightbox {
    top: 20px;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-image {
    max-width: 95%;
    max-height: 80%;
  }
  
  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
    gap: 20px;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .review-cta {
    margin: 20px 20px 60px;
    padding: 32px 20px;
  }
  
  .review-cta h2 {
    font-size: 22px;
  }
  
  /* Footer */
  footer {
    padding: 24px 20px;
  }
  
  footer p {
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  
  /* Page header */
  .page-header {
    padding: 120px 24px 40px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  /* Booking */
  .booking-wrap {
    padding: 0 20px 60px;
  }
  
  .counter-row {
    flex-wrap: wrap;
  }
  
  .whatsapp-btn {
    padding: 14px;
    font-size: 12px;
  }
  
  /* Success screen */
  .success-screen h2 {
    font-size: 24px;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 11px;
  }
  
  /* Slideshow */
  .slide-dots {
    bottom: 16px;
    gap: 8px;
  }
  
  .slide-dot {
    width: 8px;
    height: 8px;
  }
  
  .slide-dot.active {
    width: 20px;
  }
  
  /* Portfolio */
  .portfolio-categories {
    gap: 10px;
  }
  
  .category-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  /* Booking */
  .booking-wrap {
    padding: 0 16px 50px;
  }
  
  .counter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .service-btn {
    font-size: 11px;
    padding: 12px;
  }
  
  .submit-btn {
    padding: 14px;
    font-size: 11px;
  }
  
  /* Reviews */
  .review-text {
    font-size: 13px;
  }
  
  .reviewer-name {
    font-size: 13px;
  }
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .slideshow {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Fix for very large screens (optional) */
@media (min-width: 1920px) {
  .slideshow {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .stats-grid,
  .about-inner,
  .social-inner,
  .companies-inner {
    max-width: 1200px;
  }
}

/* Fix for landscape mode on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 24px 60px;
  }
  
  .slideshow {
    aspect-ratio: 16 / 9;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}