/* ==========================================================================
   DAS VFX - Modern Cyber Cinematic Visual Effects Stylesheet
   Ultra-Fast, Responsive, Dynamic, and Glassmorphic
   ========================================================================== */

/* --- Root Variables --- */
/* --- Root Variables --- */
:root {
  --bg-dark: #000000;
  --bg-card: rgba(8, 16, 28, 0.72);
  --bg-card-hover: rgba(12, 24, 44, 0.88);
  --border-glass: rgba(22, 153, 207, 0.22);
  --border-glass-hover: rgba(22, 153, 207, 0.65);
  --cyan: #1699cf;
  --cyan-glow: rgba(22, 153, 207, 0.38);
  --blue-electric: #1ba0d7;
  --text-main: #f0f6fc;
  --text-muted: #94a3b8;
  --text-bright: #ffffff;
  --font-heading: 'Nunito', 'Helvetica', 'Arial', sans-serif;
  --font-body: 'Nunito', 'Helvetica', 'Arial', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --header-height: 135px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #000000;
}

body {
  font-family: var(--font-body);
  background-color: #000000;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.is-hidden {
  display: none !important;
}

/* --- Cinematic Looping Video Background --- */
.video-bg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #000000;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.1) contrast(1.05) brightness(0.85);
  transition: opacity 0.8s ease-in-out;
}

.video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 75%, #000000 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Canvas & Background Layers --- */
#bg-particles {
  display: none !important;
}

#bg-overlay {
  display: none;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-bright);
  letter-spacing: 0.5px;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--cyan);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Custom Nunitoactive Circular Ring Cursor --- */
@media (pointer: fine) and (hover: hover) {
  * {
    cursor: none !important;
  }

  .cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transition: width 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.2s ease, 
                box-shadow 0.2s ease,
                background 0.2s ease;
  }

  .cursor-follower {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483646;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.22s, height 0.22s, border-color 0.2s;
    background: rgba(255, 255, 255, 0.01);
  }

  .cursor.hover {
    width: 36px;
    height: 36px;
    border-color: #ffffff;
    border-width: 2.5px;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.65), 0 0 24px var(--cyan-glow);
  }

  .cursor-follower.hover {
    width: 52px;
    height: 52px;
    border-color: rgba(255, 255, 255, 0.45);
  }
}

@media (pointer: coarse), (hover: none) {
  .cursor, .cursor-follower {
    display: none !important;
  }
}

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 145px;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease,
              height 0.3s ease;
}

.site-header.scrolled {
  height: 120px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(22, 153, 207, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.site-header.nav-open {
  background: #000000;
  border-bottom: 1px solid rgba(22, 153, 207, 0.3);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand .logo {
  height: 130px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  border-radius: 4px;
  filter: none !important;
  display: block;
  transition: var(--transition-smooth);
}

.site-header.scrolled .brand .logo {
  height: 105px;
}

.brand:hover .logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(22, 153, 207, 0.45)) !important;
}

/* Nav Menu */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 10px;
  transition: var(--transition-smooth);
  position: relative;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan) !important;
  text-shadow: 0 0 12px var(--cyan-glow);
  font-weight: 800;
}

.admin-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--cyan) !important;
  border: 1.5px solid var(--cyan);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 12px rgba(22, 153, 207, 0.2);
  transition: var(--transition-smooth);
}

.admin-btn:hover {
  background: var(--cyan);
  color: #000 !important;
  box-shadow: 0 0 24px var(--cyan);
  transform: translateY(-2px);
}

.admin-btn:hover {
  background: var(--cyan);
  color: #000 !important;
  box-shadow: 0 0 24px var(--cyan);
  transform: translateY(-2px);
}

/* Nav Toggle Button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(22, 153, 207, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(22, 153, 207, 0.15);
  border-color: var(--cyan);
}

.nav-toggle .bar {
  width: 24px;
  height: 2.5px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Main Layout --- */
