/* Base CSS Variables and Global Styles */
:root {
  --brand-indigo: #6366f1;
  --brand-emerald: #10b981;
  --brand-amber: #f59e0b;
  --brand-gold: #FFB200;
  --brand-blue: #0066CC;
  --brand-red: #ef4444;
  --dark-900: #0f172a;
  --dark-950: #020617;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --card-bg: rgba(15, 23, 42, 0.7);
  --card-border: 1px solid rgba(99,102,241,0.20);
  --backdrop: blur(12px);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
  --shadow-md: 0 18px 40px rgba(0,0,0,0.35);
  --shadow-sm: 0 10px 24px rgba(0,0,0,0.25);
  --glow-indigo: 0 0 40px rgba(99,102,241,0.35);
  --glow-gold: 0 0 40px rgba(255,178,0,0.35);
  --transition: all 300ms cubic-bezier(.4,0,.2,1);
  --transition-fast: all 180ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(99,102,241,0.08), transparent 60%),
              radial-gradient(1000px 600px at 100% 20%, rgba(255,178,0,0.06), transparent 60%),
              linear-gradient(135deg, rgba(15,23,42,0.7) 0%, rgba(2,6,23,0.8) 100%);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Force global readable text – ensure white by default */
body, p, li, label, input, select, textarea, span, a, small, strong, em, h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
}

/* AI Background & Neural Network */
.ai-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#neuralCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Layout wrapper */
.wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* Section Styles */
.section {
  margin-top: 80px;
  padding: 60px 0;
  scroll-margin-top: 100px;
}

.section:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #dbeafe 40%, #fde68a 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px;
}

.section-subtitle {
  color: var(--text-primary);
  font-size: clamp(18px, 2.4vw, 22px);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #dbeafe 40%, #fde68a 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(20px, 3vw, 24px);
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand-gold), #ffd166);
  color: #0a0a0a;
  border: 0;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: var(--glow-gold);
  transition: var(--transition-fast);
  text-decoration: none;
  font-size: 18px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: var(--backdrop);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(255,178,0,0.2));
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--brand-gold);
}

.service-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.service-description {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* About Section Styles */
.about-content {
  margin-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  backdrop-filter: var(--backdrop);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(255,178,0,0.2));
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--brand-gold);
}

.about-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Section */
.portfolio-content {
  margin-top: 40px;
}

.portfolio-category-section {
  margin-bottom: 80px;
}

.portfolio-category-section:last-child {
  margin-bottom: 0;
}

.portfolio-category-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(99,102,241,0.3);
}

.portfolio-category-title i {
  color: var(--brand-gold) !important;
  font-size: 24px;
}

.portfolio-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

/* Per-category grid counts */
#videoProductionGrid {
  grid-template-columns: repeat(3, 1fr);
}

#webDevelopmentGrid {
  grid-template-columns: repeat(3, 1fr);
}

/* Photography grid: 3 per row; allow natural image aspect ratios */
#photographyGrid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-thumbnail.photo {
  aspect-ratio: auto;
  background: none;
}

.portfolio-thumbnail.photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Simple fullscreen lightbox for photography */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}
.lightbox-overlay.show { display: flex; }
.lightbox-image {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.portfolio-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,0.75), rgba(2,6,23,0.65));
  border: 1px solid rgba(99,102,241,0.22);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform-style: preserve-3d;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(99,102,241,0.45);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(99,102,241,0.1), rgba(255,178,0,0.1));
}

.portfolio-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures true 16:9 crop */
  transition: var(--transition);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,178,0,0.9);
  border: 3px solid #ffffff;
  display: grid;
  place-items: center;
  color: #000000; /* keep icon black inside gold circle for contrast */
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-play {
  background: var(--brand-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-content {
  padding: 20px;
}

.portfolio-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.3);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(99,102,241,0.2);
}

.portfolio-date {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
}

.portfolio-featured {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,178,0,0.2);
  border: 1px solid rgba(255,178,0,0.3);
  color: var(--brand-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Load More Button Styles */
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(15,23,42,0.55);
  border: 1px solid rgba(99,102,241,0.22);
  color: var(--text-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.load-more-btn:hover {
  border-color: rgba(99,102,241,0.45);
  background: rgba(15,23,42,0.75);
  color: #e2e8f0;
  transform: translateY(-1px);
}

/* Tech Marquee */
.marquee {
  margin-top: 16px;
  border-radius: var(--radius-md);
  border: var(--card-border);
  background: rgba(2,6,23,0.55);
  overflow: hidden;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 80px;
}

.marquee::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,1) 0%, transparent 10%, transparent 90%, rgba(2,6,23,1) 100%);
  pointer-events: none;
}

