/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Coach Page Standards */
    --bg-dark: #0A0E27;
    --bg-dark-2: #0D1230;
    --bg-dark-3: #1A1F4E;

    --cyan: #53EAFD;
    --cyan-light: #A2F4FD;
    --purple: #C4B4FF;
    --purple-dark: #A684FF;
    --blue: #8EC5FF;
    --blue-dark: #51A2FF;

    --text-white: #FFFFFF;
    --text-light: #D1D5DC;
    --text-muted: #99A1AF;
    --text-dark: #6A7282;

    --border-cyan: rgba(0, 211, 242, 0.3);
    --border-purple: rgba(166, 132, 255, 0.3);
    --border-blue: rgba(81, 162, 255, 0.3);
    --border-white: rgba(255, 255, 255, 0.1);

    /* Legacy Map to new standards for compatibility */
    --primary-blue: var(--bg-dark);
    --accent-blue: var(--cyan);
    --light-blue: var(--blue);
    --gold: #d4af37;
    --white: #ffffff;
    --bubble-border: #5ba3e0;
    --label-bg: rgba(30, 80, 130, 0.85);
    --header-bg: rgba(10, 14, 39, 0.95);
    /* Matched to bg-dark */
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    /* Full match to coach dark navy */
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(83, 234, 253, 0.4));
    /* Matched to cyan */
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Mobilde aşağı kaymayı engeller */
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

/* Hide mobile CTA on desktop */
.nav-cta-mobile {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: var(--bg-dark-2);
    /* Matched to coach dropdown */
    border: 1px solid var(--border-cyan);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border-left: 3px solid var(--accent-blue);
    color: #ffffff;
    font-weight: 500;
}

.dropdown-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.dropdown-item span {
    flex: 1;
}

.cta-button {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-blue);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: url('assets/bg-hero.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Smooth gradient transition at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 22, 40, 0.2) 30%,
            rgba(10, 22, 40, 0.6) 60%,
            rgba(10, 22, 40, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Cosmic Background Stars Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 200px 150px;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto;
}

/* Center Logo Image */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-container {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Gentle floating animation for the center piece too */
    animation: float 8s ease-in-out infinite;
}

.main-central-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Enhanced glow to match the cosmic theme */
    filter: drop-shadow(0 0 30px rgba(74, 144, 217, 0.4));
    transition: transform 0.3s ease;
}

.main-central-logo:hover {
    transform: scale(1.05);
}

/* Orbit Lines */
.orbit-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(100, 180, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
}

.orbit-1 {
    width: 450px;
    height: 450px;
    animation: orbit-rotate 30s linear infinite;
}

.orbit-2 {
    width: 550px;
    height: 550px;
    animation: orbit-rotate 40s linear infinite reverse;
}

.orbit-3 {
    width: 650px;
    height: 650px;
    animation: orbit-rotate 50s linear infinite;
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
    }
}

/* Bubbles */
.bubble {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.bubble:hover {
    transform: scale(1.05);
    transform-origin: center center;
}

.bubble-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(120, 180, 240, 0.12) 0%,
            rgba(80, 140, 200, 0.18) 30%,
            rgba(60, 120, 180, 0.22) 60%,
            rgba(40, 100, 160, 0.15) 100%);
    border: 1px solid rgba(150, 200, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 0 50px rgba(100, 180, 255, 0.25),
        0 0 100px rgba(100, 180, 255, 0.15),
        inset 0 0 40px rgba(255, 255, 255, 0.1),
        inset 0 -20px 40px rgba(100, 150, 200, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

/* Bubble Glass Highlight Effect - Top shine */
.bubble-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15%;
    width: 50%;
    height: 25%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    border-radius: 50%;
    transform: rotate(-10deg);
}

/* Bubble bottom reflection */
.bubble-inner::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 25%;
    width: 50%;
    height: 15%;
    background: linear-gradient(0deg,
            rgba(150, 200, 255, 0.15) 0%,
            transparent 100%);
    border-radius: 50%;
}