main {
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Section Header Component */
.section-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 18px rgba(22, 153, 207, 0.3);
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  /*
   background: linear-gradient(90deg, transparent, var(--cyan), transparent); */
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0.8rem auto 0;
  font-weight: 300;
  text-align: center;
}

/* --- 1. Hero / Our Mission Section (Overall Section Color & Centered Text) --- */
.hero {
  padding: 4.5rem 0 4rem;
  position: relative;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(22, 153, 207, 0.12);
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(22, 153, 207, 0.4);
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.hero-description {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.hero-description .subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.9;
  font-weight: 300;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-description strong {
  color: var(--cyan);
  font-weight: 600;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #1699cf 0%, #0d7ba9 100%);
  color: #010610;
  border: none;
  box-shadow: 0 0 20px rgba(22, 153, 207, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 35px rgba(22, 153, 207, 0.7);
  color: #000;
}

.btn-secondary {
  background: rgba(22, 153, 207, 0.05);
  color: #ffffff;
  border: 1.5px solid var(--border-glass-hover);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(22, 153, 207, 0.15);
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(22, 153, 207, 0.25);
  color: #fff;
}

.btn-pulse {
  animation: glowPulse 2.8s infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(22, 153, 207, 0.35);
  }
  50% {
    box-shadow: 0 0 32px rgba(22, 153, 207, 0.7);
  }
}

/* --- 2. Our Works Section (Alternate Section: Dark Black Opacity) --- */
.work-section {
  padding: 5rem 0 6rem;
  background: rgba(2, 6, 12, 0.92);
  border-bottom: 1px solid rgba(22, 153, 207, 0.15);
  position: relative;
}

/* ==========================================================================
   Filter Pills Bar & Dropdown Menus (Single Row, ALL at End)
   ========================================================================== */
.filters-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 500;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide Firefox scrollbar */
  padding: 6px 12px 14px;
}

.filters-container::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

.filter-pills-bar {
  display: flex;
  flex-wrap: nowrap; /* Strictly single line on ALL screens */
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.8rem;
  max-width: 100%;
  width: max-content;
  margin: 0 auto;
  padding: 2px 8px;
  position: relative;
}

.filter-pill-item {
  position: relative;
  display: inline-flex;
  flex-shrink: 0; /* Prevent buttons from wrapping or shrinking */
  z-index: 10;
}

.filter-pill-item.is-open {
  z-index: 99999;
}

/* Pill Button */
.filter-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 9999px;
  background: rgba(10, 16, 26, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-pill-btn:hover {
  border-color: rgba(22, 153, 207, 0.7);
  color: #38bdf8;
  background: rgba(16, 28, 44, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(22, 153, 207, 0.35);
}

.filter-pill-btn .pill-chevron {
  font-size: 0.72rem;
  color: #94a3b8;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.filter-pill-btn:hover .pill-chevron {
  color: #38bdf8;
}

/* Active Pill State (Glowing Cyan Border & Shadow) */
.filter-pill-btn.active {
  background: rgba(8, 22, 38, 0.92);
  border: 1.5px solid #1699cf;
  color: #1699cf;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(22, 153, 207, 0.75), inset 0 0 10px rgba(22, 153, 207, 0.25);
  text-shadow: 0 0 8px rgba(22, 153, 207, 0.6);
  transform: translateY(-2px);
}

.filter-pill-btn.active .pill-chevron {
  color: #1699cf;
}

/* Parent Active when Subcategory is selected */
.filter-pill-btn.parent-active {
  border-color: #38bdf8;
  color: #38bdf8;
  background: rgba(8, 22, 38, 0.9);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
}

.filter-pill-btn.parent-active .pill-chevron {
  color: #38bdf8;
}

/* When dropdown is open */
.filter-pill-item.is-open .filter-pill-btn {
  border-color: #1699cf;
  color: #1699cf;
  background: rgba(8, 22, 38, 0.95);
  box-shadow: 0 0 18px rgba(22, 153, 207, 0.75), inset 0 0 10px rgba(22, 153, 207, 0.25);
}

.filter-pill-item.is-open .pill-chevron {
  transform: rotate(180deg);
  color: #1699cf;
}

/* Dropdown Floating Menu (Escapes all overflow restrictions via Fixed positioning) */
.filter-dropdown-menu {
  position: fixed;
  min-width: 195px;
  max-width: calc(100vw - 24px);
  background: #050b16;
  background: rgba(5, 11, 22, 0.98);
  border: 1.5px solid rgba(22, 153, 207, 0.65);
  border-radius: 12px;
  padding: 8px 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 999999;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.98), 0 0 24px rgba(22, 153, 207, 0.45);
  animation: dropDownSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

@keyframes dropDownSlide {
  from {
    opacity: 0;
    transform: translate(-50%, -6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.filter-pill-item.is-open .filter-dropdown-menu {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Dropdown Buttons */
.filter-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.filter-dropdown-btn .dropdown-arrow-icon {
  font-size: 0.7rem;
  color: #1699cf;
  transition: transform 0.2s ease, color 0.2s ease;
}

.filter-dropdown-btn:hover {
  background: rgba(22, 153, 207, 0.16);
  color: #38bdf8;
  transform: translateX(4px);
}

.filter-dropdown-btn:hover .dropdown-arrow-icon {
  color: #38bdf8;
  transform: translateX(2px);
}

.filter-dropdown-btn.active {
  background: rgba(22, 153, 207, 0.28);
  color: #1699cf;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(22, 153, 207, 0.8);
}

.filter-dropdown-btn.active .dropdown-arrow-icon {
  color: #38bdf8;
  transform: translateX(2px);
}

@media (max-width: 992px) {
  .filters-container {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 2.5rem;
  }
  .filter-pills-bar {
    gap: 0.6rem 0.75rem;
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    padding-bottom: 4px;
  }
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

/* Works Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.media-container img,
.media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.media-container video {
  cursor: pointer;
}

.card:hover .media-container img,
.card:hover .media-container video {
  transform: scale(1.04);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.play-overlay i {
  font-size: 2rem;
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.7);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.card:hover .play-overlay {
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(22, 153, 207, 0.85);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(22, 153, 207, 0.6);
  z-index: 2;
}

.card-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  justify-content: space-between;
}

.card-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(22, 153, 207, 0.08);
  border: 1px solid rgba(22, 153, 207, 0.2);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.placeholder-media {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #05142a 0%, #082142 100%);
  color: var(--cyan);
}

.placeholder-icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-glass);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* --- 3. Movies / Posters Slider (Alternate Section: Translucent) --- */
.movies-section {
  padding: 5rem 0;
  position: relative;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(22, 153, 207, 0.12);
}

.movies-viewport {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.movies-slider {
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
  user-select: none;
}

.movies-slider.is-dragging {
  cursor: grabbing;
}

.movie-track {
  display: flex;
  gap: 22px;
  width: max-content;
  align-items: center;
}

.poster-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.poster-card img {
  width: 210px;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  display: block;
}

.poster-card:hover img {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(22, 153, 207, 0.35);
}

.poster-caption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

.mv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(3, 10, 22, 0.85);
  border: 1.5px solid var(--border-glass-hover);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.mv-arrow:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px var(--cyan);
  transform: translateY(-50%) scale(1.1);
}

.mv-left {
  left: -22px;
}

.mv-right {
  right: -22px;
}

.mv-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}

.mv-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.mv-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

/* --- 4. Our Services Section (Alternate Section: Dark Black Opacity) --- */
.services {
  padding: 5rem 0 6rem;
  position: relative;
  background: rgba(2, 6, 12, 0.92);
  border-bottom: 1px solid rgba(22, 153, 207, 0.15);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(22, 153, 207, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(22, 153, 207, 0.08);
  border: 1.5px solid rgba(22, 153, 207, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(22, 153, 207, 0.15);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  background: rgba(22, 153, 207, 0.18);
  border-color: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  transform: scale(1.08);
}

.service-icon-wrap .icon {
  font-size: 1.8rem;
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- 5. About Us / Mission Grid (Alternate Section: Translucent) --- */
.mission {
  padding: 5rem 0 6rem;
  position: relative;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(22, 153, 207, 0.12);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mission-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(22, 153, 207, 0.15);
  transform: translateY(-4px);
}

.card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 153, 207, 0.1);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.mission-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(22, 153, 207, 0.15);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-item h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Security list */
.security-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.94rem;
}

.security-list li i {
  color: var(--cyan);
  width: 18px;
}

/* Details Grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.detail-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.detail-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

/* Social Row inside About */
.connect-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  font-size: 1.45rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  position: relative;
}

.social-btn i {
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  color: #ffffff !important;
}

.social-imdb:hover {
  color: #f5c518 !important;
  border-color: #f5c518;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.45);
}

.social-linkedin:hover {
  color: #00a0dc !important;
  border-color: #0077b5;
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.45);
}

.social-instagram:hover {
  color: #ff3377 !important;
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.45);
}

/* --- 6. Contact Us Section (Alternate Section: Dark Black Opacity) --- */
.contact {
  padding: 5rem 0 6rem;
  position: relative;
  background: rgba(2, 6, 12, 0.94);
  border-top: 1px solid rgba(22, 153, 207, 0.15);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.8rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.contact-card-box:hover {
  border-color: var(--border-glass-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(22, 153, 207, 0.1);
  border: 1.5px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-box h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-card-box p,
.contact-card-box a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card-box a:hover {
  color: var(--cyan);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(22, 153, 207, 0.05);
  box-shadow: 0 0 16px rgba(22, 153, 207, 0.25);
}

/* --- Footer --- */
.site-footer {
  background: rgba(1, 4, 10, 0.92);
  border-top: 1px solid var(--border-glass);
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
  backdrop-filter: blur(14px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 115px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: none !important;
  display: block;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.03);
  filter: none !important;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.social-links-bar {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 18px var(--cyan);
}

.footer-bottom {
  padding-top: 1.8rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* --- Video Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1040px;
  background: #000;
  border: 1.5px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(22, 153, 207, 0.3);
}

.modal-content video {
  width: 100%;
  height: auto;
  max-height: 82vh;
  display: block;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close:hover {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

body.modal-open {
  overflow: hidden;
}

/* Ensure cursor is fully visible and functional over video popup and native video controls */
body.modal-open,
body.modal-open * {
  cursor: auto !important;
}

body.modal-open .modal-overlay,
body.modal-open .modal-close,
body.modal-open button {
  cursor: pointer !important;
}

body.modal-open .modal-content video {
  cursor: default !important;
}

body.modal-open .cursor,
body.modal-open .cursor-follower {
  display: none !important;
}

/* --- Back to Top Progress Ring Button --- */
.top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cyan) !important;
  text-decoration: none;
  z-index: 99999;
  cursor: pointer;
  background: rgba(4, 12, 24, 0.88);
  border: 1.5px solid var(--border-glass-hover);
  box-shadow: 0 0 20px rgba(22, 153, 207, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.2s ease;
}

.top-btn--progress::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) var(--p, 0%), rgba(255, 255, 255, 0.12) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent 74%, #000 75%);
  mask: radial-gradient(farthest-side, transparent 74%, #000 75%);
}

.top-btn i {
  color: var(--cyan);
  transition: transform 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 2;
}

.top-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: var(--cyan);
  border-color: #fff;
  box-shadow: 0 0 25px var(--cyan), 0 0 50px rgba(22, 153, 207, 0.5);
}

.top-btn:hover i {
  color: #02060d;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablet (769px to 1024px) */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

/* Mobile & Small Screens (<= 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 110px;
  }

  .site-header {
    height: 110px;
    padding: 0;
  }

  .site-header .container {
    padding: 0 20px;
  }

  .brand .logo {
    height: 90px;
    max-width: 200px;
    border-radius: 4px;
    filter: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    padding: 1.8rem 1.5rem 2.2rem;
    gap: 1.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 0.95rem;
    width: auto;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    padding: 8px 18px;
  }

  .nav-link.active::before,
  .nav-link:hover::before {
    width: calc(100% + 16px);
    height: calc(100% + 8px);
  }

  .admin-btn {
    width: auto;
    max-width: 260px;
    margin: 0.4rem auto 0;
    text-align: center;
  }

  .mv-left { left: 8px; }
  .mv-right { right: 8px; }
}

/* Mobile Phones (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  body {
    overflow-x: hidden;
  }

  main {
    margin-top: 76px;
    gap: 3.8rem;
  }

  .container {
    padding: 0 18px;
  }

  .brand .logo {
    height: 52px;
    max-width: 72px;
  }

  /* 1. Hero Section */
  .hero {
    padding: 3rem 0 1rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.7rem);
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 0.6rem;
  }

  .hero-tagline {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    margin-bottom: 1.5rem;
  }

  .hero-description {
    padding: 1.6rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .hero-description .subtitle {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-description .subtitle:last-child {
    margin-bottom: 0;
  }

  /* 2. Section Headers */
  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    letter-spacing: 1.5px;
  }

  .section-header p {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 520px;
    margin: 0.4rem auto 0;
  }

  /* 3. Filters on Mobile */
  .filters-container {
    margin-bottom: 1.8rem;
  }

  .filters {
    padding: 6px 8px;
    gap: 6px;
    border-radius: var(--radius-full);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .chip {
    padding: 7px 13px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 16px;
    right: 16px;
    min-width: auto;
    z-index: 9999;
  }

  /* 4. Work Grid */
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    border-radius: var(--radius-md);
  }

  /* 5. Posters / Movies */
  .movies-section {
    padding: 2.5rem 0;
  }

  .movies-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  .poster-card {
    margin: 0 8px;
  }

  .poster-card img {
    width: 135px;
    height: 200px;
    border-radius: 10px;
  }

  .poster-caption {
    font-size: 0.75rem;
  }

  /* 6. Services Grid */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.8rem 1.4rem;
    border-radius: var(--radius-md);
    text-align: center;
  }

  .service-icon-wrap {
    margin: 0 auto 14px;
    width: 60px;
    height: 60px;
  }

  .service-icon-wrap .icon {
    font-size: 1.6rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* 7. Mission / About Us */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .mission-card {
    padding: 1.8rem 1.3rem;
    border-radius: var(--radius-md);
  }

  .mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.86rem;
    flex-wrap: wrap;
    gap: 4px;
  }

  .detail-label {
    font-size: 0.76rem;
  }

  .detail-value {
    font-size: 0.86rem;
  }

  .social-row {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* 8. Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .contact-card-box {
    padding: 16px;
    border-radius: 12px;
  }

  .contact-form-wrap {
    padding: 1.8rem 1.3rem;
    border-radius: var(--radius-md);
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  /* 9. Footer */
  .site-footer {
    padding: 3rem 0 2rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    height: 44px;
  }

  .social-links-bar {
    justify-content: center;
    gap: 14px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  /* 10. Back to Top */
  .top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-tagline {
    font-size: 0.98rem;
  }

  .hero-description {
    padding: 1.3rem 1rem;
  }

  .hero-description .subtitle {
    font-size: 0.88rem;
  }

  .poster-card img {
    width: 120px;
    height: 180px;
  }

  .service-card {
    padding: 1.5rem 1.1rem;
  }

  .mission-card {
    padding: 1.5rem 1.1rem;
  }

  .contact-form-wrap {
    padding: 1.5rem 1.1rem;
  }
}