.tracks {
  display: flex; gap: 22px; padding: 14px 0;
  white-space: nowrap; animation: scroll 28s linear infinite;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(15,23,42,0.65);
  border: 1px solid rgba(99,102,241,0.22);
  color: var(--text-secondary);
  font-weight: 700;
}

/* Video Modal Styles */
.modal {
  position: fixed !important; 
  inset: 0 !important; 
  z-index: 999999 !important; 
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 16px;
  overflow: hidden;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  align-items: center;
  justify-content: center;
}

.modal.show { 
  display: flex !important; 
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  align-items: center;
  justify-content: center;
}

.video-panel {
  width: min(90vw, 1000px);
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.9));
  border: 1px solid rgba(255,178,0,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
  animation: pop 320ms cubic-bezier(.2,.8,.2,1) forwards;
  position: relative;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  transform-origin: center center;
}

@keyframes pop { to { transform: translateY(0); } }

.video-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
  border-bottom: 1px solid rgba(255,178,0,0.2);
  margin-bottom: 20px;
}

.video-info h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #FFB200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-info h2 i {
  color: var(--brand-gold);
  font-size: 18px;
}

.video-category {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 18px;
}

.video-close:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.video-panel-body {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
  border-radius: 12px;
}

.video-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 8px;
}

.video-description::-webkit-scrollbar {
  width: 6px;
}

.video-description::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.video-description::-webkit-scrollbar-thumb {
  background: rgba(255,178,0,0.5);
  border-radius: 3px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,178,0,0.2);
}

.video-date {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.video-featured {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,178,0,0.2);
  border: 1px solid rgba(255,178,0,0.3);
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: var(--backdrop);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--text-primary);
  font-size: 16px;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(255,178,0,0.2);
}

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

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-gold), #ffd166);
  color: #0a0a0a;
  border: 0;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Toolkit Form Styles */
.toolkit-form input:focus,
.toolkit-form select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(255,178,0,0.2);
  transform: translateY(-1px);
}

.toolkit-form input:hover,
.toolkit-form select:hover {
  border-color: rgba(99,102,241,0.5);
  background: rgba(15,23,42,0.8);
}

.toolkit-submit:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 8px 32px rgba(255,178,0,0.3);
}

.hero-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hero-toolkit:hover {
  border-color: rgba(255,178,0,0.5);
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

/* Hero Value Cards */
.hero-value-props {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-value-card {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-value-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(255,178,0,0.3));
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--brand-gold);
}

.hero-value-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-value-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Hero Toolkit */
.hero-toolkit {
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(2,6,23,0.9));
  border: 1px solid rgba(255,178,0,0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-toolkit .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,178,0,0.3), rgba(99,102,241,0.3));
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--brand-gold);
}

.hero-toolkit h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-toolkit p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Section */
.hero-cta-section {
  margin-top: 40px;
}

.hero-cta-section p {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

/* Hero Social Proof */
.hero-social-proof {
  margin-top: 40px;
  padding: 24px;
  background: rgba(15,23,42,0.4);
  border-radius: 16px;
  border: 1px solid rgba(99,102,241,0.2);
}

.hero-social-proof .stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-social-proof .stat {
  text-align: center;
}

.hero-social-proof .stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 4px;
}

.hero-social-proof .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer */
.footer {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(99,102,241,0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.2);
  color: var(--text-secondary);
  text-decoration: none;
  background: rgba(15,23,42,0.5);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: rgba(148,163,184,0.4);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wrapper {
    padding: 90px 16px 40px;
  }

  .section {
    margin-top: 60px;
    padding: 40px 0;
  }

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

  .portfolio-grid { gap: 24px; }
  #videoProductionGrid,
  #webDevelopmentGrid { grid-template-columns: 1fr; }

  .portfolio-category-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .service-card {
    padding: 30px 20px;
  }

  .portfolio-content {
    padding: 20px;
  }
  
  .portfolio-category-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