.bubble-inner img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.bubble-label {
    padding: 12px 24px;
    background: linear-gradient(180deg,
            rgba(20, 60, 110, 0.9) 0%,
            rgba(15, 45, 85, 0.95) 100%);
    border: 1px solid rgba(100, 180, 255, 0.4);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.bubble-label.highlight {
    background: linear-gradient(180deg, rgba(30, 80, 140, 0.95) 0%, rgba(20, 60, 110, 0.98) 100%);
    border-color: rgba(120, 200, 255, 0.5);
}

/* Bubble Positions - 5 Products Pentagon Layout */
.bubble-1 {
    /* Top Left */
    top: 15%;
    left: 15%;
}

.bubble-2 {
    /* Top Right */
    top: 15%;
    right: 15%;
}

.bubble-3 {
    /* Center Top - Main Product */
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}

.bubble-3:hover {
    transform: translateX(-50%) scale(1.05);
}

.bubble-4 {
    /* Bottom Left */
    top: 48%;
    left: 18%;
}

.bubble-5 {
    /* Bottom Right */
    top: 48%;
    right: 18%;
}

/* Hero Title */
.hero-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Floating Animation for Bubbles */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bubble-1 {
    animation: float 6s ease-in-out infinite;
}

.bubble-2 {
    animation: float 5s ease-in-out infinite 0.5s;
}

.bubble-3 {
    animation: float 7s ease-in-out infinite 1s;
}

.bubble-4 {
    animation: float 5.5s ease-in-out infinite 1.5s;
}

.bubble-5 {
    animation: float 6.5s ease-in-out infinite 2s;
}

/* Override float animation for bubble-3 to preserve translateX */
.bubble-3 {
    animation: float3 7s ease-in-out infinite 1s;
}

@keyframes float3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 12px 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero-container {
        height: 600px;
    }

    .bubble-inner {
        width: 80px;
        height: 80px;
    }

    .bubble-1 .bubble-inner {
        width: 90px;
        height: 90px;
    }

    .logo-badge {
        width: 160px;
        height: 160px;
    }

    .hero-title h1 {
        font-size: 2rem;
    }
}

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(10, 30, 60, 0.98) 0%, rgba(5, 20, 45, 0.98) 100%);
        backdrop-filter: blur(20px);
        padding: 80px 20px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: block;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list li a.nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: relative !important;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        min-width: unset !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 8px;
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 10px 0;
    }

    .dropdown-item {
        padding: 10px 15px;
        justify-content: flex-start;
    }

    .dropdown-item img {
        width: 28px;
        height: 28px;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .nav-list li a.dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Hide desktop CTA on mobile */
    .cta-desktop {
        display: none !important;
    }

    /* Show mobile CTA in menu */
    .nav-cta-mobile {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Header container - hamburger to right */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* Ensures no child pushes width */
    }

    .logo-section {
        flex-shrink: 1;
        /* Allow shrinking */
        min-width: 0;
        /* Allow text truncation if needed */
        overflow: hidden;
    }

    .logo-text {
        font-size: 1rem;
        /* Slightly smaller to be safe */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
    }

    .hamburger-line {
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-container {
        height: 420px;
    }

    /* Smaller bubbles for mobile - but keep same positions as desktop */
    .bubble-inner {
        width: 65px !important;
        height: 65px !important;
    }

    .bubble-inner img {
        width: 45px !important;
        height: 45px !important;
    }

    .bubble-label {
        font-size: 0.5rem !important;
        padding: 4px 8px !important;
    }

    /* Mobile bubble positions - spread out to avoid overlap */
    .bubble-1 {
        top: 10% !important;
        left: 2% !important;
    }

    .bubble-2 {
        top: 10% !important;
        right: 2% !important;
    }

    .bubble-3 {
        top: 2% !important;
    }

    .bubble-4 {
        top: 52% !important;
        left: 5% !important;
    }

    .bubble-5 {
        top: 52% !important;
        right: 5% !important;
    }

    /* Smaller center logo */
    .logo-container {
        width: 160px !important;
        height: 160px !important;
    }

    .logo-badge {
        width: 95px !important;
        height: 95px !important;
    }

    .badge-inner {
        width: 52px !important;
        height: 52px !important;
    }

    .badge-inner img {
        width: 30px !important;
        height: 30px !important;
    }

    .badge-text {
        font-size: 0.38rem !important;
    }

    /* Smaller orbit rings */
    .orbit-container {
        width: 300px !important;
        height: 300px !important;
    }

    .hero-title {
        bottom: 15px !important;
    }

    .hero-title h1 {
        font-size: 1.1rem;
        padding: 0 15px;
        line-height: 1.35;
        white-space: nowrap;
    }

    /* ==========================================
       WAY JOURNEY - MOBILE RESPONSIVE (2-2-1 Grid)
       ========================================== */

    .way-journey {
        padding: 60px 20px 80px;
        min-height: auto;
    }

    .journey-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px;
    }

    .journey-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 15px !important;
        padding: 20px 10px !important;
        justify-items: center !important;
        position: relative !important;
    }

    /* Hide SVG path and comet on mobile */
    .journey-path-svg,
    .comet {
        display: none !important;
    }

    /* Reset step positioning for grid */
    .journey-step {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: translateY(20px) !important;
        width: 100% !important;
        max-width: 140px !important;
        opacity: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        display: flex !important;
        transition: opacity 0.4s ease, transform 0.4s ease !important;
    }

    .journey-step.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* 5th step centered (spans full width) */
    .journey-step.step-5 {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .journey-step.visible {
        transform: none !important;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step-label {
        font-size: 0.8rem;
        text-align: center;
        opacity: 1 !important;
        transform: none !important;
        line-height: 1.3;
    }

    /* Final star */
    .final-star {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 15px;
    }

    .final-star-icon {
        width: 60px;
        height: 60px;
    }

    .final-star-label {
        font-size: 0.75rem;
    }
}

/* ==========================================
   WHAT IS WAY SECTION
   ========================================== */

.what-is-way {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(to top, rgba(5, 10, 25, 1) 0%, transparent 15%), url('assets/bg-what-is-way.png') center center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for better text readability */
.what-is-way::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 5, 20, 0.4);
    pointer-events: none;
}

