/* ============================================
   THE FILMERS MEDIA - Premium Cinematic Styles
   ============================================ */

/* Antipasto-inspired font (using Bebas Neue + Inter as fallback, similar feel) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');
/* @import url("https://fonts.cdnfonts.com/css/antipasto"); */
/* You can self-host Antipasto by downloading from 1001fonts.com and using @font-face below */
@font-face {
  font-family: 'Antipasto';
  src: local('Antipasto'), local('Bebas Neue');
  font-display: swap;
}


/* inquiry form  */

.fm-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #000;
}

.fm-form-container {
  background: #111;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #c9ff2e;
  box-shadow: 0 0 30px rgba(201,255,46,0.15);
}

.fm-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #c9ff2e;
}

.fm-group {
  margin-bottom: 18px;
}

.fm-form-container label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #ccc;
}

.fm-form-container input,
.fm-form-container textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.fm-form-container input:focus,
.fm-form-container textarea:focus {
  border-color: #c9ff2e;
  box-shadow: 0 0 8px rgba(201,255,46,0.5);
}

.fm-form-container textarea {
  height: 120px;
  resize: none;
}

.fm-form-container button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #c9ff2e;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.fm-form-container button:hover {
  background: #b6e62a;
  box-shadow: 0 0 15px #c9ff2e;
}




.tfm-whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37,211,102,.5);
    animation: tfmPulse 2s infinite;
    transition: .3s;
}

.tfm-whatsapp i{
    color: #fff;
    font-size: 36px;
}

.tfm-whatsapp:hover{
    transform: scale(1.1);
    background: #1ebe5d;
}

@keyframes tfmPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
.nav-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:120px !important;
    height:auto !important;
    max-width:none !important;
}

.nav-logo img{
    max-height:110px;
}

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #c9ff2e;   /* neon yellow-green */
  --accent-2: #c9ff2e;
  --border: rgba(201, 255, 46, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Antipasto', sans-serif;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* body {


    font-family:'Antipasto', sans-serif;
    font-weight:300;

  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: 'Antipasto', 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
} */


body {
  font-family: 'Antipasto', sans-serif;
  font-weight: 400;

  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: 'Antipasto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 100px;
  height: 100px;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
}
.preloader-bar {
  position: absolute;
  bottom: 40%;
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: loadbar 1.2s ease-in-out infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


.footer-contact h4{
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#ddd;
    margin-bottom:15px;
    line-height:1.7;
}

.footer-contact i{
    color:#d2db18; /* Logo color */
    font-size:18px;
    min-width:20px;
    margin-top:4px;
}

.footer-contact p:hover i{
    transform:scale(1.15);
    transition:0.3s ease;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.6);
  /* backdrop-filter: blur(16px); */
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s ease, background 0.3s ease;
}


.navbar.scrolled {
  padding: 12px 5%;
  background: rgba(10, 10, 10, 0.92);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo svg, .nav-logo img {
  width: 42px;
  height: 42px;
}
.nav-logo-text {
  font-family: 'Antipasto', 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #000 !important;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  transition: transform 0.3s, background 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* TOGGLE BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1100; /* menu se upar rahe */
}

/* LINES */
.nav-toggle span {
  display: block;
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  background: #c9ff2e; /* same neon color */
  transition: all 0.35s ease;
  border-radius: 2px;
}

/* POSITION */
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }

/* OPEN (X ICON) */
.nav-toggle.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.nav-toggle.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* HOVER EFFECT */
.nav-toggle:hover span {
  box-shadow: 0 0 8px rgba(201,255,46,0.8);
}

/* MOBILE SHOW */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* .nav-menu {
  position: fixed;
  top: 70px; 
  left: 0;
  width: 100%;
  background: #0a0a0a;
  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 1000;
}

.nav-menu.active {
  display: flex;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); } */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn .arrow {
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   SECTIONS
   ============================================ */
 section { padding: 110px 5%; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-head {
  margin-bottom: 60px;
} 




/* 
services section */



/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at center top, rgba(201,255,46,0.08), transparent 60%),
              radial-gradient(ellipse at bottom, rgba(201,255,46,0.04), transparent 50%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto 36px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-title .accent { color: var(--accent); }
.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0.4;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Antipasto', 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.marquee-track span { display: flex; align-items: center; gap: 60px; }
.marquee-track span::after {
  content: '★';
  color: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   STATS / CTA STRIP
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 70px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Antipasto', 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}


/* ICON BASE STYLE */
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 255, 46, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* SVG COLOR */
.service-icon svg {
  color: #c9ff2e;
  transition: all 0.4s ease;
  z-index: 2;
}

/* GLOW EFFECT */
.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(201,255,46,0.5) 0%, transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

/* BLINK ANIMATION */
@keyframes blinkGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* APPLY BLINK */
.service-card:hover .service-icon::before {
  opacity: 1;
  animation: blinkGlow 1.5s infinite;
}

/* ICON HOVER SCALE */
.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(201, 255, 46, 0.15);
  box-shadow: 0 0 20px rgba(201,255,46,0.6);
}

/* SVG HOVER EFFECT */
.service-card:hover .service-icon svg {
  color: #c9ff2e; /* SAME color, no black */
  transform: scale(1.15);
}
.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.5s ease, border-color 0.4s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}
.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(40%) brightness(0.75);
}
.service-card:hover .service-img img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-2) 5%, transparent 60%);
}
.service-body {
  padding: 26px 26px 30px;
}
.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,255,46,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: 4 / 6.5; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}
.portfolio-title {
  font-size: 1.5rem;
  margin-top: 8px;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  border-radius: 999px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(201,255,46,0.1), transparent 50%);
}
.about-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 22px; }
.about-text p {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.value {
  padding: 30px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.value:hover { border-color: var(--accent); transform: translateY(-5px); }
.value-num {
  font-family: 'Antipasto', 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 0.92rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info { }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.contact-info > p {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.info-block {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.info-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,255,46,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.info-block p {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-2);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px;
  background: rgba(201,255,46,0.1);
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

.map-wrap {
  margin-top: 60px;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }

/* ============================================
   WEDDING / CREATIVE CTA
   ============================================ */
.feature-band {
  position: relative;
  padding: 110px 5%;
  background: linear-gradient(135deg, rgba(201,255,46,0.08), transparent 60%), var(--bg-2);
  overflow: hidden;
}
.feature-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.feature-band-img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.feature-band-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
  color: var(--accent);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-hero {
  padding: 180px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,255,46,0.06), transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  position: relative;
  z-index: 1;
}
.page-hero p {
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  max-width: 580px;
  margin: 20px auto 0;
}
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-50px); }
.reveal-left.in-view { transform: translateX(0); }
.reveal-right { transform: translateX(50px); }
.reveal-right.in-view { transform: translateX(0); }
.reveal-scale { transform: scale(0.9); }
.reveal-scale.in-view { transform: scale(1); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 30px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }

  .about-grid, .contact-grid, .feature-band-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 2; }
  .portfolio-item.tall { grid-row: span 1; aspect-ratio: 4/5; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 80px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
