
/* =========================================
   Combined CSS: style.css
   Sections: Global, Index, About, Event, Contact
   ========================================= */

/* ========== INDEX (Main Styles) ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e70000;
    --bright-red:  #890000;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --light-text: #FFFFFF;
    --gray-text: #A1A1AA;
    --accent-gray: #1A1A1A;
    --card-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000, #8B0000); /* black to dark red */
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.98);
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 2001;
    padding: 10px;
    background: #222;
    border-radius: 6px;
    position: relative;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sidebar */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    overflow-y: auto;
    background-color: #000;
    padding: 100px 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-menu .nav-menu {
    flex-direction: column;
    gap: 1rem;
}

.sidebar-menu .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
    color: #fff;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .sidebar-menu {
        display: block;
    }
}



 /* Sections - Removed sticky positioning */
 .section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
#home {
    background-image: url("/assets/user/images/index1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tablet (max width 1024px) */

/* Mobile (max width 768px) */
@media (max-width: 768px) {
    #home {
    background: linear-gradient(135deg, #000000 0%, #8B0000 100%);
    padding: 2rem 0;
}
}

/* Small mobile (max width 480px) */
@media (max-width: 480px) {
   #home {
    background: linear-gradient(135deg, #000000 0%, #8B0000 100%);
    padding: 2rem 0;
}
}
/* Hero Section */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 79%;
    padding-top: 110px;
    min-height: 19vh;
}

.hero-text {
    z-index: 2;
}

