:root {
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-blue: #e0f0ff;
  --soft-blue: #b4d9ff;
  --sky-blue: #60a5fa;
  --blue: #3b82f6;
  --royal-blue: #1d4ed8;
  --deep-blue: #1e3a5f;
  --navy: #0f1d36;
  --dark-navy: #0a1525;
  --text-dark: #1a1a2e;
  --text-medium: #334155;
  --text-light: #64748b;
  --gold-accent: #f0c040;
  --gradient-blue: linear-gradient(
    135deg,
    #1e3a5f 0%,
    #1d4ed8 40%,
    #3b82f6 70%,
    #60a5fa 100%
  );
  --gradient-light: linear-gradient(
    135deg,
    #ffffff 0%,
    #e0f0ff 50%,
    #b4d9ff 100%
  );
  --shadow-sm: 0 1px 3px rgba(15, 29, 54, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 29, 54, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 29, 54, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 29, 54, 0.18);
  --shadow-blue: 0 8px 30px rgba(59, 130, 246, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans: "", "Inter", system-ui, -apple-system, sans-serif;
  --max-width: 1280px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

/* ======= NAVIGATION ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  z-index: 1000;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--deep-blue);
  letter-spacing: -0.5px;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-logo:hover {
  color: var(--royal-blue);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.logo-icon img {
  width: auto;
  height: 1rem;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links li {
  position: relative;
}

/* global responsive images */
img {
  max-width: 100%;
  height: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 10px 18px;
  line-height: 1.8;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--royal-blue);
  background: var(--light-blue);
}
.dropdown {
  position: relative;
}
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown-caret {
  font-size: 0.8rem;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
  z-index: 1000;
}
.dropdown-menu li {
  margin: 0;
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--text-dark);
  font-weight: 500;
  border-radius: var(--radius-md);
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--light-blue);
  color: var(--royal-blue);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover > a .dropdown-caret,
.dropdown:focus-within > a .dropdown-caret {
  transform: rotate(180deg);
}
.nav-cta {
  background: var(--gradient-blue) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  /* box-shadow: var(--shadow-blue); */
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-bounce) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35) !important; */
  background: var(--royal-blue) !important;
  color: #fff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--deep-blue);
  border-radius: 4px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======= HERO ======= */
.hero {
  padding: 120px 28px 80px;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #020617 0%, #081534 100%);
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-layer.active {
  opacity: 1;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
}
.hero::before,
.hero::after {
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(30, 58, 95, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Simple entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  animation: fadeUp 900ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}
.cta-banner,
.footer-ad,
.testimonial-track {
  animation: fadeUp 950ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

/* ======= SECTION REVEAL ======= */
.section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: opacity, transform;
}
.section.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero.in-view {
  opacity: 1;
  transform: none;
}
.footer-ad.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive adjustments: restore original hero spacing across breakpoints */
@media (max-width: 1024px) {
  .hero {
    min-height: 70vh;
    padding-top: 90px;
    padding-bottom: 50px;
  }
}

/* Very small screens: make mobile nav full-width so all items are visible */
@media (max-width: 420px) {
  .nav-links {
    width: 100%;
    right: -100%;
    padding: calc(var(--nav-height) + 8px) 16px 20px;
  }
  .nav-links a {
    padding: 12px 14px;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .logo-icon img {
    height: 1.05rem;
  }
  .hamburger {
    display: flex;
  }
}

/* Tablet: ensure full navbar displays and add separators for non-desktop devices */
@media (min-width: 481px) and (max-width: 1024px) {
  .nav-links {
    position: static;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 10px;
  }
  .nav-links a {
    padding: 8px 12px;
    border-right: 1px solid rgba(30, 58, 95, 0.08);
  }
  .nav-links a:last-child {
    border-right: none;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 55vh;
    padding-top: 60px;
    padding-bottom: 32px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-ad .ad-card {
    flex-direction: column;
  }
  .footer-ad .ad-card img {
    width: 100%;
  }
  .ad-copy {
    width: 100%;
  }
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.2px;
  margin-top: 70px;
}
.hero-content h1 .highlight {
  color: rgb(39, 82, 199);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  display: inline;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgb(231, 229, 229);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
  margin-top: 10px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease both;
  margin-bottom: 70px;
}
.hero-content h1,
.hero-content p,
.section-header h2,
.section-header p,
.section-tag {
  opacity: 0;
  animation: fadeUp 0.85s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}
.hero-content h1 {
  animation-delay: 0.1s;
}
.hero-content p {
  animation-delay: 0.25s;
}
.section-header h2 {
  animation-delay: 0.2s;
}
.section-header p {
  animation-delay: 0.35s;
}
.section-tag {
  animation-delay: 0.15s;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-bounce);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--soft-blue);
}
.btn-outline:hover {
  background: var(--light-blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.hero-visual {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  display: none;
  align-items: center;
  gap: 14px;
  animation: floatCard 5s ease-in-out infinite;
  border: 1px solid rgba(30, 58, 95, 0.06);
}
.hero-floating-card:nth-child(1) {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}
.hero-floating-card:nth-child(2) {
  top: 30%;
  right: 0%;
  animation-delay: 1.5s;
}
.hero-floating-card:nth-child(3) {
  bottom: 15%;
  left: 10%;
  animation-delay: 3s;
}
.hero-floating-card:nth-child(4) {
  bottom: 5%;
  right: 10%;
  animation-delay: 4.2s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-14px);
  }
  60% {
    transform: translateY(-6px);
  }
}
.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
}
.icon-code {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.icon-video {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}
.icon-music {
  background: linear-gradient(135deg, #1e3a5f, #3b82f6);
}
.icon-design {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.floating-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}
.floating-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ======= SECTION STYLES ======= */
.section {
  padding: 90px 28px;
}
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ======= SERVICES ======= */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #08025a;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid rgba(30, 58, 95, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--soft-blue);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
  border-radius: 0 0 4px 4px;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sky-blue);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgb(219, 216, 216);
  line-height: 1.6;
}
.icon-service-video {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.icon-service-dev {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
}
.icon-service-gfx {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}
.icon-service-acting {
  background: linear-gradient(135deg, #2563eb, #1e3a5f);
}
.icon-service-model {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.icon-service-music {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

/* ======= ABOUT ======= */
#about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-placeholder {
  font-size: 5rem;
  font-weight: 900;
  /* show images sharply and center them */
  opacity: 1;
  filter: none;
  background: transparent;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
}

.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  position: relative;
  border-radius: var(--radius-lg);
  display: block;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.about-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.98rem;
}
.stats-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--royal-blue);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ======= MODELS SECTION (NEW) ======= */
#models {
  background: var(--white);
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(30, 58, 95, 0.06);
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--soft-blue);
}
.model-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: var(--light-blue);
}
.model-info {
  padding: 20px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.model-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.model-location {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.model-measurements {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-medium);
}
.model-measurements span {
  background: var(--light-blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--royal-blue);
}
.model-book-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
}
.model-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

