/* ==========================================
   MADDOZ CREATIVE PRODUCTION
   Premium Cinematic Portfolio Theme
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-tertiary: #18181c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --accent-gold: #e8a849;
  --accent-gold-light: #f5c16c;
  --accent-orange: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b8;
  --text-muted: #6b6b75;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(232, 168, 73, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(232, 168, 73, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Container & Section --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-secondary); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent-gold); margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.8;
}

.accent-text { color: var(--accent-gold); }

.gradient-text {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #000; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.95rem; border: none; border-radius: 50px;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(232,168,73,0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: transparent;
  color: var(--text-primary); font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--border-accent); border-radius: 50px;
  cursor: pointer; transition: var(--transition); letter-spacing: 1px;
}
.btn-secondary:hover { background: rgba(232,168,73,0.1); border-color: var(--accent-gold); transform: translateY(-2px); }

/* ===================== NAVIGATION ===================== */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0; transition: var(--transition); background: transparent;
}
#header.scrolled {
  background: rgba(10,10,12,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar { display: flex; align-items: center; justify-content: space-between; }

.nav-logo img { height: 44px; width: auto; object-fit: contain; }

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

.nav-link {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 1.5px; position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent-gold); transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  z-index: 1001; background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: var(--text-primary);
  transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(10,10,12,0.97); backdrop-filter: blur(30px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-nav-link {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--text-primary); text-transform: uppercase; letter-spacing: 3px;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--accent-gold); }

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  padding-top: 100px;
}
#hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,168,73,0.12), transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: hero-fade-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-tagline {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px; color: var(--accent-gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.hero-tagline::before { content: ''; width: 40px; height: 2px; background: var(--accent-gold); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 900; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 40px; max-width: 600px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats-row {
  display: flex; gap: 48px; padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: var(--font-heading); font-size: 2.2rem;
  font-weight: 800; color: var(--text-primary);
}
.hero-stat-label {
  font-size: 0.82rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* Hero Collage */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: hero-fade-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
}

.collage-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 168, 73, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}

.collage-item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item.main-phone img {
  height: auto;
}

.collage-item.main-phone {
  width: 200px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  border-radius: 28px;
  border: 2px solid var(--border-accent);
  animation: collage-float-center 6s ease-in-out infinite;
}

.collage-item.float-card-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: -5%;
  z-index: 3;
  transform: rotate(-8deg);
  animation: collage-float-left 7s ease-in-out infinite;
}

.collage-item.float-card-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: -5%;
  z-index: 3;
  transform: rotate(8deg);
  animation: collage-float-right 8s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  padding: 10px 18px;
  background: rgba(24, 24, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-badge.badge-1 {
  top: 25%;
  right: 5%;
  animation: collage-float-left 9s ease-in-out infinite;
}

.floating-badge.badge-2 {
  bottom: 25%;
  left: 5%;
  animation: collage-float-right 10s ease-in-out infinite;
}

.floating-badge.badge-3 {
  bottom: 0%;
  left: 35%;
  animation: collage-float-center 8s ease-in-out infinite;
}

/* Collage animations */
@keyframes collage-float-center {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes collage-float-left {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(-6deg); }
}

@keyframes collage-float-right {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== FOUNDER ===================== */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.founder-image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; max-width: 400px;
}
.founder-image img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: var(--radius-lg);
}
.founder-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border-accent); border-radius: var(--radius-lg);
  pointer-events: none;
}
.founder-name {
  font-family: var(--font-heading); font-size: 2.2rem;
  font-weight: 800; color: var(--text-primary); margin-bottom: 8px;
}
.founder-role {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 500;
  color: var(--accent-gold); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 2px;
}
.founder-quote {
  font-style: italic; font-size: 1.1rem; color: var(--accent-gold-light);
  margin-bottom: 20px; padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
}
.founder-bio { font-size: 1rem; line-height: 1.9; color: var(--text-secondary); }

/* ===================== AGENCY ===================== */
.agency-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
}
.agency-text .section-title { margin-bottom: 24px; }
.agency-description {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--text-secondary); margin-bottom: 28px;
}
.agency-contact-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 20px; }
.agency-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.agency-contact-item svg { color: var(--accent-gold); flex-shrink: 0; }

.agency-visual { display: flex; justify-content: center; }
.phone-mockup {
  max-width: 280px; border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 2px solid var(--border-subtle);
  position: relative; animation: float 6s ease-in-out infinite;
}
.phone-mockup img { width: 100%; height: auto; display: block; }

/* ===================== SOLUTIONS ===================== */
.solutions-header { text-align: center; margin-bottom: 48px; }
.solutions-header .section-subtitle { margin: 0 auto; }

