:root {
    --primary-red: #DC0000;
    --dark-bg: #0a0a0a;
    --gold: #FFD700;
    --white: #ffffff;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-red);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-red), #ff0000);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.6);
}

.cta-button:after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: rgba(10, 10, 10, 0.98);
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 2px solid var(--primary-red);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(220, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(220,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/><g fill="%23DC0000" opacity="0.1"><circle cx="200" cy="200" r="150"/><circle cx="1000" cy="600" r="200"/><path d="M600 100 L700 300 L500 300 Z"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 0, 0, 0.2);
    border: 2px solid var(--primary-red);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--gold);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(20px, 3vw, 36px);
    color: var(--primary-red);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff0000);
    padding: 18px 45px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    padding: 18px 45px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg), #1a0000);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(220, 0, 0, 0.3);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.5);
    font-family: 'Bebas Neue', sans-serif;
}

.about-badge-number {
    font-size: 36px;
    line-height: 1;
}

.about-badge-text {
    font-size: 14px;
    letter-spacing: 1px;
}

.about-text h3 {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 0, 0, 0.2);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    font-size: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h3 {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.1), rgba(10, 10, 10, 0.8));
    border: 2px solid rgba(220, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(220, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* Senseis Section */
.senseis-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a0000, var(--dark-bg));
}

.senseis-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.sensei-card {
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.15), rgba(10, 10, 10, 0.9));
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.sensei-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(220, 0, 0, 0.4);
}

.sensei-image {
    height: 350px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    position: relative;
}

.sensei-belt {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.sensei-info {
    padding: 30px;
}

.sensei-info h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 700;
}

.sensei-title {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sensei-specializations h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
    margin-top: 20px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list li:before {
    content: '🥋';
    font-size: 16px;
}

.sensei-education {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 0, 0, 0.3);
}

.sensei-education h5 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}

.sensei-education p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Location Section */
.location-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.location-details {
    margin: 30px 0;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(220, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    border-radius: 10px;
}

.location-item-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.location-item-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gold);
}

.location-item-text p {
    color: var(--gray);
    line-height: 1.7;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 0, 0, 0.3);
    border: 3px solid var(--primary-red);
    height: 500px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 3px solid var(--primary-red);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.footer-about p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-links a:before {
    content: '▸';
    color: var(--primary-red);
    font-weight: bold;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

.contact-info svg {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--gold);
}

.timing-box {
    background: rgba(220, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.timing-box h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.timing-item span:last-child {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(220, 0, 0, 0.2);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 0, 0, 0.5);
}

.footer-bottom {
    background: var(--dark-bg);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(220, 0, 0, 0.3);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .senseis-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .timing-item {
        flex-direction: column;
        gap: 5px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }
}