/* Smooth gradient transition at top of what-is-way */
.what-is-way::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.6) 40%,
            rgba(10, 22, 40, 0.2) 70%,
            transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.way-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.way-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.way-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.way-card {
    flex: 1;
    max-width: 320px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Comet Trail Effect Base */
.way-card-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* No border on base */
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.way-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    /* Ensure image keeps its own composite layer */
    transform: translateZ(0);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Common Comet Styles */
.way-card-image::before,
.way-card-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================
   NAIVE 3-STRAND ORBIT EFFECT
   ========================================== */

/* 1. THE 3-STRAND RING SYSTEM */
.way-card-image::before {
    /* Large orbit container */
    width: 420px;
    height: 420px;

    /* Create 3 distinct thin lines using radial-gradient stripes */
    /* transparent -> Gold Line (1px) -> transparent (gap) -> Gold Line (1px) -> ... */
    background: radial-gradient(circle,
            transparent 66%,
            rgba(255, 215, 0, 0.4) 66%, rgba(255, 215, 0, 0.9) 66.5%, transparent 67%,
            transparent 69%,
            rgba(255, 215, 0, 0.4) 69%, rgba(255, 215, 0, 0.9) 69.5%, transparent 70%,
            transparent 72%,
            rgba(255, 215, 0, 0.4) 72%, rgba(255, 215, 0, 1) 72.5%, transparent 73%);

    /* Soften slightly but keep lines cleaner */
    filter: blur(0.5px);

    /* 45 Degree Diagonal Tilt */
    /* RotateZ(45deg) tilts the whole plane diagonally */
    /* RotateX(75deg) flattens it into an ellipse */
    transform: translate(-50%, -50%) rotateZ(45deg) rotateX(75deg);

    /* Animation: "Wobble" or gentle rotation to feel alive */
    /* Note: Rotating a perfect circle radial gradient doesn't show movement, 
       so we add a mask or slight wobble to show life */
    mask: linear-gradient(0deg, transparent, black 20%, black 80%, transparent);
    -webkit-mask: linear-gradient(0deg, transparent, black 20%, black 80%, transparent);

    animation: orbit-rock 8s ease-in-out infinite;
    opacity: 0.9;
    border-radius: 50%;
    /* Essential for radial gradient to work as circle */
}

/* 2. THE GLOWING STAR (Comet Head) */
/* We want a distinct bright star traveling along one of the paths */
.way-card-image::after {
    width: 420px;
    height: 420px;

    /* Placing the star on the rim */
    background: radial-gradient(circle at 50% 12%,
            white 0%,
            rgba(255, 215, 0, 1) 0.5%,
            rgba(255, 215, 0, 0.4) 1.5%,
            transparent 2%);

    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));

    /* Match the tilt! */
    transform: translate(-50%, -50%) rotateZ(45deg) rotateX(75deg);

    /* Spin the star around the center axis */
    animation: orbit-spin 10s linear infinite;
    mix-blend-mode: screen;
}