.hero-subtitle {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-description {
    color: var(--gray-text);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-btn:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.hero-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.hero-btn:hover::after {
    transform: translateX(4px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-desc {
    color: var(--gray-text);
    font-size: 0.8rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B91C1C 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.5s forwards;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

  /* Competitions Section */
.competitions-section {
    background: var(--darker-bg);
}

.competitions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.competitions-text {
    color: var(--light-text);
}

.competitions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.competition-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.competition-card:hover {
    transform: translateY(-8px);
}

.competition-info {
    flex: 1;
}

.competition-date {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.competition-title {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.competition-location {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.register-btn {
    background: var(--primary-red);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}

.register-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

  /* Contact Section */
  .contact-section {
    background: var(--dark-bg);
    padding: 6rem 0;
  }
  
  .contact-wrapper {
    display: flex;
    align-items: center;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
  }
  
  .contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    color: var(--light-text);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    width: 100%;
    padding: 0.875rem;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--gray-text);
  }
  
  .contact-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .contact-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
  }
  
  .contact-info {
    color: var(--light-text);
  }
  
  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-3px);
  }
  
  .contact-card h4 {
    color: var(--light-text);
    margin-bottom: 0.25rem;
  }
  
  .contact-card p {
    color: var(--gray-text);
    margin: 0;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-text);
    flex-shrink: 0;
  }
  
  /* Footer */
  .footer {
    width: 100%;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 10;
    margin-top: 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--light-text);
    letter-spacing: -1px;
  }
  
  .footer-tagline {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
  }
  
  .footer-section h4 {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--light-text);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-text);
    font-size: 0.9rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--primary-red);
    color: var(--light-text);
    transform: translateY(-2px);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
  
    
  
    .hero-content,
    .events-content,
    .contact-content {
      gap: 3rem;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 1rem 0;
    }
  
    .header.scrolled {
      padding: 0.75rem 0;
    }
  
  
    .container {
      padding: 0 1rem;
    }
  
    .section {
      padding: 4rem 0;
    }
  
    .hero-section {
      padding: 2rem 0 2rem 0;
    }
  
    .hero-content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;

    }
   
  
    .hero-image {
      order: -1;
      display: none;
    }
  
    .hero-visual {
      height: 300px;
      max-width: 400px;
    }
  
    .hero-features {
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
    }
  
    .feature-item {
      max-width: 250px;
      text-align: left;
      display: none;
    }
  
    .about-content,
    .events-content,
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  
    .events-text {
      text-align: center;
    }
  
    .event-card {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
  
    .event-info {
      min-width: auto;
    }
  
    .contact-form {
      padding: 2rem;
    }
  
    .stats-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
  
    .stat-item {
      padding: 1.5rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: left;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 0.75rem;
    }
  
    
    .hero-title {
      font-size: 2.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .section {
      padding: 3rem 0;
    }
  
    .hero-section {
      padding: 5rem 0 3rem 0;
    }
  
    .hero-visual {
      height: 250px;
      max-width: 300px;
    }
  
    .hero-features {
      gap: 1rem;
    }
  
    .feature-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  
    .contact-form {
      padding: 1.5rem;
    }
  
    .contact-card {
      padding: 1rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .stat-item {
      padding: 1rem;
    }
  
    .event-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 360px) {
    
    .hero-title {
      font-size: 2rem;
      line-height: 1.1;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .hero-btn {
      padding: 0.875rem 1.5rem;
      font-size: 0.9rem;
    }
  
    .contact-btn,
    .register-btn {
      padding: 0.75rem 1.25rem;
      font-size: 0.9rem;
    }
  
    .section {
      padding: 2rem 0;
    }
  
    .hero-section {
      padding: 4rem 0 2rem 0;
    }
  }
  
  @media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
      min-height: 100vh;
      padding: 4rem 0 1rem 0;
    }
  
    .hero-content {
      gap: 2rem;
    }
  
    .hero-visual {
      height: 200px;
    }
  
    .section {
      padding: 3rem 0;
    }
  
  }
  
  body.menu-open {
    overflow: hidden;
  }
  

/* ========== ABOUT PAGE ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
    --bright-red: #EF4444;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --light-text: #FFFFFF;
    --gray-text: #A1A1AA;
    --accent-gray: #1A1A1A;
    --card-bg: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb Hero Section */
.breadcrumb-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* Animated Background Effects */
.breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating Particles */
.breadcrumb-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(220, 38, 38, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(220, 38, 38, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(220, 38, 38, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.breadcrumb a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    color: var(--primary-red);
    font-weight: 600;
}

.breadcrumb-current {
    color: var(--light-text);
    font-weight: 500;
}

/* Page Title */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    animation: titleUnderline 2s ease-out;
}

@keyframes titleUnderline {
    0% { width: 0; opacity: 0; }
    100% { width: 80px; opacity: 1; }
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Geometric Shapes Animation */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(220, 38, 38, 0.2);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: rgba(220, 38, 38, 0.05);
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.7; }
}

/* Perks Section */
.perks-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.perks-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.perks-intro {
    position: sticky;
    top: 120px;
}

.perks-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.perks-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.perks-title span {
    color: var(--primary-red);
}

.perks-description {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.perk-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.perk-card:hover::before {
    transform: scaleX(1);
}

.perk-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.perk-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.perk-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-weight: 300;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
}

.story-content p {
    margin-bottom: 2rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Why Choose Us Section */
.choose-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.choose-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.choose-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.1;
}

.choose-title span {
    color: var(--primary-red);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    color: var(--gray-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-author {
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    color: var(--primary-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--darker-bg);
}

.cta-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--bright-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-hero {
        height: 35vh;
        min-height: 250px;
    }

    .perks-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .perks-intro {
        position: static;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .breadcrumb-hero {
        height: 30vh;
        min-height: 200px;
    }
}

/* ========== EVENT PAGE ========== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Breadcrumb Hero Section */
.breadcrumb-hero {
height: 40vh;
min-height: 300px;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
margin-top: 80px;
background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* Animated Background Effects */
.breadcrumb-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
0%, 100% { opacity: 0.6; transform: scale(1); }
50% { opacity: 1; transform: scale(1.05); }
}

/* Floating Particles */
.breadcrumb-hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: 
radial-gradient(2px 2px at 20px 30px, rgba(220, 38, 38, 0.3), transparent),
radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
radial-gradient(1px 1px at 90px 40px, rgba(220, 38, 38, 0.2), transparent),
radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.05), transparent),
radial-gradient(2px 2px at 160px 30px, rgba(220, 38, 38, 0.1), transparent);
background-repeat: repeat;
background-size: 200px 100px;
animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
0% { transform: translateY(0px) translateX(0px); }
100% { transform: translateY(-100px) translateX(50px); }
}

.breadcrumb-content {
position: relative;
z-index: 2;
width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
margin-bottom: 2rem;
}

.breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: var(--gray-text);
}

.breadcrumb a {
color: var(--gray-text);
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}

.breadcrumb a:hover {
color: var(--primary-red);
}

.breadcrumb a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--primary-red);
transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
width: 100%;
}

.breadcrumb-separator {
color: var(--primary-red);
font-weight: 600;
}

.breadcrumb-current {
color: var(--light-text);
font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.page-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.page-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-text), var(--gray-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description p {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 500px;
    line-height: 1.7;
}

.page-title {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-red);
    text-stroke: 2px var(--primary-red);
    opacity: 0.8;
}