.solutions-showcase {
  display: flex; gap: 24px; margin-bottom: 48px; justify-content: center;
  flex-wrap: wrap;
}
.solutions-showcase-img {
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: 280px; box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.solutions-showcase-img:hover { transform: scale(1.03); }
.solutions-showcase-img img { width: 100%; height: auto; display: block; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.solution-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  opacity: 0; transition: var(--transition);
}
.solution-card:hover {
  background: var(--bg-card-hover); border-color: var(--border-accent);
  transform: translateY(-6px); box-shadow: var(--shadow-glow);
}
.solution-card:hover::before { opacity: 1; }

.solution-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: rgba(232,168,73,0.1);
  border-radius: 50%; border: 1px solid var(--border-accent);
}
.solution-title {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.solution-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== CLIENTS MARQUEE ===================== */
#clients {
  padding: 60px 0; background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle); overflow: hidden;
}
.clients-header { text-align: center; margin-bottom: 40px; }
.clients-wrapper {
  overflow: hidden; position: relative; width: 100%;
}
.clients-wrapper::before, .clients-wrapper::after {
  content: ''; position: absolute; top: 0; width: 120px;
  height: 100%; z-index: 2; pointer-events: none;
}
.clients-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.clients-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--bg-secondary), transparent); }

.clients-track {
  display: flex; align-items: center; gap: 50px;
  animation: marquee 35s linear infinite; width: max-content;
}
.client-logo {
  flex-shrink: 0; height: 60px; display: flex;
  align-items: center; justify-content: center;
  opacity: 0.6; filter: grayscale(30%) brightness(1.1);
  transition: var(--transition);
}
.client-logo:hover { opacity: 1; filter: grayscale(0%) brightness(1); }
.client-logo img {
  max-height: 55px; max-width: 130px; width: auto; height: auto;
  object-fit: contain;
}

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

/* ===================== SOCIAL MEDIA ===================== */
.social-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.social-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.social-feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  transition: var(--transition); font-size: 0.95rem;
}
.social-feature-item:hover {
  background: var(--bg-card-hover); border-color: var(--border-accent);
  transform: translateX(6px);
}
.social-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #000; flex-shrink: 0; font-weight: 700;
}
.social-visual { display: flex; justify-content: center; }
.social-visual img {
  max-width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===================== STATS ===================== */
#stats { background: var(--bg-secondary); padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {
  padding: 32px 16px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: var(--border-accent); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--accent-gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
}

.stats-visual-row {
  display: flex; gap: 32px; margin-top: 48px;
  justify-content: center; align-items: center;
}
.stats-phone {
  max-width: 220px; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 2px solid var(--border-subtle);
}
.stats-phone img { width: 100%; height: auto; display: block; }

/* ===================== PHOTOGRAPHY INTRO ===================== */
.photo-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.photo-intro-visual {
  display: flex;
  justify-content: center;
}
.photo-card-link {
  display: block;
  max-width: 440px;
  width: 100%;
}
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-card:hover {
  border-color: var(--border-accent);
}

/* ===================== REELS ===================== */
.reels-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 60px;
}
.reels-visual-link {
  display: block;
  max-width: 350px;
  width: 100%;
}
.reels-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
  transition: var(--transition);
}
.reels-visual img { width: 100%; height: auto; display: block; }
.reels-visual-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.reels-visual:hover .reels-visual-overlay,
.phone-mockup:hover .reels-visual-overlay,
.photo-card:hover .reels-visual-overlay { opacity: 1; }
.reels-visual:hover { transform: scale(1.02); }
.reels-play-icon {
  width: 64px; height: 64px; background: var(--accent-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: var(--transition);
}
.reels-visual:hover .reels-play-icon,
.phone-mockup:hover .reels-play-icon,
.photo-card:hover .reels-play-icon { transform: scale(1.1); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px; margin-top: 48px;
}
.reel-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 9/16; background: var(--bg-tertiary);
}
.reel-item img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.reel-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.reel-item:hover .reel-overlay { opacity: 1; }
.reel-item:hover img { transform: scale(1.08); }
.reel-play-icon {
  width: 50px; height: 50px; background: var(--accent-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.reel-play-icon svg { width: 20px; height: 20px; margin-left: 2px; }

/* ===================== GALLERY MASONRY ===================== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px; justify-content: center;
}
.filter-btn {
  padding: 10px 24px; font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 50px; cursor: pointer; transition: var(--transition);
  text-transform: uppercase; letter-spacing: 1px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold); color: #000; border-color: var(--accent-gold);
}

.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; position: relative; transition: var(--transition);
}
.gallery-item img { width: 100%; height: auto; display: block; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* ===================== AI VISUALS ===================== */
.ai-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.ai-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; transition: var(--transition);
}
.ai-item img { width: 100%; height: auto; display: block; transition: var(--transition); }
.ai-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.ai-item:hover img { transform: scale(1.05); }

/* ===================== DESIGN PORTFOLIO ===================== */
.design-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.design-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; transition: var(--transition);
  background: var(--bg-tertiary);
}
.design-item img { width: 100%; height: auto; display: block; transition: var(--transition); }
.design-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.design-item:hover img { transform: scale(1.03); }

