﻿/* ==========================================================================
   SIGNAGES SOLUTIONS - COMPONENTS & LAYOUT (WHITE HEADER + DARK SECTIONS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVBAR (SOLID WHITE HEADER MATCHING SCREENSHOT 1)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1E293B;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #FF1361;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FF1361;
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: #1E293B;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: #0E121C;
  z-index: 1001;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.95);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open { right: 0; }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .btn-gradient.desktop-only { display: none; }
}

/* --------------------------------------------------------------------------
   2. HERO SECTION (MATCHING SCREENSHOT 1)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 70px;
  background: #0A0D14;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
}

.hero-kicker {
  color: var(--accent-amber);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight-pink {
  color: var(--accent-red-badge);
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

@media (max-width: 991px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-poster-frame {
  border-radius: 36px;
  box-shadow: 0 0 45px rgba(0, 255, 163, 0.25), 0 25px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.hero-poster-frame:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero-poster-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   3. "OUR AMAZING CLIENTS" SLIDER (MATCHING SCREENSHOT 2)
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 50px 0 70px 0;
  background: #0A0D14;
}

.clients-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.client-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.client-arrow-btn:hover {
  background: #FFFFFF;
  color: #000000;
}

.clients-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px;
  flex: 1;
}

.clients-scroll-track::-webkit-scrollbar {
  display: none;
}

.client-white-card {
  min-width: 175px;
  height: 82px;
  background: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-white-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.client-white-card img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   4. 4 FEATURED SERVICE CARDS (MATCHING SCREENSHOT 3)
   -------------------------------------------------------------------------- */
.featured-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .featured-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-grid-4 {
    grid-template-columns: 1fr;
  }
}

.feature-card-tall {
  background: #0F131D;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 44px 28px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card-tall:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.squircle-icon {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px auto;
  transition: transform 0.3s ease;
}

.feature-card-tall:hover .squircle-icon {
  transform: scale(1.08);
}

.squircle-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #C084FC;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.25);
}

.squircle-amber {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
  border: 1.5px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.25);
}

.squircle-green {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
  border: 1.5px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.25);
}

.squircle-red {
  background: rgba(248, 113, 113, 0.12);
  color: #F87171;
  border: 1.5px solid rgba(248, 113, 113, 0.35);
  box-shadow: 0 0 25px rgba(248, 113, 113, 0.25);
}

.squircle-teal {
  background: rgba(45, 212, 191, 0.12);
  color: #2DD4BF;
  border: 1.5px solid rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 25px rgba(45, 212, 191, 0.25);
}

.feature-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 0.98rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. "HOW WE HELP - BROWSE MEDIA BY GENRE" (MATCHING SCREENSHOT 4)
   -------------------------------------------------------------------------- */
.genre-grid-12 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .genre-grid-12 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .genre-grid-12 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .genre-grid-12 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.genre-card {
  background: #0F131D;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px 14px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  display: block;
}

.genre-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.genre-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px auto;
}

.genre-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   6. "WHY US - CREATIVE MARKETING AGENCY" (MATCHING SCREENSHOT 5)
   -------------------------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.why-us-poster-wrap {
  border-radius: 36px;
  box-shadow: 0 0 45px rgba(0, 255, 163, 0.25), 0 25px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.why-us-poster-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.why-us-content p.lead-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  line-height: 1.6;
}

.why-us-content p.body-text {
  font-size: 0.98rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   7. FLOATING GLOBAL WIDGETS
   -------------------------------------------------------------------------- */
.floating-wa-pill {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-whatsapp);
  color: #FFFFFF;
  padding: 8px 22px 8px 10px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  color: #FFFFFF;
}

.floating-wa-pill .wa-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--accent-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.floating-top-circle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-top-circle.visible {
  opacity: 1;
  visibility: visible;
}

.floating-top-circle:hover {
  transform: translateY(-4px);
  background: var(--accent-red-badge);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #06080E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: #94A3B8;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
