/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #3cb371;
  --primary-dark: #2a9d5f;
  --dark: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #222;
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.brand-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.brand:hover { color: var(--primary-color); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-link:hover { color: var(--primary-color); }

.nav-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

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

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60,179,113,0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(60,179,113,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(60,179,113,0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title-top {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.hero-title-main {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-slide.horizontal {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.vertical {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.vertical::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
}

.hero-slide.vertical::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: inherit;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-text {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* ===== SHOWREEL ===== */
.showreel-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.showreel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.showreel-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--primary-dark);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.service-description {
  color: var(--medium-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== FEATURED WORK ===== */
.featured-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.video-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.cta-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(60,179,113,0.3);
}

/* ===== CLIENTS ===== */
.clients-section {
  padding: 5rem 0;
  background: var(--white);
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.client-logo {
  transition: var(--transition);
  opacity: 0.7;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.client-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

.client-logo:hover img { filter: grayscale(0%); }

/* ===== CONTACT ===== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
}

.contact-section .section-title { color: var(--white); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { color: var(--white); }

.contact-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

.contact-details { margin-top: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.contact-detail svg { color: var(--primary-color); flex-shrink: 0; }

.contact-detail a {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-detail a:hover { color: var(--white); }

.contact-form-wrapper {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255,255,255,0.08);
}

.btn-submit {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60,179,113,0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.footer-brand p { color: rgba(255,255,255,0.6); }

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  width: 45px; height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ===== PORTFOLIO PAGES ===== */
.portfolio-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
  text-align: center;
}

.portfolio-header .container { text-align: center; }

.portfolio-header .section-title {
  position: static;
  transform: none;
  display: block;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.portfolio-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
}

.portfolio-section { padding: 4rem 0; }
.portfolio-section:nth-child(even) { background: var(--light-gray); }

.portfolio-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-video-item {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.portfolio-video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-video-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== PORTFOLIO HUB ===== */
.portfolio-hub {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.portfolio-hub-title {
  text-align: center;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-hub-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-card {
  position: relative;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.video-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.photo-card { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

.card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.portfolio-card:hover .card-overlay { background: rgba(0,0,0,0.5); }

.card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
}

.card-icon { margin-bottom: 1.5rem; opacity: 0.9; }

.card-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.card-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-card:hover .card-cta {
  background: white;
  color: #0a0a0a;
}

/* ===== MASONRY PHOTO GALLERY ===== */
.masonry-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  columns: 3 300px;
  column-gap: 16px;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 8px;
}

.masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.masonry-item:hover::after {
  background: rgba(0,0,0,0.12);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

/* Scroll fade-in for masonry items */
.fade-in-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Photo CTA */
.photo-cta {
  padding: 5rem 0;
  background: var(--light-gray);
  text-align: center;
}

.photo-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.photo-cta p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 28px;
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.2s ease;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.25s ease;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  z-index: 10001;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .masonry-grid {
    columns: 2 240px;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: var(--dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-links.active { right: 0; }

  .mobile-menu-toggle { display: flex; }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .client-logos { gap: 2rem; }
  .client-logo img { height: 60px; }

  .portfolio-cards {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .portfolio-card { min-height: 400px; }
  .card-title { font-size: 2rem; }

  .lightbox-nav { width: 50px; height: 50px; font-size: 28px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox img { max-width: 95vw; max-height: 85vh; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-container { padding: 1rem; }
  .brand { font-size: 1.2rem; }
  .hero { padding: 5rem 1rem 3rem; }
  .section-title { font-size: 2rem; margin-bottom: 2rem; }

  .showreel-section,
  .services-section,
  .featured-section,
  .clients-section,
  .contact-section { padding: 3rem 0; }

  .service-card { padding: 2rem 1.5rem; }
  .contact-form-wrapper { padding: 1.5rem; }

  .masonry-grid {
    columns: 1;
    padding: 2rem 1rem;
  }

  .lightbox-nav { display: none; }
  .lightbox img { max-width: 98vw; max-height: 80vh; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ===== CAL.COM BOOK BUTTON ===== */
.cal-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.cal-book-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60, 179, 113, 0.3);
}