/* Filter Section */
.filter-section {
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--card-bg);
    color: var(--gray-text);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
     background: linear-gradient(135deg, #890000, #ff0000);
    color: var(--light-text);
    border-color: var(--bright-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Events Grid */
.events-section {
    margin-bottom: 6rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--bright-red));
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}
.event-date-header {
    background: linear-gradient(135deg, #890000, #ff0000);
    color: var(--light-text);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* space between date and venue */
    font-weight: 600;
}

.event-date-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.event-date {
    font-size: 1.2rem;
    font-weight: 700;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
}

.event-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-category {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: var(--bright-red);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.3;
    min-height: 3.3rem;
}

.event-description {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom:0.5rem;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 4.8rem;
}

.event-info {
    margin-bottom:10px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.event-info-item i {
    color:  #ffffff;
    width: 16px;
    text-align: center;
}

.event-info-item span {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #890000, #ff0000);
    color: var(--light-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    min-height: 52px;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.register-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--accent-gray) 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--bright-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    color: var(--gray-text);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .page-title {
        font-size: 4rem;
    }

    .page-description h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

.hidden {
    display: none;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Success Animation */
@keyframes success {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-animation {
    animation: success 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 20%;
    max-width: 60px; /* optional: limits max logo size */
    height: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.services-section {
    padding: 100px 0;
    background-color: #000; /* Solid black background */
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #bbb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: #111;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    text-align: center;
    border-top: 5px solid transparent;
    min-height: 320px;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.service-description {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 2rem;
    min-height: 80px;
}

.service-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background-color: #7f1d1d; /* Dark red */
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background-color: #991b1b; /* Slightly lighter red on hover */
}

/* Unique top border for each card */
.service-card.kyu {
    border-top-color: #2563eb; /* Blue */
}
.service-card.competition {
    border-top-color: #dc2626; /* Red */
}
.service-card.camp {
    border-top-color: #16a34a; /* Green */
}

  
  /* Contact Section */
  .contact-section {
    padding: 80px 0;
    background-color: #000000;
  }
  
  .contact-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  
  .contact-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff4f4;
  }
  
  .contact-form p {
    color: #ffffff;
    margin-bottom: 30px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  
  .form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #ffffff;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: rgb(0, 0, 0);
    color:white;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
  }
  
  .submit-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .submit-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
  }
  
  /* Contact Info */
  .contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
  }
  
  .info-item {
    margin-bottom: 30px;
  }
  
  .info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #dc2626;
  }
  
  .info-item p {
    color: #666;
    line-height: 1.6;
  }
  
  
  /* Map Section */
  .map-section {
    padding: 60px 0;
    background-color: #000000;
  }
  
  .map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  
  .map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .map-placeholder:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
  }
  
  .map-marker {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .marker-icon {
    font-size: 24px;
  }
  
  .marker-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
  }
  
  .marker-info p {
    color: #666;
    font-size: 14px;
  }
  
  .map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
  }
  
  .map-overlay p {
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .map-overlay small {
    font-size: 12px;
    opacity: 0.8;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background-color: rgb(0, 0, 0);
    color:white;
  }
  
  .faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  
  .faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }
  
  .faq-item {
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 0;
  }
  
  .faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: #dc2626;
  }
  
  .faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #dc2626;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .faq-answer p {
    padding-bottom: 24px;
    color: #666;
    line-height: 1.6;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
  }
  
  .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background-color: white;
    color: #1a1a1a;
  }
  
  .btn-primary:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
  }
  
  .btn-secondary:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-2px);
  }
  
  .btn-icon {
    font-size: 18px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-content,
    .faq-content,
    .cta-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .contact-section h1,
    .faq-header h2,
    .cta-text h2 {
      font-size: 2rem;
    }
  
    .cta-content {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-buttons {
      flex-direction: column;
      width: 100%;
    }
  
    .btn-primary,
    .btn-secondary {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    
  
    .contact-section,
    .faq-section,
    .cta-section {
      padding: 40px 0;
    }
  
    .map-section {
      padding: 30px 0;
    }
  
    .map-container {
      height: 300px;
    }
  }
  /* ------------------------
   Header Mobile Toggle
-------------------------*/

/* Whatsapp button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;      /* distance from bottom */
    right: 20px;       /* distance from right */
    z-index: 9999;     /* stays on top */
    background: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s ease-in-out;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.whatsapp-button img {
    width: 40px;
    height: 40px;
    display: block;
}
/* Endof Whatsapp button */