/* ===================== VIDEO PRODUCTION ===================== */
.video-section-header {
  text-align: center; margin-bottom: 48px;
}
.video-section-header .logo-img {
  max-width: 200px; margin: 0 auto 24px; opacity: 0.9;
}

.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; margin-top: 48px;
}
.video-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.video-card:hover {
  border-color: var(--border-accent); transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}
.video-thumb {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: var(--bg-tertiary);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.video-card:hover .video-thumb img { transform: scale(1.08); }

.video-play-btn {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35); opacity: 0; transition: var(--transition);
}
.video-card:hover .video-play-btn { opacity: 1; }
.play-circle {
  width: 60px; height: 60px; background: var(--accent-gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.play-circle:hover { transform: scale(1.1); }
.play-circle svg { margin-left: 3px; }

.video-info { padding: 24px; }
.video-title {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.video-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===================== VIDEO MODAL ===================== */
#video-modal {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
#video-modal.active { display: flex; }
.video-modal-content {
  position: relative; width: 90%; max-width: 960px;
  aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; background: #000;
}
.video-modal-content iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-primary); font-size: 1.2rem;
  transition: var(--transition);
}
.video-modal-close:hover { background: var(--accent-gold); color: #000; }

/* ===================== IMAGE LIGHTBOX ===================== */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; cursor: zoom-out;
}
#lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90vh; position: relative; }
.lightbox-content img {
  max-width: 100%; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-primary); font-size: 1.4rem;
  transition: var(--transition); z-index: 10001;
}
.lightbox-close:hover { background: var(--accent-gold); color: #000; }

/* ===================== CONTACT CTA ===================== */
#contact {
  background: var(--bg-secondary); position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,168,73,0.06), transparent 65%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: #000; }
.contact-card-label {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.contact-card-value {
  font-family: var(--font-heading); font-size: 1.05rem;
  font-weight: 600; color: var(--text-primary);
}
/* Contact Form */
.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(232, 168, 73, 0.08);
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* ===================== FOOTER ===================== */
#footer {
  background: var(--bg-primary); border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-content {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.8; margin-top: 16px; max-width: 300px;
}
.footer-brand img { height: 40px; width: auto; }
.footer-col-title {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px;
}
.footer-link {
  display: block; font-size: 0.88rem; color: var(--text-muted);
  padding: 5px 0; transition: var(--transition);
}
.footer-link:hover { color: var(--accent-gold); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 16px; }
.footer-social-link {
  width: 36px; height: 36px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition); font-size: 0.85rem;
}
.footer-social-link:hover {
  background: var(--accent-gold); color: #000; border-color: var(--accent-gold);
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232,168,73,0.2); }
  50% { box-shadow: 0 0 40px rgba(232,168,73,0.4); }
}

/* ===================== FLOATING WHATSAPP BUTTON ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.45);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-orange); transform: translateY(-4px); }

/* ===================== CUSTOM SCROLLBAR ===================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 60px;
  }
  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-tagline {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-align: center;
  }
  .hero-tagline::before {
    display: none !important;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .hero-stats-row {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .hero-collage {
    height: 350px;
    margin: 0 auto;
  }
  .collage-item.main-phone {
    width: 140px;
  }
  .collage-item.float-card-1 {
    width: 100px;
    height: 100px;
    left: 0;
  }
  .collage-item.float-card-2 {
    width: 100px;
    height: 100px;
    right: 0;
  }
  .floating-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .founder-grid, .agency-grid, .social-grid,
  .photo-intro-grid, .reels-intro, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .solutions-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-visual-row { flex-direction: column; gap: 16px; }
  .stats-phone { max-width: 180px; }
  .reels-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .video-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .founder-image { max-width: 300px; margin: 0 auto; }
  .phone-mockup { max-width: 220px; }
  .reels-visual, .photo-card-link { max-width: 250px; margin: 0 auto; }
  .solutions-showcase { flex-direction: column; align-items: center; }
  .solutions-showcase-img { max-width: 240px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-collage {
    transform: scale(0.85);
    transform-origin: center center;
    height: 300px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .hero-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    justify-content: center;
  }
  .gallery-grid { columns: 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ai-grid, .design-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
