/* Modern Reset and Base Styles */
:root {
  --primary: #FF3366;
  --primary-dark: #CC2952;
  --secondary: #6C63FF;
  --accent: #00E5FF;
  --background: #121212;
  --surface: #1E1E1E;
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-dark: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Universal container for all sections --- */
.container {
  max-width: 1200px;
  width: 94vw;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Header */
.header {
  background: var(--gradient-dark);
  color: var(--primary);
  padding: 0.6rem 0;
  min-height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: background 0.3s, opacity 0.3s, min-height 0.3s;
}

.header.scrolled {
  opacity: 0.85;
  min-height: 44px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.2rem 2vw;
}

/* --- Logo: Small and top-left for desktop, compact for mobile --- */
.logo {
  width: 56px;
  height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--border-radius);
  background: transparent;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

/* Improved Hero Section with Glassy Card */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://firebasestorage.googleapis.com/v0/b/danceid-d3016.appspot.com/o/assets%20of%20service%20page%2Fthree-dancers-performing-together-2025-02-11-19-06-19-utc.jpg?alt=media&token=c5d985c7-a1ec-479e-bc45-061c3442a208') center/cover no-repeat;
  overflow: hidden;
}

.hero-image {
  /* For semantic clarity, not needed for styling if background is on .hero-section */
}

.hero-content-glass {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: rgba(24, 21, 28, 0.68);
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(24,21,28,0.18), 0 2px 12px 0 rgba(255,51,102,0.10);
  border: 1.5px solid rgba(255,184,108,0.18);
  backdrop-filter: saturate(140%);
  /* No blur! */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  animation: fadeUp 0.7s 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffb86c;
  animation: fadeUp 0.7s 0.25s both;
}

.hero-desc {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.4s both;
}

.brand-highlight {
  color: #F15A29;
  font-weight: bold;
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-cta {
  margin-top: 0.5rem;
  font-size: 1.18rem;
  padding: 1.1rem 2.8rem;
  border-radius: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 6px 0 rgba(255,184,108,0.12);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  border: none;
  display: inline-block;
  animation: fadeUp 0.7s 0.6s both;
}
.hero-cta:focus, .hero-cta:hover {
  background: linear-gradient(90deg, #ff3366 10%, #ffb86c 90%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(255,51,102,0.28), 0 2px 12px 0 rgba(255,184,108,0.18);
  color: #fff;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}

@media (max-width: 600px) {
  .hero-content-glass {
    padding: 1.2rem 0.2rem;
    border-radius: 18px;
  }
  .hero-cta {
    width: 90vw;
    max-width: 350px;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
}

/* Remove old hero section styles if present */
.hero, .hero::before, .hero-content, .hero-title-glassy-bg, .hero-title-glassy, .hero-tagline, .scroll-down-arrow, .hero-overlay {
  all: unset;
  display: revert;
}

/* Service Categories */
.services {
  padding: 6rem 2rem;
  background: var(--surface);
}

.service-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

/* Service Grid Layout */
.service-section {
  margin: 3rem 0;
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  transition: max-height 0.5s, opacity 0.5s;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-start;
}

.service-item {
  background: var(--background);
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 350px;
  border: 1px solid rgba(255, 51, 102, 0.1);
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
}

.service-item.hide {
  opacity: 0;
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  transform: scaleY(0.8);
  overflow: hidden;
  position: absolute;
  visibility: hidden;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.service-item:hover .service-icon {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,51,102,0.18);
}

/* Hidden Services */

/* See More Button */
.see-more {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 2rem auto 0 auto;
  transition: var(--transition);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  letter-spacing: 0.01em;
}

.see-more:hover {
  background: var(--primary-dark);
  filter: brightness(1.08) saturate(1.2);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 24px rgba(255,51,102,0.18);
}

.see-more i {
  transition: transform 0.3s ease;
}

.see-more:hover i {
  transform: translateY(2px);
}

/* Featured Service Section */
.featured-services {
  padding: 4rem 2rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.featured-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 75, 145, 0.1) 0%, transparent 70%);
}

.featured-services h3 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

/* Featured Services Images */
.featured-img {
  width: 100%;
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: block;
}

@media (max-width: 900px) {
  .featured-img {
    height: 120px;
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 600px) {
  .featured-img {
    height: 90px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0.7rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Form Styles */

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

/* Main CTA Button: List Your Services */
.btn-primary {
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.2rem 2.8rem;
  border-radius: 2.5rem;
  box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 6px 0 rgba(255,184,108,0.12);
  letter-spacing: 0.02em;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  position: relative;
  z-index: 1;
  outline: none;
  animation: ctaPulse 2.2s infinite;
}
.btn-primary:focus, .btn-primary:hover {
  background: linear-gradient(90deg, #ff3366 10%, #ffb86c 90%);
  box-shadow: 0 8px 32px 0 rgba(255,51,102,0.28), 0 2px 12px 0 rgba(255,184,108,0.18);
  filter: brightness(1.08) saturate(1.2);
  transform: translateY(-2px) scale(1.04);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 6px 0 rgba(255,184,108,0.12); }
  50% { box-shadow: 0 8px 40px 0 rgba(255,51,102,0.32), 0 2px 12px 0 rgba(255,184,108,0.22); }
}
@media (max-width: 900px) {
  .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .btn-primary {
    font-size: 1rem;
    padding: 0.9rem 0.5rem;
    border-radius: 1.5rem;
  }
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(255, 51, 102, 0.1);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--gradient-dark, #181818);
  border-top: 1px solid var(--border, #333);
  padding: 2.5rem 0 1.5rem 0;
  width: 100%;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.footer-text {
  color: var(--text-secondary, #ccc);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-address {
  color: var(--text-secondary, #ccc);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .footer-logo {
    width: 80px;
  }
  .footer-inner {
    padding: 0 1rem;
  }
  .footer-text, .footer-address {
    font-size: 0.92rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Add glass morphism effect to service categories */
.service-category {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Add subtle gradient overlay to service items */
.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-item:hover::after {
  opacity: 1;
}

.service-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}

.service-item:hover .service-img {
  transform: scale(1.04);
}

.section-intro {
  font-size: 1.35rem;
  color: #fff;
  background: var(--gradient-primary);
  border-left: 6px solid var(--primary);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  margin: 2.5rem 0 2rem 0;
  font-weight: 700;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10), 0 1.5px 6px 0 rgba(255,51,102,0.08);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s, background 0.3s;
}
.section-intro::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--primary);
  border-radius: 16px 0 0 16px;
  z-index: 2;
  box-shadow: 0 0 16px 2px var(--primary), 0 0 0 0 var(--primary-dark);
}
.section-intro span {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
  padding: 0.1em 0.3em;
  border-radius: 8px;
  display: inline-block;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  letter-spacing: 0.01em;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Responsive Header Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-buttons {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--surface);
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100vw;
    padding: 2rem 0 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 0 0 20px 20px;
    z-index: 110;
    align-items: center;
  }
  .nav.open .nav-buttons,
  #nav-menu.open .nav-buttons {
    display: flex;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .header .container {
    flex-wrap: wrap;
    position: relative;
  }
  .logo {
    width: 44px;
    height: 44px;
  }
  .header .container {
    padding: 0.2rem 1vw;
  }
}

@media (max-width: 600px) {
  .nav-buttons {
    padding: 1.2rem 0 1rem 0;
  }
  .btn {
    width: 90vw;
    max-width: 350px;
    margin: 0 auto;
  }
  .see-more {
    margin-top: 1.5rem !important;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .service-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }
  .service-list {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    margin-bottom: 1rem;
    gap: 1rem;
  }
  .service-item {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 350px;
    margin-bottom: 0;
  }
  .section-intro {
    margin: 1.5rem 0 1rem 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
  .logo {
    width: 36px !important;
    height: 36px !important;
  }
  .header .container {
    padding: 0.2rem 2vw;
  }
  .nav-toggle {
    width: 36px;
    height: 36px;
  }
  /* Move scroll-down-arrow further down in hero section */
  .scroll-down-arrow {
    margin-top: 2.5rem;
    top: 0;
  }

  /* Glassy background for hero h1 */
  .hero-title-glassy {
    display: inline-block;
    background: rgba(0,0,0,0.55);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border-radius: 18px;
    padding: 0.5em 1.2em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 1rem;
  }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Glassy background for hero h1 (now for all screen sizes) */
.hero-title-glassy {
  display: block;
  font-weight: 900;
  font-size: 4vw;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff; /* fallback */
  background: var(--gradient-primary); /* pink and purple gradient */
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  /* Use gradient as background, not as text mask */
  padding: 0.2em 0.5em;
  border-radius: 12px;
  margin: 0 auto;
  width: fit-content;
  /* Add a subtle text-shadow for extra visibility */
  text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.18);
}

/* Glassy background block behind hero title for clarity */
.hero-title-glassy-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.22); /* semi-transparent, non-gradient, non-blurred */
  border-radius: 18px;
  padding: 0.5em 1.2em;
  margin-bottom: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Ensure all major sections use .container for consistent layout */
.hero > .hero-content,
.featured-services,
.service-section,
.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .hero > .hero-content,
  .featured-services,
  .service-section,
  .footer-inner {
    max-width: 98vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero > .hero-content,
  .featured-services,
  .service-section,
  .footer-inner {
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Final Call to Action Section Styles */
.final-cta-section {
  background: var(--surface);
  padding: 3rem 0 2.5rem 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.08);
  margin-top: 3rem;
}
.final-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.final-cta-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta-buttons .btn {
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  border-radius: 2rem;
  font-weight: 700;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(255,51,102,0.08);
}
@media (max-width: 900px) {
  .final-cta-section {
    padding: 2.2rem 0 1.5rem 0;
    border-radius: 18px 18px 0 0;
  }
  .final-cta-heading {
    font-size: 1.4rem;
  }
  .final-cta-buttons .btn {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    min-width: 160px;
  }
}
@media (max-width: 600px) {
  .final-cta-section {
    padding: 1.2rem 0 1rem 0;
    border-radius: 12px 12px 0 0;
    margin-top: 2rem;
  }
  .final-cta-container {
    gap: 1.2rem;
  }
  .final-cta-heading {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .final-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .final-cta-buttons .btn {
    width: 100%;
    min-width: unset;
    padding: 0.9rem 0.5rem;
    font-size: 0.98rem;
  }
}

/* Special Monetizable Services Section - visually distinct, improved readability */
#special-services.service-section {
  background: #18151c;
  border: 2.5px solid #ffb86c;
  box-shadow: 0 8px 40px 0 rgba(255,184,108,0.08), 0 2px 12px 0 rgba(24,21,28,0.10);
  position: relative;
  z-index: 2;
  min-height: unset !important;
  height: auto !important;
}
#special-services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  align-items: flex-start;
  justify-content: center;
  min-height: unset !important;
  height: auto !important;
  flex-grow: 0 !important;
}
#special-services .service-item {
  background: linear-gradient(135deg, #18151c 80%, #232046 100%);
  border-radius: 22px;
  border: 2px solid rgba(255, 184, 108, 0.7);
  box-shadow:
    0 2px 16px 0 rgba(255, 184, 108, 0.10),
    0 8px 32px 0 rgba(255, 51, 102, 0.10),
    0 0 0 4px rgba(255, 184, 108, 0.08);
  position: relative;
  overflow: hidden;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  margin-bottom: 1.2rem;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
}
#special-services .service-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 4px 32px 0 rgba(255, 184, 108, 0.18),
    0 12px 48px 0 rgba(255, 51, 102, 0.18),
    0 0 0 6px rgba(255, 184, 108, 0.12);
  border-color: #ffb86c;
}
#special-services .service-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 38%;
  background: linear-gradient(120deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 22px 22px 0 0;
  pointer-events: none;
  z-index: 1;
}
#special-services .service-icon {
  background: linear-gradient(135deg, #ffb86c 0%, #ff3366 100%);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem auto;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(255, 51, 102, 0.18), 0 0 0 4px rgba(255,184,108,0.10);
  position: relative;
  z-index: 2;
  border: 2.5px solid #fff3;
}
#special-services .service-item h3 {
  font-weight: 900;
  background: linear-gradient(90deg, #ffb86c 0%, #ff3366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
  letter-spacing: 0.01em;
  text-align: center;
}
#special-services .service-item p {
  color: #fff;
  opacity: 0.92;
  font-size: 1.01rem;
  z-index: 2;
  position: relative;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
#special-services .service-item.hide {
  display: none !important;
}
@media (max-width: 900px) {
  #special-services h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  #special-services .service-list {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  #special-services.service-section {
    padding: 1.5rem 1rem;
    border-radius: 14px;
    margin: 2rem 0;
  }
  #special-services h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  #special-services .service-list {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #special-services .service-item {
    margin-bottom: 0;
  }
  #special-services .service-item.hide {
    display: none !important;
  }
}

.cta-create-now {
  display: block;
  width: fit-content;
  margin: -1.2rem auto 2.2rem auto;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border: none;
  border-radius: 1.8rem;
  box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 6px 0 rgba(255,184,108,0.12);
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  letter-spacing: 0.01em;
}

.cta-create-now:hover, .cta-create-now:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(255,51,102,0.28), 0 2px 12px 0 rgba(255,184,108,0.18);
  background: linear-gradient(90deg, #ff3366 10%, #ffb86c 90%);
  color: #fff;
  outline: none;
}

@media (max-width: 600px) {
  .cta-create-now {
    width: 90vw;
    max-width: 350px;
    font-size: 1rem;
    margin: -0.7rem auto 1.5rem auto;
    padding: 0.75rem 1.2rem;
  }
}

/* Modal Overlay */
.create-now-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 21, 28, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

/* Modal Box */
.create-now-modal {
  background: rgba(30, 28, 40, 0.98);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 rgba(255,184,108,0.18), 0 2px 12px 0 rgba(255,51,102,0.10);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 95vw;
  width: 370px;
  position: relative;
  text-align: center;
  animation: popIn 0.25s cubic-bezier(.4,2,.6,1);
}

@keyframes popIn {
  0% { transform: scale(0.92) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Close Button */
.create-now-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffb86c;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.create-now-modal-close:hover { color: #ff3366; }

.create-now-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffb86c;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

/* Modal Buttons */
.create-now-modal-btn {
  display: block;
  width: 100%;
  margin: 0.7rem 0;
  padding: 1.1rem 0;
  border-radius: 2.2rem;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s;
  box-shadow: 0 2px 12px rgba(255,51,102,0.10);
  letter-spacing: 0.01em;
}

.create-now-modal-btn.main {
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 6px 0 rgba(255,184,108,0.12);
}
.create-now-modal-btn.main:hover {
  background: linear-gradient(90deg, #ff3366 10%, #ffb86c 90%);
  transform: translateY(-2px) scale(1.03);
}

.create-now-modal-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #ffb86c;
  margin-top: 1.1rem;
}
.create-now-modal-btn.outline:hover {
  border-color: #ff3366;
  color: #ffb86c;
  transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 600px) {
  .create-now-modal {
    width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .create-now-modal-title {
    font-size: 1.05rem;
  }
  .create-now-modal-btn {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
}

.motivation-banner-glass {
  background: rgba(24, 21, 28, 0.68);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 rgba(24,21,28,0.13), 0 2px 12px 0 rgba(255,51,102,0.08);
  border: 1.5px solid rgba(255,184,108,0.13);
  backdrop-filter: saturate(140%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 2.2rem auto 2.5rem auto;
  max-width: 700px;
  text-align: center;
  animation: fadeUp 0.7s 0.1s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.motivation-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.3rem;
  line-height: 1.5;
  animation: fadeUp 0.7s 0.2s both;
}

.brand-highlight {
  color: #F15A29;
  font-weight: bold;
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.motivation-cta,
.cta-start-now {
  margin-top: 0.5rem;
  font-size: 1.13rem;
  padding: 1.05rem 2.5rem;
  border-radius: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3366 0%, #ffb86c 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(255,51,102,0.13), 0 1.5px 6px 0 rgba(255,184,108,0.10);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  border: none;
  display: inline-block;
  animation: fadeUp 0.7s 0.3s both;
  cursor: pointer;
}
.motivation-cta:focus, .motivation-cta:hover,
.cta-start-now:focus, .cta-start-now:hover {
  background: linear-gradient(90deg, #ff3366 10%, #ffb86c 90%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(255,51,102,0.18), 0 2px 12px 0 rgba(255,184,108,0.15);
  color: #fff;
}

@media (max-width: 600px) {
  .motivation-banner-glass {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 16px;
    max-width: 98vw;
  }
  .motivation-cta,
  .cta-start-now {
    width: 90vw;
    max-width: 350px;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
}