
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  
  body {
    background-color: #1E1E1E;
    color: #FDF6EC;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  a {
    color: #ee353c;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: #FF8F8F;
  }
  
  /* === HEADER & NAVIGATION === */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgba(30, 30, 30, 0.95);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FDF6EC;
  }
  
  .logo-image {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo-text {
    color: #FDF6EC;
    letter-spacing: 0.5px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .nav-links a {
    color: #FDF6EC;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ee353c;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 8px 20px !important;
    background: #ee353c;
    color: #fff !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
  }
  
  .nav-cta:hover {
    background: #FF8F8F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  }
  
  .nav-cta::after {
    display: none;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FDF6EC;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* === FOOTER === */
  .footer-top {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(30, 30, 30, 0.95) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FDF6EC;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-style: italic;
    color: rgba(253, 246, 236, 0.85);
  }
  
  .footer-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ee353c 0%, #FF8C8C 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .footer-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FF8F8F;
    z-index: -1;
    transition: width 0.5s ease;
    border-radius: 50px;
  }
  
  .footer-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
  }
  
  .footer-cta-button:hover::before {
    width: 100%;
  }
  
  .footer-main {
    background: #1E1E1E;
    padding: 80px 0 40px;
    position: relative;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FDF6EC;
    margin-bottom: 20px;
  }
  
  .footer-logo-icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #ee353c;
  }
  
  .footer-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDF6EC;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #333333;
  }
  
  .social-icon:hover {
    background: #ee353c;
    color: #fff;
    transform: translateY(-5px);
  }
  
  .footer-links-section h3,
  .footer-services-section h3,
  .footer-contact-section h3,
  .footer-newsletter-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #FDF6EC;
  }
  
  .footer-links-section h3::after,
  .footer-services-section h3::after,
  .footer-contact-section h3::after,
  .footer-newsletter-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ee353c;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #FDF6EC;
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #ee353c;
    opacity: 1;
    transform: translateX(5px);
  }
  
  .footer-contact-list {
    list-style: none;
  }
  
  .footer-contact-list li {
    display: flex;
    margin-bottom: 15px;
  }
  
  .footer-contact-list i {
    color: #ee353c;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 5px;
  }
  
  .footer-contact-list p {
    font-size: 0.95rem;
    margin-bottom: 5px;
    opacity: 0.8;
  }
  
  .newsletter-form {
    margin-bottom: 20px;
  }
  
  .newsletter-input-wrapper {
    position: relative;
  }
  
  .newsletter-input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid #333333;
    border-radius: 50px;
    color: #FDF6EC;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: #ee353c;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  }
  
  .newsletter-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ee353c;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-button:hover {
    background: #FF8F8F;
    transform: translateY(-50%) scale(1.1);
  }
  
  .footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 50px;
    font-size: 0.85rem;
  }
  
  .trust-badge i {
    color: #ee353c;
  }
  
  .footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    background: rgba(30, 30, 30, 0.6);
    transform: translateY(-10px);
  }
  
  .feature-item i {
    font-size: 2rem;
    color: #ee353c;
    margin-bottom: 15px;
  }
  
  .feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FDF6EC;
  }
  
  .feature-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
  }
  
  .footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #333333;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-legal-links a {
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .footer-payment-methods {
    display: flex;
    gap: 10px;
  }
  
  .payment-icon {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .payment-icon:hover {
    opacity: 1;
  }
  
  /* === RESPONSIVE STYLES === */
  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
    
    .mobile-menu-btn {
      display: block;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-cta h2 {
      font-size: 2.2rem;
    }
  }
  
  body {
    background-color: #1E1E1E;
    color: #FDF6EC;
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    color: #FDF6EC;
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    color: rgba(253, 246, 236, 0.8);
    line-height: 1.6;
  }
  
  /* Utility Classes */
  .dona-highlight {
    color: #ee353c;
  }
  
  .dona-gradient {
    background: linear-gradient(to right, #ee353c, #FF9D7D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .dona-section {
    position: relative;
    overflow: hidden;
  }
  
  .dona-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Hero Section */
  .dona-hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    background-color: #1E1E1E;
    overflow: hidden;
  }
  
  .dona-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1), transparent 60%);
    z-index: 1;
  }
  
  .dona-hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .dona-hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 30px;
  }
  
  .dona-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ee353c;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }
  
  .dona-hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
  }
  
  .dona-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .dona-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 90%;
  }
  
  .dona-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .dona-primary-cta, .dona-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  .dona-primary-cta {
    background: #ee353c;
    color: #FDF6EC;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  }
  
  .dona-primary-cta:hover {
    background: linear-gradient(to right, #ee353c, #FF9D7D);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
  }
  
  .dona-secondary-cta {
    background: rgba(255, 107, 107, 0.1);
    color: #ee353c;
    border: 1px solid rgba(255, 107, 107, 0.3);
  }
  
  .dona-secondary-cta:hover {
    background: rgba(255, 107, 107, 0.15);
    transform: translateY(-3px);
  }
  
  .dona-primary-cta i, .dona-secondary-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .dona-primary-cta:hover i, .dona-secondary-cta:hover i {
    transform: translateX(5px);
  }
  
  .dona-hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
  }
  
  .dona-main-preview {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    z-index: 2;
  }
  
  .dona-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.4), transparent 70%);
    border-radius: 20px;
    opacity: 0.7;
    filter: blur(40px);
    z-index: 1;
    animation: glow 5s infinite alternate;
  }
  
  /* Feature Grid */
  .dona-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 2;
  }
  
  .dona-feature {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .dona-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.2);
  }
  
  .dona-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .dona-feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .dona-feature:hover .dona-feature-icon::before {
    opacity: 1;
  }
  
  .dona-feature-icon i {
    font-size: 24px;
    color: #ee353c;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  
  .dona-feature:hover .dona-feature-icon i {
    transform: scale(1.1);
    color: #FDF6EC;
  }
  
  .dona-feature-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .dona-feature:hover .dona-feature-content h3 {
    color: #ee353c;
  }
  
  .dona-feature-content p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
  }
  
  /* Services Section */
  .services {
    position: relative;
    padding: 120px 0;
    background-color: #1E1E1E;
    overflow: hidden;
  }
  
  .services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(30, 30, 30, 0) 70%);
  }
  
  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .shape {
    position: absolute;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    filter: blur(40px);
  }
  
  .shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    animation: float 20s infinite alternate;
  }
  
  .shape-2 {
    top: 60%;
    left: 70%;
    width: 400px;
    height: 400px;
    animation: float 15s infinite alternate-reverse;
  }
  
  .shape-3 {
    top: 30%;
    right: 5%;
    width: 200px;
    height: 200px;
    animation: float 18s infinite alternate;
  }
  
  .services-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ee353c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
  }
  
  .section-subtitle::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ee353c;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ee353c, transparent);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.2);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }
  
  .service-icon {
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background: #ee353c;
    transform: scale(1.1);
  }
  
  .service-icon i {
    font-size: 28px;
    color: #ee353c;
    transition: color 0.3s ease;
  }
  
  .service-card:hover .service-icon i {
    color: #FDF6EC;
  }
  
  .icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: spin 12s linear infinite;
  }
  
  .service-card:hover .icon-ring {
    border-color: rgba(255, 107, 107, 0.6);
  }
  
  .service-title {
    font-size: 22px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }
  
  .service-card:hover .service-title {
    color: #ee353c;
  }
  
  .service-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
  }
  
  .service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .service-features span {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.9;
  }
  
  .service-features span i {
    color: #ee353c;
    margin-right: 10px;
    font-size: 12px;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    color: #ee353c;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .service-link:hover {
    color: #FF9D7D;
  }
  
  .service-link:hover i {
    transform: translateX(5px);
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    position: relative;
    padding: 120px 0;
    background-color: #1E1E1E;
    overflow: hidden;
  }
  
  .why-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  #particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 30, 30, 0.8) 0%, #1E1E1E 70%);
  }
  
  .why-us-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
    gap: 30px;
  }
  
  .stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FDF6EC;
    line-height: 1;
    display: inline-block;
  }
  
  .stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: #ee353c;
    display: inline-block;
    margin-left: 5px;
  }
  
  .stat-label {
    font-size: 16px;
    color: rgba(253, 246, 236, 0.8);
    margin-top: 10px;
    display: block;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .benefit-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    overflow: hidden;
  }
  
  .benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ee353c, #FF9D7D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.2);
  }
  
  .benefit-card:hover::before {
    transform: scaleX(1);
  }
  
  .benefit-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
  }
  
  .benefit-icon i {
    font-size: 26px;
    color: #ee353c;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover .benefit-icon i {
    color: #FDF6EC;
    transform: scale(1.1);
  }
  
  .icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .benefit-card:hover .icon-glow {
    opacity: 1;
  }
  
  .benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }
  
  .benefit-card:hover h3 {
    color: #ee353c;
  }
  
  .benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
  }
  
  .benefit-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.9;
  }
  
  .detail-item i {
    color: #ee353c;
    margin-right: 10px;
    font-size: 12px;
  }
  
  .cta-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 20px;
    margin-top: 60px;
  }
  
  .cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.8;
  }
  
  .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(to right, #ee353c, #FF9D7D);
    color: #FDF6EC;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
  }
  
  .cta-button span {
    position: relative;
    z-index: 2;
  }
  
  .button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  /* Testimonials Section */
  .testimonials {
    position: relative;
    padding: 120px 0;
    background-color: #1E1E1E;
    overflow: hidden;
  }
  
  .testimonials .shape-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 107, 0.03);
    border-radius: 50%;
    animation: float 20s infinite alternate;
    z-index: 1;
  }
  
  .testimonials .shape-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 107, 0.02);
    border-radius: 50%;
    animation: float 15s infinite alternate-reverse;
    z-index: 1;
  }
  
  .testimonials .shape-3 {
    position: absolute;
    bottom: -15%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 107, 0.01);
    border-radius: 50%;
    animation: float 18s infinite alternate;
    z-index: 1;
  }
  
  .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
  }
  
  .testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.2);
  }
  
  .testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    border: 4px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
  }
  
  .testimonial-item:hover .testimonial-image {
    border-color: #ee353c;
    transform: scale(1.05);
  }
  
  .testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
  }
  
  .testimonial-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 80px;
    color: rgba(255, 107, 107, 0.1);
    font-family: Georgia, serif;
  }
  
  .testimonial-author {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ee353c;
  }
  
  .testimonial-role {
    font-size: 14px;
    opacity: 0.7;
  }
  
  .testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-dot.active {
    background: #ee353c;
    transform: scale(1.2);
  }
  
  .testimonial-dot:hover {
    background: rgba(255, 107, 107, 0.5);
  }
  
  /* Enhanced Features Showcase Section with Image Animations */
  
  /* Base Styles */
  .features-showcase {
    position: relative;
    background-color: #1E1E1E;
    overflow: hidden;
    padding: 100px 0;
  }
  
  /* Feature Section Base */
  .feature-section {
    position: relative;
    margin-bottom: 120px;
    padding: 80px 0;
    overflow: hidden;
  }
  
  .feature-section:last-child {
    margin-bottom: 0;
  }
  
  /* Layered Background Effects */
  .feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 107, 107, 0.05) 0%, rgba(30, 30, 30, 0) 70%);
    z-index: 1;
  }
  
  .feature-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(30, 30, 30, 0.8) 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 0;
    opacity: 0.5;
  }
  
  /* Feature Content */
  .feature-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  /* Badge Styling */
  .feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #ee353c;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .feature-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
  }
  
  /* Title and Text Styling */
  .feature-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FDF6EC;
    position: relative;
  }
  
  .feature-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ee353c, transparent);
  }
  
  .feature-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: rgba(253, 246, 236, 0.9);
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .feature-description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(253, 246, 236, 0.8);
    margin-bottom: 40px;
    max-width: 650px;
  }
  
  /* Image Container Styling */
  .feature-devices,
  .color-grading-showcase,
  .magnetic-mask-demo,
  .transcribe-demo,
  .video-360-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    transform: translateX(-100px);
    opacity: 0;
  }
  
  /* Animation classes */
  .feature-devices.animate,
  .color-grading-showcase.animate,
  .magnetic-mask-demo.animate,
  .transcribe-demo.animate,
  .video-360-showcase.animate {
    transform: translateX(0);
    opacity: 1;
  }
  
  /* Image Styling */
  .devices-image,
  .feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    transform-origin: center;
    max-height: 500px;
    object-fit: cover;
  }
  
  .feature-devices:hover .devices-image,
  .color-grading-showcase:hover .feature-image,
  .magnetic-mask-demo:hover .feature-image,
  .transcribe-demo:hover .feature-image,
  .video-360-showcase:hover .feature-image {
    transform: scale(1.02);
  }
  
  /* Image Overlay Gradient */
  .feature-devices::after,
  .color-grading-showcase::after,
  .magnetic-mask-demo::after,
  .transcribe-demo::after,
  .video-360-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.6) 0%, rgba(30, 30, 30, 0) 40%);
    pointer-events: none;
  }
  
  /* Tool Tabs Styling */
  .color-tools-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
  }
  
  .tool-tab {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 14px;
    color: rgba(253, 246, 236, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tool-tab.active {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ee353c;
  }
  
  .tool-tab:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-3px);
  }
  
  .feature-caption {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
    padding: 0 20px 20px;
    position: relative;
    z-index: 3;
  }
  
  /* Sidebar Styling */
  .feature-sidebar {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .feature-highlight {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
  }
  
  .feature-highlight.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .feature-highlight:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-highlight h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ee353c;
  }
  
  .feature-highlight p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(253, 246, 236, 0.8);
  }
  
  /* 360 Video Features */
  .video-360-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
  }
  
  .feature-item.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ee353c;
  }
  
  .feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(253, 246, 236, 0.8);
  }
  
  /* Enhanced Grid Layout for Larger Screens */
  @media (min-width: 992px) {
    /* ProRes RAW Section */
    .raw-performance .feature-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .raw-performance .feature-devices {
      grid-column: 2;
      grid-row: 1;
    }
    
    .raw-performance .feature-title,
    .raw-performance .feature-badge,
    .raw-performance .feature-description {
      grid-column: 1;
      grid-row: 1;
    }
    
    .raw-performance .feature-sidebar {
      grid-column: 1 / span 2;
      grid-row: 2;
    }
    
    /* Color Grading Section */
    .color-grading .feature-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .color-grading .color-grading-showcase {
      grid-column: 2;
      grid-row: 1 / span 3;
    }
    
    /* Magnetic Mask Section */
    .magnetic-mask .feature-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .magnetic-mask .magnetic-mask-demo {
      grid-column: 2;
      grid-row: 1 / span 3;
    }
    
    /* Transcribe Section */
    .transcribe-captions .feature-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .transcribe-captions .transcribe-demo {
      grid-column: 2;
      grid-row: 1 / span 3;
    }
    
    /* 360 Video Section */
    .video-360 .feature-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .video-360 .video-360-showcase {
      grid-column: 2;
      grid-row: 1 / span 2;
    }
    
    .video-360 .video-360-features {
      grid-column: 1 / span 2;
      grid-row: 3;
    }
  }
  
  /* Animation KeyFrames */
  @keyframes shine {
    0% {
      left: -100%;
    }
    20%, 100% {
      left: 100%;
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .feature-section {
      padding: 60px 0;
    }
    
    .feature-devices,
    .color-grading-showcase,
    .magnetic-mask-demo,
    .transcribe-demo,
    .video-360-showcase {
      margin-top: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .feature-section {
      padding: 50px 0;
    }
    
    .video-360-features {
      grid-template-columns: 1fr;
    }
    
    .feature-sidebar {
      grid-template-columns: 1fr;
    }
  }
  
  /* Image Placeholder Styles (for demo) */
  .feature-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(30, 30, 30, 0.5) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-image-placeholder::before {
    content: "Image";
    color: rgba(253, 246, 236, 0.5);
    font-size: 20px;
    font-style: italic;
  }
  
  /* CTA Banner with Booking Form */
  .cta-banner {
    position: relative;
    padding: 120px 0;
    background-color: #1E1E1E;
    overflow: hidden;
  }
  
  .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(30, 30, 30, 0) 70%);
  }
  
  .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 107, 107, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .cta-intro {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ee353c;
    margin-bottom: 20px;
  }
  
  .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
  }
  
  .cta-title span {
    color: #ee353c;
  }
  
  .cta-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
  }
  
  .booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .booking-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .booking-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.1);
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .form-header p {
    font-size: 14px;
    opacity: 0.7;
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(253, 246, 236, 0.8);
  }
  
  .input-wrapper {
    position: relative;
  }
  
  .input-wrapper i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255, 107, 107, 0.5);
    font-size: 16px;
  }
  
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FDF6EC;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .input-wrapper textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .input-wrapper input:focus,
  .input-wrapper select:focus,
  .input-wrapper textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  }
  
  .input-wrapper input::placeholder,
  .input-wrapper textarea::placeholder {
    color: rgba(253, 246, 236, 0.4);
  }
  
  .form-submit {
    margin-top: 30px;
  }
  
  .submit-button {
    width: 100%;
    padding: 16px;
    background: #ee353c;
    color: #FDF6EC;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .submit-button:hover {
    background: linear-gradient(to right, #ee353c, #FF9D7D);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  }
  
  .submit-button i {
    transition: transform 0.3s ease;
  }
  
  .submit-button:hover i {
    transform: translateX(5px);
  }
  
  .booking-info {
    flex: 1;
    min-width: 300px;
  }
  
  .info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 107, 0.2);
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .info-icon i {
    font-size: 24px;
    color: #ee353c;
  }
  
  .info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .info-card p {
    font-size: 15px;
    opacity: 0.8;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.2);
    background: rgba(255, 107, 107, 0.05);
  }
  
  .benefit-item i {
    font-size: 20px;
    color: #ee353c;
  }
  
  .benefit-item span {
    font-size: 14px;
    font-weight: 500;
  }
  
  .contact-quick {
    margin-bottom: 30px;
  }
  
  .contact-quick h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ee353c;
  }
  
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FDF6EC;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact-link:hover {
    color: #ee353c;
    transform: translateX(5px);
  }
  
  .contact-link i {
    font-size: 16px;
    color: #ee353c;
  }
  
  .trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .trust-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .trust-item:hover {
    transform: scale(1.1);
    background: rgba(255, 107, 107, 0.05);
  }
  
  .trust-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  /* Animations */
  @keyframes glow {
    0% {
      opacity: 0.5;
      transform: scale(0.9);
    }
    100% {
      opacity: 0.8;
      transform: scale(1.1);
    }
  }
  
  @keyframes shine {
    0% {
      left: -100%;
    }
    100% {
      left: 200%;
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(-20px) translateX(10px);
    }
    100% {
      transform: translateY(0) translateX(0);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Media Queries */
  @media (max-width: 1200px) {
    .dona-hero-container {
      flex-direction: column;
      text-align: center;
    }
    
    .dona-hero-content {
      margin-right: 0;
      margin-bottom: 50px;
      max-width: 100%;
    }
    
    .dona-hero-description {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .dona-cta-group {
      justify-content: center;
    }
    
    .dona-hero-image {
      max-width: 100%;
    }
    
    .feature-section {
      padding: 80px 0;
    }
  }
  
  @media (max-width: 768px) {
    .dona-hero {
      padding: 60px 0;
    }
    
    .dona-hero-title {
      font-size: 2.5rem;
    }
    
    .dona-feature-grid {
      grid-template-columns: 1fr;
    }
    
    .service-card {
      padding: 30px 20px;
    }
    
    .stats-row {
      flex-direction: column;
    }
    
    .stat-item {
      min-width: 100%;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-banner {
      padding: 80px 0;
    }
    
    .booking-form {
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .dona-hero-title {
      font-size: 2rem;
    }
    
    .dona-cta-group {
      flex-direction: column;
      width: 100%;
    }
    
    .dona-primary-cta, .dona-secondary-cta {
      width: 100%;
    }
    
    .service-features {
      flex-direction: column;
    }
    
    .benefit-item {
      padding: 15px;
    }
    
    .form-row {
      flex-direction: column;
    }
    
    .form-group {
      min-width: 100%;
    }
  }
  /* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #1E1E1E;
    color: #FDF6EC;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .nebula-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Header Styles */
  .nebula-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    position: relative;
  }
  
  .nebula-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ee353c;
  }
  
  .nebula-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FDF6EC 60%, #ee353c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nebula-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #FDF6EC;
    opacity: 0.8;
  }
  
  /* Slider Container */
  .nebula-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Slider */
  .nebula-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 80vh;
    max-height: 700px;
  }
  
  .nebula-slide {
    min-width: 100%;
    position: relative;
  }
  
  /* Portfolio Items */
  .nebula-portfolio-item {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .nebula-portfolio-content {
    height: 100%;
    position: relative;
  }
  
  .nebula-portfolio-image, 
  .nebula-portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }
  
  .nebula-portfolio-content:hover .nebula-portfolio-image,
  .nebula-portfolio-content:hover .nebula-portfolio-video {
    transform: scale(1.05);
  }
  
  /* Item Details */
  .nebula-item-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.9), transparent);
    transform: translateY(0);
    transition: transform 0.4s;
  }
  
  .nebula-portfolio-content:hover .nebula-item-details {
    transform: translateY(-10px);
  }
  
  .nebula-item-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #FDF6EC;
  }
  
  .nebula-item-description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
  }
  
  /* Slider Navigation */
  .nebula-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .nebula-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .nebula-arrow:hover {
    background-color: #ee353c;
    transform: scale(1.1);
  }
  
  .nebula-arrow-icon {
    border: solid #FDF6EC;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
  }
  
  .nebula-arrow-prev .nebula-arrow-icon {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  
  .nebula-arrow-next .nebula-arrow-icon {
    transform: rotate(-45deg);
    margin-right: 5px;
  }
  
  /* Slider Dots */
  .nebula-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }
  
  .nebula-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(253, 246, 236, 0.5);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .nebula-dot:hover {
    background-color: rgba(255, 107, 107, 0.8);
  }
  
  .nebula-dot.active {
    background-color: #ee353c;
    transform: scale(1.2);
  }
  
  /* Progress Bar */
  .nebula-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(253, 246, 236, 0.2);
    z-index: 5;
  }
  
  .nebula-progress-bar {
    height: 100%;
    background-color: #ee353c;
    width: 0;
    transition: width 0.5s linear;
  }
  
  /* Video Controls */
  .nebula-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    z-index: 5;
  }
  
  .nebula-play-button:hover {
    background-color: #ee353c;
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .nebula-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #FDF6EC;
    margin-left: 5px;
  }
  
  .nebula-play-button[data-state="pause"] .nebula-play-icon {
    width: 20px;
    height: 25px;
    border-style: double;
    border-width: 0px 0px 0px 20px;
    border-color: #FDF6EC;
    margin-left: 0;
  }
  
  .nebula-video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .nebula-portfolio-content:hover .nebula-video-controls {
    opacity: 1;
  }
  
  .nebula-video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    backdrop-filter: blur(5px);
  }
  
  .nebula-video-btn:hover {
    background-color: #ee353c;
  }
  
  .nebula-fullscreen-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #FDF6EC;
    position: relative;
  }
  
  .nebula-fullscreen-icon::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-right: 2px solid #FDF6EC;
    border-bottom: 2px solid #FDF6EC;
    right: -4px;
    bottom: -4px;
  }
  
  /* Modal */
  .nebula-modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
    overflow: auto;
  }
  
  .nebula-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
  }
  
  .nebula-modal-image {
    object-fit: contain;
  }
  
  .nebula-close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FDF6EC;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s;
  }
  
  .nebula-close-modal:hover {
    color: #ee353c;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .nebula-slider {
      height: 70vh;
    }
    
    .nebula-title {
      font-size: 2.8rem;
    }
    
    .nebula-item-title {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .nebula-container {
      padding: 1rem;
    }
    
    .nebula-header {
      margin-bottom: 2rem;
    }
    
    .nebula-title {
      font-size: 2.2rem;
    }
    
    .nebula-subtitle {
      font-size: 1rem;
    }
    
    .nebula-slider {
      height: 60vh;
    }
    
    .nebula-arrow {
      width: 40px;
      height: 40px;
    }
    
    .nebula-play-button {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 576px) {
    .nebula-title {
      font-size: 1.8rem;
    }
    
    .nebula-slider {
      height: 50vh;
    }
    
    .nebula-item-title {
      font-size: 1.2rem;
    }
    
    .nebula-item-description {
      font-size: 0.9rem;
    }
    
    .nebula-play-button {
      width: 50px;
      height: 50px;
    }
    
    .nebula-play-icon {
      border-width: 10px 0 10px 18px;
    }
  }
  * {
    margin: 0;
    padding: 0;
     box-sizing: border-box;
    }
    
    body {
    font-family: 'Poppins', sans-serif;
    background-color: #1E1E1E;
    color: #FDF6EC;
    line-height: 1.6;
    }
    
    .vs-services-wrapper {
    width: 100%;
    padding: 100px 20px;
    background: #1E1E1E;
    }
    
    .vs-container {
    max-width: 1200px;
    margin: 0 auto;
    }
    
    .vs-header {
    text-align: center;
    margin-bottom: 60px;
    }
    
    .vs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #FDF6EC;
    letter-spacing: -1px;
    }
    
    .vs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ee353c;
    border-radius: 2px;
    }
    
    .vs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1000px;
    }
    
    .vs-card {
    background: #2A2A2A;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .vs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
    }
    
    .vs-card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    }
    
    .vs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    }
    
    .vs-card:hover .vs-card-image img {
    transform: scale(1.1);
    }
    
    .vs-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.9), transparent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    }
    
    .vs-card:hover .vs-card-overlay {
    opacity: 0.5;
    }
    
    .vs-card-content {
    padding: 25px;
    position: relative;
    }
    
    .vs-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ee353c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .vs-card:hover .vs-icon-wrapper {
    transform: translateY(-5px) rotate(10deg);
    background: #FF8E8E;
    }
    
    .vs-icon {
    font-size: 1.5rem;
    color: #1E1E1E;
    }
    
    .vs-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FDF6EC;
    letter-spacing: -0.5px;
    }
    
    .vs-service-desc {
    color: #E5DFD6;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    }
    
    .vs-cta-section {
    text-align: center;
    margin-top: 80px;
    background: #2A2A2A;
    padding: 60px 40px;
    border-radius: 20px;
    color: #FDF6EC;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.15);
    }
    
    .vs-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    animation: ctaShine 8s linear infinite;
    }
    
    @keyframes ctaShine {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
    }
    
    .vs-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
    color: #FDF6EC;
    }
    
    .vs-cta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 40px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #E5DFD6;
    }
    
    .vs-cta-button {
    background: #ee353c;
    color: #1E1E1E;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    }
    
    .vs-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #FF8E8E;
    }
    
    .vs-cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    }
    
    .vs-cta-button:hover i {
    transform: translateX(5px);
    }
    
    .vs-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(30, 30, 30, 0.7);
    color: #FDF6EC;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    }
    
    @media (max-width: 768px) {
    .vs-services-wrapper {
    padding: 60px 20px;
    }
    
    .vs-title {
    font-size: 2.5rem;
    }
    
    .vs-grid {
    gap: 20px;
    }
    
    .vs-cta-title {
    font-size: 2rem;
    }
    
    .vs-cta-section {
    padding: 40px 20px;
    }
    
    .vs-card-image {
    height: 180px;
    }
    }

    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #1E1E1E;
        color: #FDF6EC;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    a {
        text-decoration: none;
        color: #FDF6EC;
        transition: all 0.3s ease;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 15px;
        font-weight: 700;
        color: #FDF6EC;
        line-height: 1.3;
    }
    
    p {
        margin-bottom: 20px;
        color: rgba(253, 246, 236, 0.9);
    }
    
    .portfolio-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .portfolio-section {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-section-subtitle {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #ee353c;
        margin-bottom: 15px;
        display: block;
        position: relative;
        padding-left: 45px;
    }
    
    .portfolio-section-subtitle::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 35px;
        height: 1px;
        background-color: #ee353c;
    }
    
    .portfolio-section-title {
        font-size: 42px;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }
    
    .portfolio-section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #ee353c;
    }
    
    .portfolio-btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 0.4s ease;
        border: none;
        cursor: pointer;
        font-size: 14px;
    }
    
    .portfolio-btn-primary {
        background-color: #ee353c;
        color: #FDF6EC;
    }
    
    .portfolio-btn-primary:hover {
        background-color: #ff8383;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    }
    
    .portfolio-btn-outline {
        background-color: transparent;
        color: #FDF6EC;
        border: 2px solid rgba(255, 107, 107, 0.7);
    }
    
    .portfolio-btn-outline:hover {
        background-color: rgba(255, 107, 107, 0.1);
        border-color: #ee353c;
        transform: translateY(-3px);
    }
    
    /* Hero Section */
    .filmmaker-hero {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .filmmaker-hero-slider {
        height: 100%;
        position: relative;
    }
    
    .filmmaker-hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
        z-index: 1;
    }
    
    .filmmaker-hero-slide.active {
        opacity: 1;
        z-index: 2;
    }
    
    .filmmaker-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .filmmaker-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.5));
        z-index: 1;
    }
    
    .filmmaker-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.1);
        transition: transform 10s ease;
    }
    
    .filmmaker-hero-slide.active .filmmaker-hero-image {
        transform: scale(1);
    }
    
    .filmmaker-content-box {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        max-width: 650px;
        z-index: 3;
        opacity: 0;
        transition: all 0.8s ease 0.3s;
    }
    
    .filmmaker-hero-slide.active .filmmaker-content-box {
        opacity: 1;
        transform: translateY(-50%);
    }
    
    .filmmaker-hero-subtitle {
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #ee353c;
        margin-bottom: 20px;
        display: block;
        position: relative;
        padding-left: 50px;
    }
    
    .filmmaker-hero-subtitle::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 40px;
        height: 1px;
        background-color: #ee353c;
    }
    
    .filmmaker-hero-title {
        font-size: 58px;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .filmmaker-hero-description {
        font-size: 18px;
        margin-bottom: 35px;
        max-width: 80%;
    }
    
    .filmmaker-hero-buttons {
        display: flex;
        gap: 20px;
    }
    
    .filmmaker-slider-controls {
        position: absolute;
        bottom: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 10;
    }
    
    .filmmaker-slider-dots {
        display: flex;
        justify-content: center;
    }
    
    .filmmaker-slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(253, 246, 236, 0.3);
        margin: 0 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filmmaker-slider-dot.active {
        background-color: #ee353c;
        transform: scale(1.3);
    }
    
    .filmmaker-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(30, 30, 30, 0.5);
        border: 1px solid rgba(253, 246, 236, 0.2);
        color: #FDF6EC;
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .filmmaker-slider-btn:hover {
        background-color: rgba(255, 107, 107, 0.8);
        border-color: transparent;
    }
    
    .filmmaker-slider-btn.prev {
        left: 30px;
    }
    
    .filmmaker-slider-btn.next {
        right: 30px;
    }
    
    /* About Section */
    .filmmaker-about {
        position: relative;
    }
    
    .filmmaker-about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/api/placeholder/1200/800') center/cover no-repeat fixed;
        opacity: 0.05;
        z-index: 0;
    }
    
    .filmmaker-about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    .filmmaker-about-content h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .filmmaker-about-text {
        margin-bottom: 20px;
        line-height: 1.8;
    }
    
    .filmmaker-about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .filmmaker-stat-item {
        text-align: center;
        padding: 30px 15px;
        background-color: rgba(255, 107, 107, 0.08);
        border-radius: 10px;
        transition: all 0.3s ease;
        transform: translateY(30px);
        opacity: 0;
    }
    
    .filmmaker-stat-item.visible {
        transform: translateY(0);
        opacity: 1;
    }
    
    .filmmaker-stat-item:hover {
        transform: translateY(-10px);
        background-color: rgba(255, 107, 107, 0.15);
    }
    
    .filmmaker-stat-number {
        font-size: 40px;
        font-weight: 700;
        color: #ee353c;
        margin-bottom: 10px;
    }
    
    .filmmaker-stat-title {
        font-size: 16px;
        font-weight: 500;
    }
    
    .filmmaker-about-image {
        position: relative;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .filmmaker-about-image.visible {
        transform: translateY(0);
        opacity: 1;
    }
    
    .filmmaker-about-img {
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 2;
    }
    
    .filmmaker-about-img-decoration {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid #ee353c;
        border-radius: 10px;
        top: 20px;
        left: 20px;
        z-index: 1;
    }
    
    /* Services Section */
    .filmmaker-services {
        position: relative;
        background-color: #1a1a1a;
    }
    
    .filmmaker-services::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: url('/api/placeholder/800/1200') center/cover no-repeat;
        opacity: 0.05;
        z-index: 0;
    }
    
    .filmmaker-services-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .filmmaker-service-card {
        padding: 40px 30px;
        background-color: rgba(40, 40, 40, 0.6);
        border-radius: 15px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        transform: translateY(30px);
        opacity: 0;
        border: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .filmmaker-service-card.visible {
        transform: translateY(0);
        opacity: 1;
    }
    
    .filmmaker-service-card:hover {
        transform: translateY(-10px);
        background-color: rgba(40, 40, 40, 0.9);
        border-color: rgba(255, 107, 107, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .filmmaker-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #ee353c, #ff8383);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    .filmmaker-service-card:hover::before {
        transform: scaleX(1);
    }
    
    .filmmaker-service-icon-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .filmmaker-service-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 107, 107, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #ee353c;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }
    
    .filmmaker-service-card:hover .filmmaker-service-icon {
        background-color: #ee353c;
        color: #FDF6EC;
        transform: scale(1.1);
    }
    
    .filmmaker-service-icon-bg {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px dashed rgba(255, 107, 107, 0.4);
        z-index: 1;
        transition: all 0.4s ease;
    }
    
    .filmmaker-service-card:hover .filmmaker-service-icon-bg {
        transform: scale(1.2) rotate(45deg);
        border-color: rgba(255, 107, 107, 0.8);
    }
    
    .filmmaker-service-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .filmmaker-service-description {
        margin-bottom: 20px;
        color: rgba(253, 246, 236, 0.8);
    }
    
    .filmmaker-service-features {
        list-style: none;
        margin-bottom: 25px;
    }
    
    .filmmaker-service-features li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        color: rgba(253, 246, 236, 0.7);
    }
    
    .filmmaker-service-features li i {
        color: #ee353c;
        margin-right: 10px;
        font-size: 14px;
    }
    
    .filmmaker-service-cta {
        display: inline-block;
        color: #ee353c;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .filmmaker-service-cta i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .filmmaker-service-cta:hover {
        color: #ff8383;
    }
    
    .filmmaker-service-cta:hover i {
        transform: translateX(5px);
    }
    
    .filmmaker-services-cta {
        text-align: center;
        padding: 50px 30px;
        background-color: rgba(255, 107, 107, 0.08);
        border-radius: 15px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .filmmaker-services-cta.visible {
        transform: translateY(0);
        opacity: 1;
    }
    
    .filmmaker-services-cta h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .filmmaker-services-cta p {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    /* Projects Section */
    .filmmaker-projects {
        position: relative;
    }
    
    .filmmaker-projects-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
        gap: 15px;
    }
    
    .filmmaker-filter-btn {
        padding: 10px 25px;
        background-color: transparent;
        border: 1px solid rgba(255, 107, 107, 0.3);
        border-radius: 50px;
        color: #FDF6EC;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .filmmaker-filter-btn.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .filmmaker-filter-btn.active, .filmmaker-filter-btn:hover {
        background-color: #ee353c;
        border-color: #ee353c;
        color: #FDF6EC;
    }
    
    .filmmaker-projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .filmmaker-project-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 350px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }
    
    .filmmaker-project-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .filmmaker-project-image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .filmmaker-project-image img,
    .filmmaker-project-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .filmmaker-project-card:hover .filmmaker-project-image img,
    .filmmaker-project-card:hover .filmmaker-project-image video {
        transform: scale(1.1);
    }
    
    .filmmaker-project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(to top, rgba(30, 30, 30, 0.95), transparent);
        transform: translateY(80px);
        transition: all 0.5s ease;
    }
    
    .filmmaker-project-card:hover .filmmaker-project-overlay {
        transform: translateY(0);
    }
    
    .filmmaker-project-category {
        display: inline-block;
        padding: 6px 15px;
        background-color: #ee353c;
        color: #FDF6EC;
        font-size: 12px;
        font-weight: 600;
        border-radius: 50px;
        margin-bottom: 15px;
    }
    
    .filmmaker-project-title {
        font-size: 22px;
        margin-bottom: 10px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease 0.1s;
    }
    
    .filmmaker-project-description {
        color: rgba(253, 246, 236, 0.8);
        margin-bottom: 15px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease 0.2s;
    }
    
    .filmmaker-project-link {
        color: #ee353c;
        font-weight: 600;
        font-size: 14px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease 0.3s;
        display: inline-block;
    }
    
    .filmmaker-project-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .filmmaker-project-link:hover {
        color: #ff8383;
    }
    
    .filmmaker-project-link:hover i {
        transform: translateX(5px);
    }
    
    .filmmaker-project-card:hover .filmmaker-project-title,
    .filmmaker-project-card:hover .filmmaker-project-description,
    .filmmaker-project-card:hover .filmmaker-project-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    .filmmaker-view-more {
        text-align: center;
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .filmmaker-view-more.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Testimonials Section */
    .filmmaker-testimonials {
        position: relative;
        background-color: #1a1a1a;
    }
    
    .filmmaker-testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/api/placeholder/1200/800') center/cover no-repeat fixed;
        opacity: 0.03;
        z-index: 0;
    }
    
    .filmmaker-testimonial-slider-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto 80px;
    }
    
    .filmmaker-testimonial-slider {
        position: relative;
        overflow: hidden;
        min-height: 350px;
    }
    
    .filmmaker-testimonial-slide {
        position: absolute;
        width: 100%;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.5s ease;
        padding: 20px 0;
    }
    
    .filmmaker-testimonial-slide.active {
        opacity: 1;
        transform: scale(1);
        position: relative;
    }
    
    .filmmaker-testimonial-card {
        background-color: rgba(40, 40, 40, 0.6);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .filmmaker-testimonial-rating {
        margin-bottom: 20px;
    }
    
    .filmmaker-testimonial-rating i {
        color: #ee353c;
        margin-right: 5px;
    }
    
    .filmmaker-testimonial-content {
        position: relative;
        margin-bottom: 30px;
    }
    
    .filmmaker-testimonial-quote-icon {
        position: absolute;
        top: -10px;
        left: -10px;
        color: rgba(255, 107, 107, 0.1);
        font-size: 60px;
        z-index: 1;
    }
    
    .filmmaker-testimonial-text {
        position: relative;
        z-index: 2;
        font-style: italic;
        color: rgba(253, 246, 236, 0.9);
        line-height: 1.8;
    }
    
    .filmmaker-testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .filmmaker-author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        border: 3px solid rgba(255, 107, 107, 0.3);
    }
    
    .filmmaker-author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .filmmaker-author-info {
        flex: 1;
    }
    
    .filmmaker-author-name {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .filmmaker-author-position {
        font-size: 14px;
        color: rgba(253, 246, 236, 0.7);
    }
    
    .filmmaker-testimonial-logo {
        margin-left: auto;
        opacity: 0.6;
        transition: all 0.3s ease;
    }
    
    .filmmaker-testimonial-logo:hover {
        opacity: 1;
    }
    
    .filmmaker-testimonial-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
    
    .filmmaker-testimonial-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: rgba(40, 40, 40, 0.8);
        border: 1px solid rgba(255, 107, 107, 0.3);
        color: #FDF6EC;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filmmaker-testimonial-btn:hover {
        background-color: #ee353c;
        border-color: transparent;
    }
    
    .filmmaker-testimonial-dots {
        display: flex;
        margin: 0 20px;
    }
    
    .filmmaker-testimonial-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(253, 246, 236, 0.2);
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filmmaker-testimonial-dot.active {
        background-color: #ee353c;
        transform: scale(1.3);
    }
    
    .filmmaker-testimonial-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }
    
    .filmmaker-testimonial-stat-item {
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }
    
    .filmmaker-testimonial-stat-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .filmmaker-testimonial-stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #ee353c;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }
    
    .filmmaker-testimonial-stat-number::after {
        content: '+';
        position: absolute;
        top: 0;
        right: -20px;
        font-size: 30px;
        color: rgba(255, 107, 107, 0.7);
    }
    
    .filmmaker-testimonial-stat-label {
        font-size: 16px;
        font-weight: 500;
    }
    
    .filmmaker-testimonial-cta {
        text-align: center;
        padding: 50px 30px;
        background-color: rgba(255, 107, 107, 0.08);
        border-radius: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .filmmaker-testimonial-cta.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .filmmaker-testimonial-cta h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .filmmaker-testimonial-cta p {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    /* Blog Section */
    .filmmaker-blog {
        position: relative;
    }
    
    .filmmaker-blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .filmmaker-blog-card {
        background-color: rgba(40, 40, 40, 0.6);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(30px);
        border: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .filmmaker-blog-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .filmmaker-blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 107, 107, 0.3);
    }
    
    .filmmaker-blog-image {
        height: 220px;
        overflow: hidden;
    }
    
    .filmmaker-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .filmmaker-blog-card:hover .filmmaker-blog-image img {
        transform: scale(1.1);
    }
    
    .filmmaker-blog-content {
        padding: 30px;
    }
    
    .filmmaker-blog-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    
    .filmmaker-blog-category {
        font-size: 12px;
        font-weight: 600;
        color: #ee353c;
    }
    
    .filmmaker-blog-date {
        font-size: 12px;
        color: rgba(253, 246, 236, 0.7);
    }
    
    .filmmaker-blog-title {
        font-size: 22px;
    }

    
/* Contact page wrapper */
.contact-page-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Container for contact form and info */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }
  
  /* Contact info section */
  .contact-info-section {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.9), rgba(40, 40, 40, 0.9));
    border-radius: 20px 0 0 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* 3D image in contact info section */
  .contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 20C63.2548 20 74 30.7452 74 44C74 57.2548 63.2548 68 50 68C36.7452 68 26 57.2548 26 44C26 30.7452 36.7452 20 50 20Z' fill='%23FF6B6B' fill-opacity='0.05'/%3E%3Cpath d='M50 25C60.4934 25 69 33.5066 69 44C69 54.4934 60.4934 63 50 63C39.5066 63 31 54.4934 31 44C31 33.5066 39.5066 25 50 25Z' fill='%23FF6B6B' fill-opacity='0.07'/%3E%3Cpath d='M50 30C57.732 30 64 36.268 64 44C64 51.732 57.732 58 50 58C42.268 58 36 51.732 36 44C36 36.268 42.268 30 50 30Z' fill='%23FF6B6B' fill-opacity='0.09'/%3E%3C/svg%3E") repeat;
    opacity: 0.4;
    z-index: 0;
    animation: movePattern 20s linear infinite;
    pointer-events: none;
  }
  
  /* Contact form section */
  .contact-form-section {
    flex: 1.5;
    min-width: 300px;
    padding: 50px 40px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8), rgba(35, 35, 35, 0.8));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Titles */
  .contact-info-title, .contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FDF6EC;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
  }
  
  /* Description */
  .contact-info-description {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #FDF6EC;
    opacity: 0.9;
  }
  
  /* Contact detail items - with 3D effect */
  .contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 15px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3),
                -5px -5px 10px rgba(40, 40, 40, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease-out;
    font-size: 1rem;
    color: #FDF6EC;
  }
  
  .contact-detail-item:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.4),
                -8px -8px 15px rgba(40, 40, 40, 0.3);
  }
  
  /* Contact detail icons */
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ee353c, #ff8585);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    transform: translateZ(10px);
  }
  
  .contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: #FDF6EC;
  }
  
  /* Social media links */
  .social-media-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }
  
  .social-media-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3),
                -3px -3px 6px rgba(40, 40, 40, 0.2);
    transition: all 0.3s ease;
  }
  
  .social-media-link:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #ee353c, #ff8585);
  }
  
  .social-media-icon {
    width: 20px;
    height: 20px;
    fill: #FDF6EC;
    transition: all 0.3s ease;
  }
  
  .social-media-link:hover .social-media-icon {
    fill: #FDF6EC;
  }
  
  /* Form fields */
  .form-field-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-field-group {
    flex: 1;
    position: relative;
    margin-bottom: 25px;
  }
  
  .form-field-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #FDF6EC;
    font-weight: 500;
  }
  
  .form-field-input,
  .form-field-select,
  .form-field-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(50, 50, 50, 0.7);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    color: #FDF6EC;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2),
                0 1px 2px rgba(255, 255, 255, 0.05);
  }
  
  .form-field-textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-field-input:focus,
  .form-field-select:focus,
  .form-field-textarea:focus {
    outline: none;
    border-color: #ee353c;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  }
  
  .input-focus-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ee353c, #ff8585);
    transition: width 0.3s ease;
  }
  
  .form-field-input:focus + .input-focus-indicator,
  .form-field-select:focus + .input-focus-indicator,
  .form-field-textarea:focus + .input-focus-indicator {
    width: 100%;
  }
  
  /* Submit button */
  .contact-submit-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(145deg, #ee353c, #ff8585);
    border: none;
    border-radius: 10px;
    color: #FDF6EC;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  }
  
  .contact-submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(145deg, #ff8585, #ee353c);
  }
  
  /* Success message */
  .contact-success-message {
    padding: 15px;
    background-color: rgba(39, 174, 96, 0.2);
    border-left: 4px solid #27AE60;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #FDF6EC;
    display: none;
  }
  
  /* Large header for contact page */
  .contact-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    z-index: 5;
  }
  
  .contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FDF6EC;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 
                 0 0 30px rgba(255, 107, 107, 0.3);
    margin: 0;
    position: relative;
    display: inline-block;
  }
  
  .contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ee353c, transparent);
    border-radius: 2px;
  }
  
  /* Decorative elements */
  .gradient-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ee353c, transparent);
    opacity: 0.3;
    z-index: 1;
  }
  
  .gradient-line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    animation: float 8s ease-in-out infinite;
  }
  
  .gradient-line-2 {
    top: 40%;
    left: 0;
    width: 80%;
    animation: float 12s ease-in-out infinite;
  }
  
  .gradient-line-3 {
    top: 60%;
    left: 20%;
    width: 60%;
    animation: float 10s ease-in-out infinite reverse;
  }
  
  /* Animated bubbles */
  .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1), 
                0 0 15px rgba(255, 107, 107, 0.2);
    backdrop-filter: blur(2px);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .bubble-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 5%;
    animation: floatBubble 18s ease-in-out infinite;
  }
  
  .bubble-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 15%;
    animation: floatBubble 22s ease-in-out infinite 2s;
  }
  
  .bubble-3 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: 10%;
    animation: floatBubble 25s ease-in-out infinite 1s;
  }
  
  .bubble-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
    animation: floatBubble 20s ease-in-out infinite 3s;
  }
  
  .bubble-5 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation: floatBubble 15s ease-in-out infinite 1.5s;
  }
  
  .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
  }
  
  .orb-1 {
    top: 30%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), transparent 70%);
    animation: pulse 10s infinite alternate;
  }
  
  .orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
    animation: pulse 15s infinite alternate-reverse;
  }
  
  /* Animation keyframes */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(15px);
    }
  }
  
  @keyframes pulse {
    0% {
      opacity: 0.3;
      transform: scale(0.8);
    }
    100% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }
  
  @keyframes floatBubble {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
      transform: translate(0, -50px) rotate(0deg);
    }
    75% {
      transform: translate(-30px, -20px) rotate(-5deg);
    }
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }
  
  @keyframes movePattern {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100px 100px;
    }
  }
  
  /* Reveal animation */
  .reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  
  .reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-info-section,
    .contact-form-section {
      width: 100%;
      border-radius: 20px;
      margin-bottom: 30px;
    }
    
    .contact-info-section {
      border-radius: 20px 20px 0 0;
    }
    
    .contact-form-section {
      border-radius: 0 0 20px 20px;
    }
  }
  
  @media (max-width: 768px) {
    .form-field-row {
      flex-direction: column;
      gap: 0;
    }
    
    .contact-page-wrapper {
      padding: 40px 15px;
    }
    
    .contact-info-section,
    .contact-form-section {
      padding: 30px 20px;
    }
    
    .contact-info-title,
    .contact-form-title {
      font-size: 2rem;
    }
  }

/* Blur effect for the page */
#page-wrapper.blurred {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

/* Popup styling */
#popup-message {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: none;
}

/* Message box itself */
#popup-message::before {
  content: 'Welcome to Dona Media!';
  color: #FDF6EC;
  font-size: 3rem;
  font-weight: bold;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  font-family: 'Segoe UI', sans-serif;
}
