@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');



:root {
    --bg-primary: #080918;
    --bg-secondary: #0d0e22;
    --bg-card: rgba(255, 255, 255, 0.04);
    --accent: #1a6bff;
    --accent-2: #00c2ff;
    --accent-glow: rgba(26, 107, 255, 0.35);
    --accent-glow2: rgba(0, 194, 255, 0.25);
    --white: #ffffff;
    --text: #c5cde8;
    --text-muted: #6b7599;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(26, 107, 255, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}
#rankings-body > tr > td > a{
    color: white;
    padding: 10px 14px;
    border-radius: 100px;
    border: none;
}
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

/* ===================================================
       UTILITY CLASSES
    =================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid rgba(0, 194, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--accent-2);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text);
    max-width: 580px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0050e6);
    color: var(--white);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-accent);
}

.btn-outline:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-4px);
}

/* ===================================================
       PAGE LOADER
    =================================================== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.loader-logo span {
    color: var(--accent-2);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 100px;
    animation: loader-anim 1.4s ease forwards;
}

@keyframes loader-anim {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* ===================================================
       TOAST NOTIFICATION
    =================================================== */
#toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent), #0050e6);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    z-index: 8888;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 40px var(--accent-glow);
}

#toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===================================================
       BACK TO TOP BUTTON
    =================================================== */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7777;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-4px);
}

/* ===================================================
       HOME SECTION
    =================================================== */
#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 107, 255, 0.18) 0%, transparent 70%);
    animation: float-glow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
    animation: float-glow 10s ease-in-out infinite alternate-reverse;
}

@keyframes float-glow {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -30px) scale(1.1);
    }
}


.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-2);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 20px 16px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
    background: linear-gradient(135deg, rgba(26, 107, 255, 0.1), rgba(0, 194, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 0 80px var(--accent-glow), inset 0 0 80px rgba(26, 107, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 194, 255, 0.08));
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.hero-badge .num {
    font-size: 28px;
    display: block;
}

.hero-badge .lbl {
    font-size: 11px;
    opacity: 0.85;
}

/* ===================================================
       ABOUT SECTION
    =================================================== */
#about {}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-accent);
    background: linear-gradient(135deg, rgba(26, 107, 255, 0.08), rgba(0, 194, 255, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: 0 0 60px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.about-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 24, 0.6) 0%, transparent 60%);
}

.about-years-badge {
    position: absolute;
    top: 24px;
    right: -24px;
    background: linear-gradient(135deg, var(--accent), #0050e6);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.about-years-badge .num {
    font-size: 40px;
    display: block;
    line-height: 1;
}

.about-years-badge .lbl {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

.about-text p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-values {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--border-accent);
}

.value-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-info strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}

.value-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    border: 2px solid var(--border-accent);
}

.team-card h4 {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 13px;
    color: var(--accent-2);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================================
       SERVICES SECTION
    =================================================== */
#services {}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 107, 255, 0.15), rgba(0, 194, 255, 0.1));
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
}

.service-card h3 {
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ===================================================
       RANKINGS SECTION
    =================================================== */
#rankings {}

.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.rankings-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.rankings-table {
    width: 100%;
    border-collapse: collapse;
}

.rankings-table thead tr {
    border-bottom: 1px solid var(--border);
}

.rankings-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.rankings-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.rankings-table tbody tr:last-child {
    border-bottom: none;
}

.rankings-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.rankings-table tbody tr.rank-1 {
    background: rgba(255, 200, 50, 0.04);
}

.rankings-table tbody tr.rank-1:hover {
    background: rgba(255, 200, 50, 0.07);
}

.rankings-table tbody td {
    padding: 16px 20px;
    font-size: 15px;
}

.rank-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    width: 40px;
}

.rank-1 .rank-num {
    color: #ffc832;
    text-shadow: 0 0 20px rgba(255, 200, 50, 0.6);
}

.rank-2 .rank-num {
    color: #c0c0c0;
}

.rank-3 .rank-num {
    color: #cd7f32;
}

.member-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.member-name {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.member-handle {
    font-size: 12px;
    color: var(--text-muted);
}

.discipline-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-kickboxing {
    background: rgba(255, 80, 80, 0.12);
    color: #ff5050;
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.tag-bjj {
    background: rgba(26, 107, 255, 0.12);
    color: var(--accent-2);
    border: 1px solid var(--border-accent);
}

.tag-mma {
    background: rgba(120, 80, 255, 0.12);
    color: #a070ff;
    border: 1px solid rgba(120, 80, 255, 0.2);
}

.record {
    color: var(--white);
    font-weight: 600;
}

.record span {
    color: #4cdb7a;
}

.record em {
    color: #ff5f5f;
    font-style: normal;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.badge-gold {
    background: rgba(255, 200, 50, 0.1);
    color: #ffc832;
    border: 1px solid rgba(255, 200, 50, 0.3);
}

.badge-silver {
    background: rgba(192, 192, 192, 0.1);
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.badge-bronze {
    background: rgba(205, 127, 50, 0.1);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.badge-member {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
}

/* ===================================================
       TESTIMONIALS SECTION
    =================================================== */
#testimonials {}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    padding: 36px 28px;
    flex-shrink: 0;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
    color: rgba(26, 107, 255, 0.12);
    font-weight: 700;
    user-select: none;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: #ffc832;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--border-accent);
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

/* ===================================================
       FAQ SECTION
    =================================================== */
#faq {}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    gap: 16px;
    background: none;
}

.faq-question:hover {
    color: var(--accent-2);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--accent-2);
}

.faq-item.open .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ===================================================
       CONTACT SECTION
    =================================================== */
#contact {}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--border-accent);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26, 107, 255, 0.15), rgba(0, 194, 255, 0.1));
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-info-item span {
    font-size: 14px;
    color: var(--text-muted);
}

.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 200px;
    background: linear-gradient(135deg, rgba(26, 107, 255, 0.06), rgba(0, 194, 255, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    gap: 8px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-error {
    font-size: 12px;
    color: #ff5f5f;
    margin-top: -4px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #ff5f5f;
}

.form-group.has-error .form-error {
    display: block;
}

/* ===================================================
       ANIMATIONS & SCROLL REVEAL
    =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===================================================
       RESPONSIVE — TABLET (≤1024px)
    =================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

/* ===================================================
       RESPONSIVE — MOBILE (≤768px)
    =================================================== */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rankings-table thead th:nth-child(3),
    .rankings-table tbody td:nth-child(3) {
        display: none;
    }

    .blog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-search {
        max-width: 100%;
    }
}

/* ===================================================
       RESPONSIVE — SMALL MOBILE (≤480px)
    =================================================== */
@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-bar {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}