/* Animations */
@keyframes orbit-rock {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateZ(45deg) rotateX(75deg);
    }

    50% {
        transform: translate(-50%, -50%) rotateZ(45deg) rotateX(70deg);
    }
}

@keyframes orbit-spin {
    0% {
        transform: translate(-50%, -50%) rotateZ(45deg) rotateX(75deg) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(45deg) rotateX(75deg) rotateZ(360deg);
    }
}

/* 3. HIDE CONNECTION LINES */
.way-connection-line {
    display: none;
}

/* Silver Theme Overrides for Card 3 */
.way-card:nth-child(5) .way-card-image::before {
    background: radial-gradient(circle,
            transparent 66%,
            rgba(180, 200, 255, 0.4) 66%, rgba(200, 220, 255, 0.9) 66.5%, transparent 67%,
            transparent 69%,
            rgba(180, 200, 255, 0.4) 69%, rgba(200, 220, 255, 0.9) 69.5%, transparent 70%,
            transparent 72%,
            rgba(180, 200, 255, 0.4) 72%, rgba(200, 220, 255, 1) 72.5%, transparent 73%);
}

.way-card:nth-child(5) .way-card-image::after {
    background: radial-gradient(circle at 50% 12%,
            white 0%,
            rgba(200, 220, 255, 1) 0.5%,
            rgba(180, 200, 255, 0.4) 1.5%,
            transparent 2%);
    filter: drop-shadow(0 0 5px rgba(180, 200, 255, 0.8));
}

/* ==========================================
   INDEPENDENT ORBIT ANIMATION TIMINGS
   ========================================== */

/* Card 1 (Left) - Standard Flow */
.way-card:nth-child(1) .way-card-image::before {
    animation-duration: 10s;
    animation-delay: 0s;
}

.way-card:nth-child(1) .way-card-image::after {
    animation-duration: 12s;
    animation-delay: -2s;
}

/* Card 2 (Center) - Slow & Majestic */
.way-card:nth-child(3) .way-card-image::before {
    animation-duration: 15s;
    animation-delay: -5s;
}

.way-card:nth-child(3) .way-card-image::after {
    animation-duration: 18s;
    animation-delay: -1s;
}

/* Card 3 (Right) - Fast & Dynamic */
.way-card:nth-child(5) .way-card-image::before {
    animation-duration: 8s;
    animation-delay: -3s;
}

.way-card:nth-child(5) .way-card-image::after {
    animation-duration: 9s;
    animation-delay: -8s;
}

.way-card-content {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
}

.way-card-content p {
    margin: 0;
}

.way-card-content strong {
    font-weight: 600;
}

/* Highlight styles */
.highlight-yellow {
    color: #f0d060;
    font-weight: 500;
}

.highlight-cyan {
    color: #60d0f0;
    font-weight: 500;
}

/* Responsive for What is WAY section */
@media (max-width: 1024px) {
    .way-title {
        font-size: 2.5rem;
    }

    .way-card-image {
        width: 160px;
        height: 160px;
    }

    .way-card-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .what-is-way {
        padding: 60px 20px;
    }

    .way-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .way-cards {
        flex-direction: column;
        gap: 40px;
    }

    .way-connection-line {
        width: 3px;
        height: 40px;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(200, 220, 255, 0.6) 50%,
                rgba(255, 255, 255, 0) 100%);
    }

    .way-card {
        max-width: 100%;
    }
}

/* ==========================================
   WAY JOURNEY SECTION - PROFESSIONAL
   ========================================== */

.way-journey {
    position: relative;
    padding: 80px 0 120px;
    min-height: 900px;
    background: linear-gradient(to bottom, rgba(5, 10, 25, 1) 0%, transparent 15%), url('assets/journey-bg.webp') center center/cover no-repeat;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Dark overlay for better contrast */
.way-journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 10, 25, 0.3) 0%,
            rgba(5, 10, 25, 0.2) 50%,
            rgba(5, 10, 25, 0.4) 100%);
    pointer-events: none;
}