#tech-hub {
  background: var(--off-white);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.tech-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.tech-image {
  width: 100%;
  min-height: 180px;
  overflow: hidden;
}
.tech-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.tech-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tech-label {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--light-blue);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.tech-card-body h3 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--navy);
}
.tech-card-body p {
  color: var(--text-medium);
  line-height: 1.75;
}
.tech-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}
.tech-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--deep-blue);
  font-weight: 700;
}

/* ======= PORTFOLIO ======= */
#portfolio {
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
}
.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 54, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 16px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.portfolio-item:hover .portfolio-placeholder img {
  transform: scale(1.08);
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======= TESTIMONIALS ======= */
#testimonials {
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 58, 95, 0.05);
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--soft-blue);
}
.testimonial-stars {
  color: #f0c040;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-medium);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ======= BLOG NEWS ======= */
#news {
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.news-card {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 22px;
  background: var(--light-blue);
}
.news-card-body h3,
.news-card-body p,
.news-card-body .news-meta {
  color: var(--navy);
}
.news-meta {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.news-card h3 {
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--navy);
}
.news-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.read-more {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/* ======= PARTNERS SECTION (NEW) ======= */
#partners {
  background: var(--white);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
  margin-top: 20px;
}
.partner-logo {
  width: 100px;
  height: 60px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(30, 58, 95, 0.04);
  text-transform: uppercase;
}
.partner-logo:hover {
  box-shadow: var(--shadow-md);
  background: var(--light-blue);
  color: var(--royal-blue);
  transform: translateY(-3px);
}

/* ======= CTA BANNER (NEW) ======= */
.cta-banner {
  background: var(--gradient-blue);
  color: #fff;
  padding: 70px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner .btn {
  background: #fff;
  color: var(--royal-blue);
  font-weight: 800;
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: all var(--transition-bounce);
}
.cta-banner .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  background: var(--light-blue);
}

/* ======= CONTACT ======= */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.contact-info p {
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-medium);
  font-size: 0.95rem;
}
.contact-detail .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 58, 95, 0.06);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background: var(--off-white);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}
.form-group textarea {
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gradient-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-bounce);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-blue);
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: #16a34a;
  font-weight: 700;
  font-size: 1.1rem;
}
.form-success.show {
  display: block;
}
.form-success .check-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 60px 28px 30px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #94a3b8;
}
.footer h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}
.footer ul li a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ======= FOOTER AD (INLINE) ======= */
.footer-ad {
  margin-top: 6px;
}
.footer-ad .ad-card {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-ad .ad-card img {
  width: 46%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.footer-ad .ad-copy {
  text-align: left;
  width: 54%;
  color: #dbeafe;
}
.ad-copy-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scout-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.footer-subscribe {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.footer-subscribe input[type="email"] {
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  letter-spacing: 0.3px;
  opacity: 0.9;
}
.footer-subscribe .btn {
  width: fit-content;
  padding: 10px 18px;
}

/* ======= HERO BACKGROUND ROTATION ======= */
.hero {
  background-size: cover;
  background-position: center;
}
.hero.hero-bg-1 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("Assets/models-1.jpg");
}
.hero.hero-bg-2 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("Assets/IMG-20230714-WA0019.jpg");
}
.hero.hero-bg-3 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("Assets/IMG-20221114-WA0008.jpg");
}


