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

:root {
    --black: #0B0B0B;
    --red: #C1121F;
    --red-dark: #9B0E19;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --white: #FFFFFF;
    --gray: #1E1E1E;
    --gray-light: #2A2A2A;
    --gray-text: #A0A0A0;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-accent {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.2rem 0;
    transition: all 0.4s;
}

#navbar.scrolled {
    background: rgba(11, 11, 11, 0.3);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
    height: 100px;
    width: auto;
}

.nav-logo:hover img {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.7) 50%, rgba(11,11,11,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 6rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-line {
    display: block;
    font-size: 6rem;
    letter-spacing: 4px;
}

.hero-accent {
    color: var(--red);
    -webkit-text-stroke: 0;
}

.hero-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; width: 40px; }
    50% { opacity: 1; width: 60px; }
}

.hero-logo-watermark {
    position: absolute;
    right: 2%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.15;
    pointer-events: none;
    border-radius: 50%;
}

.hero-logo-watermark img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    mix-blend-mode: lighten;
}

.stats-bar {
    background: var(--gray);
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about {
    padding: 8rem 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.about-img-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-top: 3px solid var(--red);
    border-left: 3px solid var(--red);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    border-radius: 50%;
}

.about-badge img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--gray);
    border-left: 3px solid var(--red);
    transition: transform 0.3s;
}

.about-feature:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.services {
    padding: 8rem 0;
    background: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
}

.service-card-inner {
    padding: 3rem;
    background: var(--black);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.service-card:hover .service-card-inner::before {
    transform: scaleX(1);
}

.service-card:hover .service-card-inner {
    border-color: rgba(193, 18, 31, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-top: 1.5rem;
    transition: width 0.4s;
}

.service-card:hover .service-line {
    width: 80px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--red);
}

.cta-content .btn-primary:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.events {
    padding: 8rem 0;
    background: var(--black);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.event-card {
    background: var(--gray);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.event-card:hover {
    border-color: rgba(193, 18, 31, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.event-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.event-img {
    position: relative;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.6s;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.event-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-meta svg {
    color: var(--gold);
}

.disciplines {
    padding: 8rem 0;
    background: var(--gray);
    overflow: hidden;
}

.disciplines-marquee {
    margin: 3rem 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.discipline-tag {
    padding: 0.75rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--gold);
    transition: all 0.3s;
}

.discipline-tag:hover {
    background: var(--gold);
    color: var(--black);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.disc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--black);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.disc-card:hover {
    border-color: rgba(193, 18, 31, 0.2);
    transform: translateY(-3px);
}

.disc-card:nth-child(even) {
    direction: rtl;
}

.disc-card:nth-child(even) > * {
    direction: ltr;
}

.disc-img {
    overflow: hidden;
}

.disc-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.6s;
}

.disc-card:hover .disc-img img {
    transform: scale(1.08);
}

.disc-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.disc-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.disc-info p {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.85);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    border-radius: 50%;
}

.parallax-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.parallax-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto;
}

.contact {
    padding: 8rem 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray);
    border-left: 3px solid var(--gold);
}

.contact-icon {
    color: var(--gold);
    min-width: 24px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.contact-logo {
    display: flex;
    justify-content: flex-start;
}

.contact-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 50%;
}

.contact-form-wrapper {
    background: var(--gray);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A0A0A0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: var(--gray);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-text);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 600;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: var(--red);
}

.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-fade-up {
    transform: translateY(60px);
}

.anim-fade-left {
    transform: translateX(60px);
}

.anim-fade-right {
    transform: translateX(-60px);
}

.anim-fade-in {
    transform: scale(0.95);
}

.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-fade-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }
.anim-delay-4 { transition-delay: 0.6s; }

@media (max-width: 1024px) {
    .about-grid {
        gap: 4rem;
    }

    .disciplines-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gray);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid rgba(212, 175, 55, 0.15);
    }

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

    .hero-logo-watermark {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .event-card-featured {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .disc-card {
        grid-template-columns: 1fr;
    }

    .disc-card:nth-child(even) {
        direction: ltr;
    }

    .disc-img img {
        min-height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-line {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card-inner {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Founders Section */
.founders {
    padding: 8rem 0;
    background: var(--black);
}

.founder-card {
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: border-color 0.4s;
}

.founder-card:hover {
    border-color: rgba(193, 18, 31, 0.25);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.founder-logo {
    flex-shrink: 0;
}

.founder-logo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.founder-country-logo {
    flex-shrink: 0;
}

.founder-country-logo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}

.founder-portrait {
    flex-shrink: 0;
}

.founder-portrait img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 10%;
    border: 3px solid var(--red);
}

.founder-title {
    flex: 1;
}

.founder-title h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.founder-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.5;
}

.founder-bio {
    padding: 2.5rem;
}

.founder-bio p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.8;
}

.founder-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    padding: 0 2.5rem 2.5rem;
}

.founder-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s, filter 0.4s;
    cursor: pointer;
}

.founder-gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    z-index: 1;
    position: relative;
}

/* WhatsApp */
.whatsapp-link {
    color: #25D366 !important;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

.contact-icon-whatsapp {
    color: #25D366;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Founders responsive */
@media (max-width: 768px) {
    .founder-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .founder-title h3 {
        font-size: 1.6rem;
    }

    .founder-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 0 1.5rem 1.5rem;
    }

    .founder-bio {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .founder-logo img {
        width: 200px;
        height: 200px;
    }

    .founder-portrait img {
        width: 200px;
        height: 240px;
    }

    .founder-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-gallery img {
        height: 240px;
    }
}