/* Smooth transition gradient at bottom of journey to portfolio */
.way-journey::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(160, 150, 200, 0.3) 30%,
            rgba(190, 180, 215, 0.6) 55%,
            rgba(210, 200, 225, 0.8) 75%,
            rgba(230, 225, 240, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.journey-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    position: relative;
    z-index: 10;
    letter-spacing: 1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.journey-container {
    position: relative;
    width: 1200px;
    height: 600px;
    margin: 0 auto;
}

/* Background Path Line - Glowing Beam */
.journey-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.5px);
}

#journeyPath {
    fill: none;
    stroke: url(#pathGradient);
    stroke-width: 4px;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(255, 235, 180, 0.6)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.3));
}

/* Steps (Milestones) - Glassmorphism Style */
.journey-step {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%) scale(0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    z-index: 5;
    opacity: 0;
    transform-origin: center center;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-step.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Step Icons - Premium Glassmorphism */
.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Glass Highlight */
.step-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 15%;
    width: 50%;
    height: 20%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.journey-step.visible .step-icon {
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 215, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.6s ease;
}

.journey-step.visible .step-icon svg {
    color: #ffd700;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
    transform: scale(1.05);
}

/* Step Labels - Clean Typography */
.step-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.8s ease 0.3s;
}

.journey-step.visible .step-label {
    opacity: 1;
    transform: translateY(0);
}

/* THE COMET - Enhanced Premium Glow */
.comet {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 20;
    opacity: 0;
    will-change: transform, left, top;
}

.comet-head {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #ffd700 50%, #ffaa00 100%);
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 8px 4px rgba(255, 255, 255, 0.9),
        0 0 20px 8px rgba(255, 215, 0, 0.8),
        0 0 40px 16px rgba(255, 170, 0, 0.5),
        0 0 80px 24px rgba(255, 140, 0, 0.3);
}

/* Comet Tail - Longer, More Ethereal */
.comet-tail {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 215, 0, 0.6) 20%,
            rgba(255, 170, 0, 0.3) 60%,
            transparent 100%);
    transform: translate(-100%, -50%);
    filter: blur(2px);
    border-radius: 50%;
}

/* Secondary Tail for Glow */
.comet-tail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to left,
            rgba(255, 215, 0, 0.4) 0%,
            transparent 80%);
    transform: translateY(-50%);
    filter: blur(8px);
}

/* Animation Classes for Orbiting */
.comet.orbiting {
    transition: none;
}

/* Final Star - Spectacular Burst */
.final-star {
    position: absolute;
    left: 1250px;
    top: 50px;
    width: 120px;
    height: 120px;
    color: #fff;
    z-index: 30;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.final-star svg {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
}

.final-star.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(15deg);
}

/* ==========================================
   WAY PRODUCT PORTFOLIO SECTION
   ========================================== */