.elfsight-app-d2040027-20b1-4dff-8893-35dc15e63c82{

   position: fixed !important;
    bottom: 20px !important; /* Adjust as needed */
    right: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.address{ 
  text-align: center;
}

/* ======= TALENTS SECTION ======= */
#latest-talents {
  background: var(--off-white);
}
.talents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.talent-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(30, 58, 95, 0.06);
}
.talent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.talent-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light-blue);
}
.talent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.talent-card:hover .talent-image img {
  transform: scale(1.08);
}
.talent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 95, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.talent-card:hover .talent-overlay {
  opacity: 1;
}
.talent-link {
  background: var(--gradient-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-blue);
  display: inline-block;
}
.talent-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35);
}
.talent-info {
  padding: 20px 16px;
}
.talent-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.talent-role {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.talent-details {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .talents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-card-stack {
    max-width: 380px;
    aspect-ratio: 1 / 0.9;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 90px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-smooth);
    gap: 10px;
    z-index: 999;
  }
  .nav-links a {
    display: block;
    padding: 14px 18px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-lg);
    background: transparent;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links.active {
    right: 0;
  }
  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: auto;
    width: 100%;
    background: #fff;
    box-shadow: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }
  .dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    padding: 10px 0 0;
  }
  .dropdown-menu li {
    margin: 0;
  }
  .dropdown-menu a {
    padding: 12px 18px 12px 30px;
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--text-medium);
    font-size: 0.95rem;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: var(--light-blue);
    color: var(--royal-blue);
  }
  .dropdown-menu li + li a {
    border-top: 1px solid rgba(30, 58, 95, 0.08);
  }
  .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .dropdown-caret {
    transition: transform var(--transition-fast);
    transform: rotate(0deg);
  }
  .dropdown.dropdown-open > a .dropdown-caret {
    transform: rotate(180deg);
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .talents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero {
    padding: 100px 16px 50px;
  }
  .section {
    padding: 60px 16px;
  }
  .hero-card-stack {
    max-width: 300px;
    aspect-ratio: 1 / 1;
  }
  .hero-floating-card {
    padding: 12px 16px;
    gap: 8px;
  }
  .floating-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .floating-text strong {
    font-size: 0.78rem;
  }
  .floating-text span {
    font-size: 0.68rem;
  }
  .partners-grid {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .models-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-row {
    gap: 16px;
    justify-content: center;
  }
  .hero-card-stack {
    max-width: 240px;
  }
  .partner-logo {
    width: 70px;
    height: 45px;
    font-size: 0.9rem;
  }
}

/* ======= BOOKING PAGE ======= */
.booking-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 28px;
}
.booking-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 30px;
}
.booking-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.booking-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
}
.booking-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 58, 95, 0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.full {
  grid-template-columns: 1fr;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #fff;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--blue);
}
.checkbox-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition-bounce);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-blue);
  margin-top: 20px;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.4);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.booking-success {
  display: none;
  text-align: center;
  padding: 50px 30px;
  background: #f0fdf4;
  border-radius: var(--radius-lg);
  border: 2px solid #86efac;
}
.booking-success.show {
  display: block;
}
.booking-success .check-icon {
  font-size: 4rem;
  color: #16a34a;
  margin-bottom: 20px;
}
.booking-success h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #16a34a;
  margin-bottom: 10px;
}
.booking-success p {
  color: #22863a;
  font-size: 1rem;
}

.booking-info {
  background: var(--light-blue);
  border-left: 4px solid var(--blue);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}
.booking-info h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.booking-info p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 25px;
  }
  .booking-header h1 {
    font-size: 1.8rem;
  }
}
