* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #d41a3e;
    --secondary-color: #fccc50;
    --primary-gradient: linear-gradient(135deg, #d41a3e 0%, #fdd45f 100%);
    --secondary-gradient: linear-gradient(135deg, #fdd45f 0%, #d41a3e 100%);
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --background: #fefefe;
    --card-shadow: 0 20px 40px rgba(207, 19, 56, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
  }
  
  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Loading Screen */
  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cf1338 0%, #fccc50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loading-content {
    text-align: center;
    color: white;
  }
  
  .loading-hearts {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .loading-heart {
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    animation: loadingPulse 1.5s ease-in-out infinite;
  }
  
  .loading-heart::before,
  .loading-heart::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
  }
  
  .loading-heart::before {
    top: -10px;
    left: 0;
  }
  
  .loading-heart::after {
    top: 0;
    left: -10px;
  }
  
  .loading-heart:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .loading-heart:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes loadingPulse {
    0%,
    100% {
      transform: rotate(45deg) scale(1);
      opacity: 1;
    }
    50% {
      transform: rotate(45deg) scale(1.2);
      opacity: 0.7;
    }
  }
  
  .loading-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .loading-progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
  }
  
  @keyframes loadingProgress {
    0% {
      width: 0%;
    }
    50% {
      width: 70%;
    }
    100% {
      width: 100%;
    }
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(207, 19, 56, 0.1);
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* .logo-icon {
    animation: heartBeat 2s ease-in-out infinite;
  }
  
  @keyframes heartBeat {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  } */
  
  .nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .register-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 19, 56, 0.3);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 19, 56, 0.05) 0%, rgba(252, 204, 80, 0.05) 100%);
  }
  
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .floating-heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    transform: rotate(45deg);
    opacity: 0.3;
    animation: floatHeart 8s ease-in-out infinite;
  }
  
  .floating-heart::before,
  .floating-heart::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
  }
  
  .floating-heart::before {
    top: -10px;
    left: 0;
  }
  
  .floating-heart::after {
    top: 0;
    left: -10px;
  }
  
  .heart-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  .heart-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
  }
  .heart-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
  }
  .heart-4 {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
  }
  .heart-5 {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
  }
  
  .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.2;
    animation: floatCircle 10s ease-in-out infinite;
  }
  
  .circle-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .circle-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
  }
  
  .circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 5s;
  }
  
  @keyframes floatHeart {
    0%,
    100% {
      transform: rotate(45deg) translateY(0px);
      opacity: 0.3;
    }
    50% {
      transform: rotate(45deg) translateY(-30px);
      opacity: 0.7;
    }
  }
  
  @keyframes floatCircle {
    0%,
    100% {
      transform: translateY(0px) scale(1);
    }
    50% {
      transform: translateY(-20px) scale(1.1);
    }
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    background: rgba(252, 204, 80, 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(207, 19, 56, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
  }
  
  .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
  }
  
  .typing-text::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0;
    }
  }
  
  .subtitle {
    font-size: 0.4em;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.5rem;
    display: block;
  }
  
  .tagline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .tag {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    animation: tagGlow 3s ease-in-out infinite;
  }
  
  .tag:nth-child(2) {
    animation-delay: 1s;
  }
  .tag:nth-child(3) {
    animation-delay: 2s;
  }
  
  @keyframes tagGlow {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 19, 56, 0.4);
  }
  
  .cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 48%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
  }
  
  .scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
  }
  
  @keyframes scrollWheel {
    0% {
      top: 6px;
      opacity: 1;
    }
    100% {
      top: 24px;
      opacity: 0;
    }
  }
  
  /* Expectations Section */
  .expectations {
    padding: 6rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .expectation-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(207, 19, 56, 0.1);
  }
  
  .expectation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(207, 19, 56, 0.2);
  }
  
  .card-icon {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .icon-bg {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    transition: var(--transition);
  }
  
  .expectation-card:hover .icon-bg {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .emoji {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    display: block;
  }
  
  .expectation-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .expectation-card p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 204, 80, 0.1), transparent);
    transition: var(--transition);
  }
  
  .expectation-card:hover .card-hover-effect {
    left: 100%;
  }
  
  /* Past Events Section */
  .past-events {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, rgba(252, 204, 80, 0.02) 100%);
  }
  
  .events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(207, 19, 56, 0.2);
  }
  
  .image-container {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(207, 19, 56, 0.8), rgba(252, 204, 80, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .gallery-item:hover .image-overlay {
    opacity: 1;
  }
  
  .overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
  }
  
  .overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* Next Event Section */
  .next-event {
    padding: 6rem 0;
    background: white;
  }
  
  .event-card {
    background: var(--primary-gradient);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .event-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .event-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  
  .event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  
  .detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .detail-content {
    text-align: left;
  }
  
  .detail-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
  }
  
  .detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .waitlist-section {
    margin-top: 2rem;
  }
  
  .waitlist-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .event-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.1;
  }
  
  .decoration-circle {
    width: 100%;
    height: 100%;
    border: 3px solid white;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
  }
  
  .decoration-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: white;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .decoration-heart::before,
  .decoration-heart::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
  }
  
  .decoration-heart::before {
    top: -15px;
    left: 0;
  }
  
  .decoration-heart::after {
    top: 0;
    left: -15px;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, rgba(207, 19, 56, 0.02) 100%);
  }
  
  .contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .contact p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
  }
  
  .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-gradient);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .phone-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(252, 204, 80, 0.4);
  }
  
  .phone-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Modal Styles */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: var(--transition);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
  }
  
  .modal-overlay.active .modal {
    transform: scale(1) translateY(0);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(207, 19, 56, 0.1);
  }
  
  .modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
  }
  
  .close-btn:hover {
    color: var(--primary-color);
    background: rgba(207, 19, 56, 0.1);
  }
  
  .registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .form-group input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    background: transparent;
    transition: var(--transition);
    outline: none;
  }
  
  .form-group input:focus {
    border-bottom-color: var(--primary-color);
  }
  
  .form-group input:focus + .input-line,
  .form-group input:valid + .input-line {
    width: 100%;
  }
  
  .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
  }
  
  .submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(207, 19, 56, 0.3);
  }
  
  .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  .btn-text {
    transition: var(--transition);
  }
  
  .btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
  }
  
  .submit-btn.loading .btn-text {
    opacity: 0;
  }
  
  .submit-btn.loading .btn-loader {
    opacity: 1;
  }
  
  .loader-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Success Modal */
  .success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
  }
  
  .success-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .success-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: var(--transition);
  }
  
  .success-modal.active .success-content {
    transform: scale(1);
  }
  
  .success-icon {
    margin-bottom: 1.5rem;
    animation: successPulse 0.6s ease-out;
  }
  
  @keyframes successPulse {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .success-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .success-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .success-btn {
    background: var(--secondary-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 204, 80, 0.3);
  }
  
  /* Footer */
  .footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-brand {
    max-width: 300px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-link {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
  }
  
  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  
  .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(207, 19, 56, 0.3);
  }
  
  /* Ripple Effect */
  .btn-ripple,
  .phone-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
  }
  
  @keyframes ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text img{
  height: 225px;
  object-fit: contain;
}

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: fixed;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
  
    .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  
    .hero-title {
      font-size: 3rem;
    }
  
    .tagline {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .expectations-grid {
      grid-template-columns: 1fr;
    }
  
    .events-gallery {
      grid-template-columns: 1fr;
    }
  
    .event-details {
      grid-template-columns: 1fr;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
  
    .footer-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .hero-content {
      padding: 0 15px;
    }
  
    .event-card {
      padding: 2rem 1.5rem;
    }
  
    .modal {
      padding: 1.5rem;
      width: 95%;
    }
  
    .expectation-card {
      padding: 2rem;
    }
    .nav-logo img {
      height: 77px;
    position: absolute;
    top: 0px;
    }
    .scroll-indicator {
      position: absolute;
      bottom: 0rem;
      left: 34%;
    }
    .footer-logo {
      justify-content: center;
    }
    .hero-text img {
      height: 150px;
    }
    .hero-description {
      font-size: 1rem;
      margin: 0 auto 1rem;
    }

  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
  }
  
  /* Selection */
  ::selection {
    background: var(--primary-color);
    color: white;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Focus styles for accessibility */
  button:focus,
  input:focus,
  a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Print styles */
  @media print {
    .navbar,
    .scroll-to-top,
    .modal-overlay,
    .success-modal,
    .loading-screen {
      display: none !important;
    }
  }
  