.portfolio-section {
    padding: 80px 40px 120px;
    background: url('assets/portfolio/bg-portfolio.webp') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Smooth gradient transition at top of portfolio - removed heavy dark gradient */

/* Subtle cosmic overlay effect */
.portfolio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(180, 140, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(100, 160, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Portfolio Title */
.portfolio-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Portfolio Grid - 3+2 layout */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Product Card */
.product-card {
    flex: 0 0 calc(33.333% - 22px);
    max-width: 340px;
    position: relative;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg,
            #ff00ff 0%,
            #ff44aa 25%,
            #aa44ff 50%,
            #4488ff 75%,
            #00ccff 100%);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card visible state */
.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Glow Effect - Strong rainbow glow */
.product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #ff00ff 0%,
            #ff44aa 20%,
            #cc44ff 40%,
            #4488ff 60%,
            #00ccff 80%,
            #00ffff 100%);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.8;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Card Inner - Dark gradient matching reference */
.card-inner {
    background: linear-gradient(180deg,
            #1a1a4a 0%,
            #12123a 40%,
            #0a0a2a 70%,
            #080820 100%);
    border-radius: 18px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Card Title */
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(100, 150, 255, 0.3);
}

/* Card Description */
.card-description {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Card Tags */
.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid;
    background: transparent;
}

.tag-elementary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.tag-middle {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.tag-high {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.product-card:hover::before {
    opacity: 1;
    filter: blur(20px);
}

.product-card:hover .card-inner {
    background: linear-gradient(180deg,
            #1e1e42 0%,
            #101030 50%,
            #0c0c25 100%);
}

/* Portfolio Responsive - Tablet */
@media (max-width: 1024px) {
    .portfolio-section {
        padding: 60px 30px 80px;
    }

    .portfolio-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }

    .portfolio-grid {
        gap: 20px;
        max-width: 800px;
    }

    .card-inner {
        min-height: 260px;
    }
}

/* Portfolio Responsive - Small Tablet */
@media (max-width: 768px) {
    .portfolio-grid {
        gap: 16px;
        max-width: 500px;
    }

    .product-card {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }
}

/* Portfolio Responsive - Mobile */
@media (max-width: 640px) {
    .portfolio-section {
        padding: 50px 20px 60px;
    }

    .portfolio-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .portfolio-grid {
        gap: 20px;
        max-width: 340px;
    }

    .product-card {
        flex: 0 0 100%;
        max-width: none;
    }

    .card-inner {
        min-height: auto;
        padding: 25px 20px;
    }

    .card-image {
        height: 100px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .tag {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */

.footer {
    background: var(--bg-dark);
    /* Solid coach navy */
    color: #ffffff;
    border-top: 1px solid var(--border-cyan);
    /* Standard divider */
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-blue);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-blue);
}

/* Footer Responsive - Tablet */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        padding: 50px 30px 30px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 40px 20px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
        text-align: left;
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* ==========================================
   SIGNUP SECTION - GLOBAL STANDARD
   ========================================== */
.signup-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-3) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.signup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.2;
}

.signup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 211, 242, 0.2) 0%, rgba(142, 81, 255, 0.2) 100%);
    border: 1px solid rgba(0, 211, 242, 0.4);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
    border-radius: 50%;
}

.signup-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--cyan);
}

.signup-form-container {
    max-width: 896px;
    margin: 48px auto 0;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border-cyan);
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.15);
    border-radius: 24px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group label svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
}

.form-group input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    font-family: var(--font-poppins);
    font-size: 16px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 211, 242, 0.2);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-dark);
}

.form-group input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(83, 234, 253, 0.2);
}

.btn-submit {
    width: fit-content;
    margin: 24px auto 0;
    padding: 16px 112px;
}

.form-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* Form Validation Styles */
.required {
    color: #ff6b6b;
    font-weight: 500;
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 6px;
    min-height: 16px;
}

.form-group input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.form-group input.success {
    border-color: var(--cyan);
}

/* Submit Button States */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-loading .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-success p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-success .btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-success .btn-secondary:hover {
    background: rgba(0, 211, 242, 0.1);
}

@media (max-width: 768px) {
    .signup-section {
        padding: 50px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-form-container {
        padding: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 32px;
    }
}

/* ==========================================
   PREMIUM BUTTONS - COACH STANDARD
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    color: var(--text-white);
    background: linear-gradient(90deg, rgba(0, 184, 219, 0.2) 0%, rgba(142, 81, 255, 0.2) 100%);
    border: 1px solid var(--cyan);
}

.btn-primary:hover {
    background: linear-gradient(90deg, rgba(0, 184, 219, 0.4) 0%, rgba(142, 81, 255, 0.4) 100%);
    box-shadow: 0 0 30px rgba(83, 234, 253, 0.4);
}

.btn-secondary {
    color: var(--text-white);
    background: transparent;
    border: 1px solid var(--cyan);
}

.btn-secondary:hover {
    background: rgba(83, 234, 253, 0.1);
}

/* ==========================================
   ANIMATED STARS - GLOBAL STANDARD
   ========================================== */
.star {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.star-1 {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    top: 25%;
    left: 25%;
    opacity: 0.53;
}

.star-2 {
    width: 4px;
    height: 4px;
    background: var(--purple);
    top: 33%;
    right: 33%;
    opacity: 0.62;
}

.star-3 {
    width: 6px;
    height: 6px;
    background: var(--blue);
    bottom: 10%;
    left: 30%;
    opacity: 0.97;
}

/* ==========================================
   GLOBAL SECTION TITLES - COACH STANDARD
   ========================================== */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.2px;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto 40px auto;
    /* Alt boşluğu 16px'den 40px'e çıkardım */
    background: linear-gradient(90deg, #53EAFD 0%, #C4B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    max-width: 811px;
    margin: 0 auto 48px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 24px !important;
        /* Mobilde boşluğu azalttık */
    }

    .section-subtitle {
        font-size: 16px;
    }
}