        /* Made with <3 by GelisimOfisi */        
        :root {
            --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --color-primary: #82285f;
            --color-primary-hover: #AF1172;
            --color-text-dark: #1a1a1a;
            --color-text: #bdbdbb;
            --color-text-light: #6b6b6b;
            --color-bg: #FCFCF6;
            --color-white: #ffffff;
            --color-black: #000000;
        }

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

        body {
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 400;
            color: var(--color-text);
            background-color: var(--color-bg);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-main);
            line-height: 1.2;
            font-weight: 700;
            color: var(--color-text-dark);
        }

        p {
            font-family: var(--font-main);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
            font-family: var(--font-main);
        }

        ul {
            list-style: none;
        }

        /* ============================================
           PROMO BAR
        ============================================ */
        .promo-bar {
            width: 100%;
            height: 52px;
            background-color: var(--color-primary);
            color: var(--color-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: height 0.4s;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .promo-bar-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 1rem 0;
        }

        .promo-bar-inner {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 92.25rem;
            gap: 0.5rem;
            padding: 0 1.25rem;
        }

        .promo-bar-message {
            font-family: var(--font-main);
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-direction: row;
            flex-wrap: wrap;
            max-width: 100%;
            font-size: 0.9375rem;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .promo-bar-link {
            color: inherit;
            text-decoration: none;
        }

        .promo-bar-link:hover {
            text-decoration: underline;
        }

        .promo-bar-link p {
            margin: 0;
            color: var(--color-bg);
        }

        /* Mobil için promo-bar responsive */
        @media screen and (max-width: 64rem) {
            .promo-bar {
                height: auto;
                min-height: 52px;
            }

            .promo-bar-message {
                font-size: 12px;
                font-weight: 600;
                text-align: center;
            }

            .promo-bar-inner {
                padding: 0 1rem;
            }
        }

        /* ============================================
           SITE HEADER
        ============================================ */
        .site-header {
            background-color: black;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 90;
        }

        /* Mobilde sadece header-container'ı gizle, promo-bar görünsün */
        .site-header .header-container {
            display: none;
        }

        @media screen and (min-width: 64rem) {
            .site-header .header-container {
                display: flex;
            }
        }

        .site-header ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* Header Container */
        .header-container {
            max-width: 92.25rem;
            width: 100%;
            padding: 1rem 1.25rem;
            color: var(--color-text);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        @media screen and (min-width: 80rem) {
            .header-container {
                padding: 1rem 1.25rem;
            }
        }

        @media screen and (min-width: 90rem) {
            .header-container {
                padding: 1rem 3.75rem;
            }
        }

        /* Brand Logo */
        .brand-logo-desktop {
            align-self: center;
            margin-right: 2rem;
            display: initial;
            transition: all 0.3s ease;
        }

        @media screen and (min-width: 64rem) {
            .brand-logo-desktop {
                display: initial;
            }
        }

        @media screen and (min-width: 90rem) {
            .brand-logo-desktop {
                display: initial;
            }
        }

        .brand-logo-link {
            text-decoration: none;
        }

        .brand-logo-svg {
            width: 8rem;
            height: auto;
            transition: all 0.3s ease;
        }

        .desktop-logo-img {
            height: 35px;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        @media screen and (min-width: 80rem) {
            .brand-logo-svg {
                width: 10rem;
            }

            .desktop-logo-img {
                height: 45px;
                margin-top: 15px;
            }
        }

        @media screen and (min-width: 90rem) {
            .brand-logo-svg {
                width: 12.5rem;
            }

            .desktop-logo-img {
                height: 65px;
                margin-top: 25px;
            }
        }

        /* Navigation Wrapper */
        .nav-wrapper {
            gap: 0.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nav-row {
            display: flex;
            flex-direction: row;
            justify-content: center;
            width: 80%;
        }

        /* Mobile Brand Logo */
        .brand-logo-mobile {
            display: initial;
            align-items: center;
            align-self: center;
            margin-right: 1.5rem;
            gap: 2rem;
        }

        @media screen and (min-width: 80rem) {
            .brand-logo-mobile {
                display: initial;
            }
        }

        @media screen and (min-width: 90rem) {
            .brand-logo-mobile {
                display: none;
            }
        }

        .brand-logo-mobile-svg {
            width: 9.375rem;
            height: auto;
        }

        /* Utility Navigation */
        .utility-nav {
            gap: 0.5rem;
            align-self: center;
            margin-left: auto;
        }

        .utility-nav-list {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: center;
        }

        .utility-nav-text {
            font-family: var(--font-main);
            font-weight: 500;
            margin: 0.5rem;
            font-size: 0.875rem;
            line-height: 1.5;
            letter-spacing: -0.01em;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .utility-nav-text:hover {
            color: var(--color-primary);
            border-bottom-color: var(--color-primary);
        }

        /* Main Navigation */
        .main-nav {
            padding: 0;
            flex-basis: auto;
            flex-grow: 0;
            align-items: center;
            margin-left: 0;
            margin-right: 3rem;
            display: flex;
            flex-direction: row;
        }

        .main-nav-list {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .main-nav-text {
            margin: 0.75rem;
            font-size: 1.0625rem;
            line-height: 1.4;
            text-align: center;
            border-bottom: 1px solid transparent;
            font-family: var(--font-main);
            font-weight: 600;
            letter-spacing: -0.02em;
            transition: all 0.2s ease;
        }

        .main-nav-text:hover {
            color: var(--color-primary);
            border-bottom-color: var(--color-primary);
        }

        /* CTA Section */
        .cta-section-desktop {
            display: none;
            flex-grow: 0;
            justify-content: flex-end;
            flex-basis: min-content;
        }

        @media screen and (min-width: 80rem) {
            .cta-section-desktop {
                display: flex;
            }
        }

        .cta-buttons {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: nowrap;
            flex-grow: 0;
            justify-content: flex-end;
            padding-top: 0;
        }

        /* Button Styles */
        .button {
            border-radius: 3.75rem;
            text-align: center;
            transition: all 0.2s ease;
            cursor: pointer;
            padding: 0.75rem 2.5rem;
            font-size: 1rem;
            line-height: 1;
            height: 3rem;
            display: flex;
            align-items: center;
            max-width: fit-content;
            justify-content: center;
            font-family: var(--font-main);
            font-weight: 600;
            letter-spacing: -0.01em;
            text-wrap: nowrap;
            text-decoration: none;
            border: none;
        }

        .button-secondary {
            color: white;
            background-color: black;
            border: 1px solid #414141;
        }

        .button-secondary:hover {
            color: white;
            background-color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .button-secondary:focus {
            color: #23494B;
            background-color: var(--color-bg);
            border: 1px solid #aaaa91;
            box-shadow: unset;
        }

        .button-primary {
            color: white;
            background-color: var(--color-primary);
            border: 1px solid transparent;
        }

        .button-primary:hover {
            background-color: var(--color-primary-hover);
        }

        .button-primary:focus {
            background-color: var(--color-primary);
            border: 1px solid white;
        }

        /* Mobile CTA Section */
        .cta-section-mobile {
            display: flex;
            margin-left: 0.75rem;
        }

        @media screen and (min-width: 80rem) {
            .cta-section-mobile {
                display: none;
            }
        }

        /* ============================================
           MOBILE HEADER
        ============================================ */
        .mobile-header {
            display: flex;
            background-color: #000000;
            position: sticky;
            top: 0;
            z-index: 90;
            padding: 1rem 1.25rem;
            justify-content: space-between;
            align-items: center;
        }

        @media screen and (min-width: 64rem) {
            .mobile-header {
                display: none;
            }
        }

        .mobile-logo {
            color: var(--color-white);
            font-family: var(--font-main);
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
        }

        .mobile-logo img {
            height: 40px;
            width: auto;
        }

        .hamburger-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 4px;
            z-index: 101;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background-color: var(--color-white);
            transition: all 0.3s ease;
        }

        .hamburger-button.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

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

        .hamburger-button.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background-color: #000000;
            z-index: 99;
            transition: left 0.3s ease;
            overflow-y: auto;
            padding: 80px 2rem 2rem;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .mobile-nav-link {
            display: block;
            padding: 1rem 0;
            color: var(--color-white);
            text-decoration: none;
            font-family: var(--font-main);
            font-size: 1.125rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--color-primary);
        }

        .mobile-cta-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-cta-button {
            display: block;
            padding: 0.875rem 1.5rem;
            text-align: center;
            border-radius: 25px;
            text-decoration: none;
            font-family: var(--font-main);
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-cta-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
            border: 2px solid var(--color-primary);
        }

        .mobile-cta-primary:hover {
            background-color: var(--color-primary-hover);
            border-color: var(--color-primary-hover);
        }

        .mobile-cta-secondary {
            background-color: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }

        .mobile-cta-secondary:hover {
            background-color: var(--color-white);
            color: var(--color-black);
        }

        /* ============================================
           VIDEO HERO SECTION
        ============================================ */
        .video-hero {
            height: 60vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        @media screen and (min-width: 768px) {
            .video-hero {
                height: 100vh;
            }
        }

        body {
            margin: 0;
            padding: 0;
        }

        .video-hero-media {
            width: 100%;
            height: 100%;
        }

        .video-hero-wrapper {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .video-hero-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            border-radius: 0;
        }

        .video-hero-container img {
            display: block;
        }

        .video-hero-image-wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
            display: none;
        }

        .video-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 75% 50%;
            position: absolute;
            inset: 0;
        }

        .video-hero-blur-overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent, transparent);
            backdrop-filter: blur(5px) opacity(0);
            transition: backdrop-filter 0.7s ease-in-out;
        }

        .video-hero-gradient-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            inset: 0;
            background: linear-gradient(rgba(46, 40, 44, 0) 41.32%, rgba(46, 40, 44, 0.7) 88.62%);
        }

        .video-hero-controls {
            position: absolute;
            bottom: 2.5rem;
            left: 0;
            right: 0;
            max-width: 92.25rem;
            margin: 0 auto;
            width: 100%;
            height: 100%;
            z-index: 10;
        }

        .video-hero-play-button {
            position: absolute;
            bottom: 1.5rem;
            left: 1.25rem;
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
            color: #000;
        }

        .video-hero-play-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .video-hero-play-button.playing .play-icon {
            display: none;
        }

        .video-hero-play-button.playing .pause-icon {
            display: block !important;
        }

        @media screen and (min-width: 60rem) {
            .video-hero-play-button {
                left: 3.75rem;
                width: 56px;
                height: 56px;
            }
        }

        .video-hero-progress {
            transform: rotate(-90deg);
            transform-origin: center center;
            transition: stroke-dashoffset 0.2s linear;
        }

        .video-hero-progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            z-index: 15;
        }

        .video-hero-progress-bar {
            height: 100%;
            background: #fff;
            width: 0%;
            transition: width 0.1s linear;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        .video-hero-video-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 1;
            position: absolute;
        }

        .video-hero-video-container iframe,
        .video-hero-video-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw;
            min-height: 100vh;
            min-width: 177.77vh;
            transform: translate(-50%, -50%);
            border: 0;
        }

        .video-hero-player {
            object-fit: cover;
        }

        .video-hero-content {
            max-height: 100%;
            position: absolute;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            text-align: center;
            max-width: 84.75rem;
            margin: 0 auto;
            top: 50%;
            transform: translateY(-50%);
        }

        /* ============================================
           ACTIVITY GRID SECTION
        ============================================ */
        .activity-grid {
            width: 100%;
            background-color: var(--color-black);
            padding: 4rem 0;
            position: relative;
            padding-bottom:0px !important;
        }

        @media screen and (max-width: 959px) {
            .activity-grid {
                background-color: var(--color-white) !important;
            }
        }

        .activity-grid-header {
            text-align: center;
            padding: 0 2rem 4rem;
            max-width: 60rem;
            margin: 0 auto;
        }

        .activity-grid-title {
            font-family: var(--font-main);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .activity-grid-title br {
            display: none;
        }

        .activity-grid-description {
            font-family: var(--font-main);
            font-size: 1.125rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            letter-spacing: -0.01em;
        }

        @media screen and (max-width: 959px) {
            .activity-grid-title {
                font-size: 3rem;
                color: #000000 !important;
            }

            .activity-grid-description {
                color: rgba(0, 0, 0, 0.7) !important;
            }
        }

        .activity-grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 6px;
            max-width: 100%;
        }

        @media screen and (min-width: 640px) {
            .activity-grid-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Desktop Layout - 3-2-3 */
@media screen and (min-width: 960px){
    .activity-grid-container{
        display:grid;
        grid-template-columns:repeat(10, 1fr);
        grid-template-rows:repeat(2, 1fr);
        gap:6px;
    }
    
    /* SOL TARAF - ORİJİNAL */
    .activity-card:nth-child(1){
        grid-column:1 / 3;
        grid-row:1 / 2;
    }
    .activity-card:nth-child(2){
        grid-column:3 / 5;
        grid-row:1 / 2;
    }
    .activity-card:nth-child(3){
        grid-column:1 / 5;
        grid-row:2 / 3;
    }
    
    /* ORTA - ORİJİNAL */
    .activity-card:nth-child(4){
        grid-column:5 / 7;
        grid-row:1 / 2;
    }
    .activity-card:nth-child(5){
        grid-column:5 / 7;
        grid-row:2 / 3;
    }
    
    /* SAĞ TARAF - DEĞİŞTİRİLDİ */
    .activity-card:nth-child(6){
        grid-column:7 / 11;
        grid-row:1 / 2;
    }
    .activity-card:nth-child(7){
        grid-column:7 / 9;
        grid-row:2 / 3;
    }
    .activity-card:nth-child(8){
        grid-column:9 / 11;
        grid-row:2 / 3;
    }
}

  .activity-card{
    position:relative;
    overflow:hidden;
    min-height:250px;
    cursor:pointer;
    transition:transform 0.3s ease;
}

@media screen and (min-width: 960px){
    .activity-card{
        min-height:420px;
    }
    
    /* Sol alttaki ve sağ üstteki büyük kartlar */
    .activity-card:nth-child(3),
    .activity-card:nth-child(6){
        min-height:480px;
    }
    
    /* Üst sıradaki küçük kartlar - daha kısa */
    .activity-card:nth-child(1),
    .activity-card:nth-child(2),
    .activity-card:nth-child(4){
        min-height:320px;
    }
    
    /* Alt sıradaki küçük kartlar - normal */
    .activity-card:nth-child(5),
    .activity-card:nth-child(7),
    .activity-card:nth-child(8){
        min-height:0px;
    }
}

        .activity-card:hover {
            transform: scale(1.02);
            z-index: 10;
        }

        .activity-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 12px;
        }

        /* Special styling for SPA card image */
        .spa-card-image {
            height: 100% !important;
        }

        @media screen and (min-width: 768px) {
            .spa-card-image {
                height: 87% !important;
            }
        }

        .activity-card-overlay {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.5rem 2rem;
            max-width: 70%;
            border-radius: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .activity-card:hover .activity-card-overlay {
            opacity: 1;
        }

        @media screen and (max-width: 959px) {
            .activity-card-overlay {
                background: rgba(0, 0, 0, 0.9) !important;
            }

            .activity-card.active-card .activity-card-overlay {
                opacity: 1;
            }
        }

        .activity-card-label {
            font-family: var(--font-main);
            font-size: 0.8125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .activity-card-title {
            font-family: var(--font-main);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-white);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        @media screen and (max-width: 959px) {
            .activity-card-title {
                font-size: 1.5rem;
            }
        }

        .activity-card-icon {
            width: 2rem;
            height: 2rem;
            display: inline-block;
        }

        .activity-card-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
        }

        /* ============================================
           FEATURES SECTION
        ============================================ */
        .features-section {
            background-color: var(--color-black);
            padding: 6rem 2rem;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .features-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        @media screen and (min-width: 1024px) {
            .features-indicators {
                display: none;
            }
        }

        .feature-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
        }

        .feature-indicator.active {
            background: var(--color-primary);
            width: 24px;
            border-radius: 4px;
        }

        .features-grid {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 3rem;
            scroll-snap-type: x mandatory;
        }

        .features-grid::-webkit-scrollbar {
            display: none;
        }

        @media screen and (min-width: 1024px) {
            .features-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 4rem;
                overflow-x: visible;
                scroll-snap-type: none;
            }
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 0 0 100%;
            scroll-snap-align: center;
        }

        @media screen and (min-width: 1024px) {
            .feature-card {
                flex: none;
                scroll-snap-align: none;
            }
        }

        .feature-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
        }

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

        .feature-icon i {
            font-size: 80px;
            color: var(--color-primary);
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .feature-title {
            font-family: var(--font-main);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .feature-description {
            font-family: var(--font-main);
            font-size: 0.9375rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 280px;
            letter-spacing: -0.01em;
        }

        /* ============================================
           SPA EXPERIENCE SECTION
        ============================================ */
        .spa-section {
            position: relative;
            height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .spa-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.3) 100%
            );
            z-index: 1;
        }

        .spa-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .spa-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .spa-title {
            font-family: var(--font-main);
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .spa-subtitle {
            font-family: var(--font-main);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }

        .spa-button {
            display: inline-block;
            padding: 0.875rem 2rem;
            background-color: var(--color-black);
            color: var(--color-white);
            font-family: var(--font-main);
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: 1px solid var(--color-black);
        }

        .spa-button:hover {
            background-color: var(--color-white);
            color: var(--color-black);
            border-color: var(--color-white);
        }

        @media screen and (max-width: 768px) {
            .spa-section {
                height: 500px;
            }

            .spa-title {
                font-size: 2.5rem;
            }

            .spa-subtitle {
                font-size: 1.25rem;
            }
        }

        /* Spa to Schedule Transition Arrow */
        .spa-schedule-transition {
            position: relative;
            height: 0;
        }

        .transition-arrow {
            position: absolute;
            top: -50px;
            right: 5%;
            width: 150px;
            height: auto;
            z-index: 10;
            object-fit: contain;
        }

        @media screen and (max-width: 768px) {
            .transition-arrow {
                width: 100px;
                top: -30px;
            }
        }

        /* ============================================
           SCHEDULE SECTION
        ============================================ */
        .schedule-section {
            background-color: var(--color-black);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .schedule-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .schedule-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .schedule-title {
            font-family: var(--font-main);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .schedule-description {
            font-family: var(--font-main);
            font-size: 1.125rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.75);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            letter-spacing: -0.01em;
        }

        @media screen and (max-width: 768px) {
            .schedule-title {
                font-size: 2.25rem;
            }
            
            .schedule-description {
                font-size: 1rem;
            }
        }

        /* Schedule Table */
        .schedule-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }

        .schedule-table thead {
            background-color: rgba(0, 0, 0, 0.4);
        }

        .schedule-table th {
            padding: 1.5rem 1rem;
            text-align: center;
            font-family: var(--font-main);
            font-size: 0.8125rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .schedule-table th:last-child {
            border-right: none;
        }

        .schedule-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .schedule-table tbody tr:last-child {
            border-bottom: none;
        }

        .schedule-table td {
            padding: 1.5rem 1rem;
            text-align: center;
            vertical-align: middle;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .schedule-table td:last-child {
            border-right: none;
        }

        .schedule-time {
            font-family: var(--font-main);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .schedule-class {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .schedule-class-name {
            font-family: var(--font-main);
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .schedule-class-instructor {
            font-family: var(--font-main);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.55);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        .schedule-empty {
            min-height: 60px;
        }

        @media screen and (max-width: 768px) {
            .schedule-table th,
            .schedule-table td {
                padding: 1rem 0.5rem;
            }

            .schedule-class-name {
                font-size: 0.75rem;
            }

            .schedule-class-instructor {
                font-size: 0.625rem;
            }
        }

        /* ============================================
           WHY CLUBSPORIUM SECTION
        ============================================ */
        .why-section {
            background-color: var(--color-black);
            padding: 6rem 0;
            overflow: hidden;
        }

        @media screen and (max-width: 640px) {
            .why-section {
                padding-bottom: 0;
            }
        }

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

        @media screen and (max-width: 640px) {
            .why-container {
                padding: 0;
            }
        }

        .why-main-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        @media screen and (min-width: 1024px) {
            .why-main-grid {
                display: grid;
                grid-template-columns: 1.4fr 1fr;
                gap: 0;
                position: relative;
            }
        }

        /* Images Section */
        .why-images-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            order: 2;
            padding-bottom: 0;
        }

        @media screen and (min-width: 1024px) {
            .why-images-section {
                gap: 2rem;
                order: 0;
            }
        }

        .why-image-item {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 12px;
            overflow: hidden;
        }

        @media screen and (max-width: 640px) {
            .why-image-item {
                aspect-ratio: 1 / 1.2;
                border-radius: 0;
            }
        }

        @media screen and (min-width: 1024px) {
            .why-image-item {
                aspect-ratio: 3 / 5;
            }
        }

        .why-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .why-image-item:hover img {
            transform: scale(1.05);
        }

        /* Content Section */
        .why-content-section {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            order: 1;
        }

        @media screen and (max-width: 640px) {
            .why-content-section {
                padding: 0 1.5rem;
            }
        }

        @media screen and (min-width: 1024px) {
            .why-content-section {
                order: 0;
            }
        }

        @media screen and (min-width: 1024px) {
            .why-content-section {
                position: relative;
                z-index: 2;
                margin-left: -4rem;
                background: transparent;
                padding: 3rem;
                border-radius: 12px;
            }
        }

        .why-text-content {
            margin-bottom: 1rem;
        }

        .why-main-title {
            font-family: var(--font-main);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .why-main-description {
            font-family: var(--font-main);
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 550px;
            letter-spacing: -0.01em;
            font-weight: 400;
        }

        @media screen and (max-width: 768px) {
            .why-main-title {
                font-size: 2.5rem;
            }
            
            .why-main-description {
                font-size: 1rem;
            }
        }

        /* Stats Grid */
        .why-stats-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-box {
            background: rgba(40, 40, 40, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        @media screen and (max-width: 640px) {
            .stat-box {
                padding: 1.25rem;
            }
        }

        .stat-box:hover {
            border-color: rgba(168, 85, 247, 0.4);
            transform: translateY(-4px);
        }

        .stat-box--purple {
            background: #82285f;
            border-color: transparent;
        }

        .stat-category {
            font-family: var(--font-main);
            font-size: 0.8125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .stat-box--purple .stat-category {
            color: rgba(255, 255, 255, 0.95);
        }

        .stat-value {
            font-family: var(--font-main);
            font-size: 4rem;
            font-weight: 800;
            color: var(--color-white);
            line-height: 1;
            margin-bottom: 0.75rem;
            letter-spacing: -0.03em;
        }

        @media screen and (max-width: 640px) {
            .stat-value {
                font-size: 2.5rem;
                margin-bottom: 0.5rem;
            }
        }

        .stat-description {
            font-family: var(--font-main);
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        @media screen and (max-width: 640px) {
            .stat-description {
                font-size: 0.8125rem;
            }
        }

        .stat-box--purple .stat-description {
            color: rgba(255, 255, 255, 0.95);
        }

        @media screen and (max-width: 768px) {
            .stat-value {
                font-size: 3rem;
            }
        }

        /* ============================================
           VIDEO SECTION
        ============================================ */
        .video-section {
            background-color: var(--color-black);
            padding: 3rem 0;
        }

        @media screen and (min-width: 768px) {
            .video-section {
                padding: 6rem 0;
            }
        }

        .video-container {
            margin: 0;
        }

        @media screen and (min-width: 768px) {
            .video-container {
                padding: 0;
            }
        }

        .video-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        @media screen and (min-width: 768px) {
            .video-header {
                margin-bottom: 4rem;
                padding: 0;
            }
        }

        .video-title {
            font-family: var(--font-main);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .video-description {
            font-family: var(--font-main);
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        @media screen and (max-width: 768px) {
            .video-title {
                font-size: 2.5rem;
            }
            
            .video-description {
                font-size: 1rem;
            }
        }

        /* Main Video Player */
        .video-main-player {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            border-radius: 0;
            overflow: hidden;
            margin-bottom: 2rem;
            background: var(--color-black);
            cursor: pointer;
        }

        @media screen and (min-width: 768px) {
            .video-main-player {
                aspect-ratio: 16 / 9;
                margin-bottom: 3rem;
                max-height: 600px;
            }
        }

        .video-main-player img,
        .video-main-player video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: object-fit 0.3s ease;
        }

        .video-main-player video.playing {
            object-fit: none;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            border: none;
            cursor: pointer;
        }

        .video-main-player:hover .video-play-button {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-button svg {
            width: 32px;
            height: 32px;
            fill: black;
            margin-left: 4px;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.1) 50%,
                rgba(0, 0, 0, 0.3) 100%
            );
        }

        /* Thumbnail Gallery */
        .video-thumbnails {
            position: relative;
            overflow: hidden;
        }

        .video-thumbnails-track {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            width: 100%;
        }

        @media screen and (min-width: 768px) {
            .video-thumbnails-track {
                grid-template-columns: repeat(4, 1fr);
                gap: 0;
            }
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 20;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        @media screen and (min-width: 768px) {
            .video-thumbnail {
                aspect-ratio: 16 / 22;
                border-radius: 0;
            }
        }

        .video-thumbnail:hover {
            transform: scale(1.05);
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .video-thumbnail-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }

        .video-thumbnail:hover .video-thumbnail-overlay {
            background: rgba(0, 0, 0, 0.4);
        }


        /* ============================================
           FOOTER
        ============================================ */
        .site-footer {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 4rem 0 2rem;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media screen and (min-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media screen and (min-width: 1024px) {
            .footer-top {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 4rem;
            }
        }

        /* Footer Brand */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-logo {
            width: 180px;
            height: auto;
        }

        .footer-contact-section h3,
        .footer-email-section h3,
        .footer-social-section h3 {
            font-family: var(--font-main);
            font-size: 0.8125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .footer-phone {
            font-family: var(--font-main);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-white);
            text-decoration: none;
            display: block;
            letter-spacing: -0.02em;
        }

        .footer-phone:hover {
            color: var(--color-primary);
        }

        .footer-email {
            font-family: var(--font-main);
            font-size: 0.9375rem;
            color: var(--color-white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .footer-email:hover {
            color: var(--color-primary);
        }

        .footer-social-section {
            margin-top: 2rem;
        }

        .footer-social-links {
            display: flex;
            gap: 0.5rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            transition: color 0.3s ease;
        }

        .footer-social-link:hover {
            color: var(--color-primary);
        }

        .footer-social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

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

        .footer-column-title {
            font-family: var(--font-main);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

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

        .footer-menu-item {
            margin-bottom: 0.75rem;
        }

        .footer-menu-link {
            font-family: var(--font-main);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .footer-menu-link:hover {
            color: var(--color-primary);
        }

        /* Footer CTA */
        .footer-cta {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }

        @media screen and (max-width: 1023px) {
            .footer-cta {
                justify-content: flex-start;
            }
        }

        .footer-cta-button {
            background-color: var(--color-primary);
            color: var(--color-white);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: var(--font-main);
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.3s ease;
            letter-spacing: -0.01em;
        }

        .footer-cta-button:hover {
            background-color: var(--color-primary-hover);
        }

        .footer-cta-button svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media screen and (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-copyright {
            font-family: var(--font-main);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.75rem;
        }

        .footer-legal-link {
            font-family: var(--font-main);
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .footer-legal-link:hover {
            color: var(--color-white);
        }

        /* ============================================
   ACTIVITY GRID SECTION
============================================ */
.activity-grid {
    width: 100%;
    background-color: var(--color-black);
    padding: 4rem 0;
    position: relative;
}
.activity-grid-header {
    text-align: center;
    padding: 0 2rem 4rem;
    max-width: 60rem;
    margin: 0 auto;
}
.activity-grid-title {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.activity-grid-description {
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    letter-spacing: -0.01em;
}
@media screen and (max-width: 959px) {
    .activity-grid-title {
        font-size: 2.25rem;
    }
    
    .activity-grid-description {
        font-size: 1rem;
    }
}
.activity-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 100%;
    padding-bottom:5px;
    padding:5px;
}

@media screen and (min-width: 640px) {
    .activity-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop Layout - 3-2-3 */
@media screen and (min-width: 960px) {
    .activity-grid-container {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: 420px 480px;
        gap: 6px;
    }
    /* SOL TARAF - ORİJİNAL */
    .activity-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .activity-card:nth-child(2) {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }
    .activity-card:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 2 / 3;
    }
    /* ORTA - ORİJİNAL */
    .activity-card:nth-child(4) {
        grid-column: 5 / 7;
        grid-row: 1 / 2;
    }
    .activity-card:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2 / 3;
    }
    /* SAĞ TARAF - DEĞİŞTİRİLDİ */
    .activity-card:nth-child(6) {
        grid-column: 7 / 11;
        grid-row: 1 / 2;
    }
    .activity-card:nth-child(7) {
        grid-column: 7 / 9;
        grid-row: 2 / 3;
    }
    .activity-card:nth-child(8) {
        grid-column: 9 / 11;
        grid-row: 2 / 3;
    }
}
.activity-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
/* Mobile için min-height ve max-height */
@media screen and (max-width: 959px) {
    .activity-card {
        min-height: 250px;
        max-height: 300px;
    }
}
/* Desktop için her kart tam grid cell'i kaplasın */
@media screen and (min-width: 960px) {
    .activity-card {
        height: 100%;
    }
}
.activity-card:hover {
    transform: scale(1.02);
    z-index: 10;
}
.activity-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
.activity-card-overlay {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem;
    max-width: 70%;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.activity-card:hover .activity-card-overlay {
    opacity: 1;
}

@media screen and (max-width: 959px) {
    .activity-card.active-card .activity-card-overlay {
        opacity: 1;
    }
}
.activity-card-label {
    font-family: var(--font-main);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.activity-card-title {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
@media screen and (max-width: 959px) {
    .activity-card-title {
        font-size: 1.5rem;
    }
}
.activity-card-icon {
    width: 2rem;
    height: 2rem;
    display: inline-block;
}
.activity-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

/* ============================================
   BREADCRUMBS
============================================ */
.breadcrumbs-wrapper {
    background-color: #222222;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

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

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.breadcrumb-link:hover {
    color: var(--color-primary);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    user-select: none;
}

.breadcrumb-current {
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
    .breadcrumbs-wrapper {
        padding: 1rem 0;
    }
    
    .breadcrumbs {
        font-size: 0.8125rem;
    }
}
/* ============================================
   BRANCH HERO WITH INFO SECTION
============================================ */
.branch-hero-info {
    background-color: var(--color-black);
}

/* Hero Image Section */
.branch-hero-info-image {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .branch-hero-info-image {
        height: 450px;
    }
}

.branch-hero-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.branch-hero-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.branch-hero-info-title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.branch-hero-info-title h1 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
    .branch-hero-info-title h1 {
        font-size: 3rem;
    }
}

/* Info Grid Section */
.branch-hero-info-grid {
    background-color: var(--color-black);
    padding: 0;
}

.branch-hero-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
}

@media screen and (min-width: 1024px) {
    .branch-hero-info-container {
        grid-template-columns: 1fr 1fr;
        padding: 50px;
    }
}

/* Left Side: Features */
.branch-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .branch-hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.branch-hero-feature-card {
    min-height: 170px;
    max-height:200px;
    border-radius:25px;
    background-color:rgb(27 27 27);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.branch-hero-feature-card:hover {
    background-color: rgba(130, 40, 95, 0.1);
    border-color: rgba(130, 40, 95, 0.3);
}

@media screen and (min-width: 768px) {
    .branch-hero-feature-card:nth-child(4),
    .branch-hero-feature-card:nth-child(5),
    .branch-hero-feature-card:nth-child(6) {
        margin-top: -20px;
    }
}

.branch-hero-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-hero-feature-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.branch-hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.branch-hero-feature-number {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.branch-hero-feature-label {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Right Side: Description */
.branch-hero-description {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .branch-hero-description {
        padding: 3rem 4rem;
    }
}

.branch-hero-description p {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .branch-hero-description p {
        font-size: 1rem;
        line-height: 2;
    }
}

.breadcrumbs-wrapper {
    background-color: #222222;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

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

/* ============================================
   BRANCH GALLERY SECTION
============================================ */
.branch-gallery-section {
    background-color: var(--color-bg);
    padding: 1rem 0;
}

@media screen and (min-width: 768px) {
    .branch-gallery-section {
        padding: 6rem 0;
    }
}

.branch-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media screen and (min-width: 768px) {
    .branch-gallery-container {
        gap: 1rem;
    }
}

@media screen and (min-width: 1024px) {
    .branch-gallery-container {
        grid-template-columns: 250px 1fr;
        gap: 4rem;
    }
}

/* Left: Category Tabs */
.branch-gallery-tabs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 0.75rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
    scroll-snap-type: x proximity; /* Snap to buttons */
}

.branch-gallery-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

@media screen and (min-width: 1024px) {
    .branch-gallery-tabs {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.branch-gallery-tab {
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background-color: rgba(189, 189, 187, 0.2);
    border: none;
    border-radius: 20px;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 1024px) {
    .branch-gallery-tab {
        font-size: 1rem;
        border-radius: 25px;
        padding: 0.875rem 2rem;
    }
}

.branch-gallery-tab:hover {
    background-color: rgba(130, 40, 95, 0.1);
    color: var(--color-primary);
}

.branch-gallery-tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Right: Gallery Grid */
.branch-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media screen and (min-width: 640px) {
    .branch-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .branch-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.branch-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.branch-gallery-item:hover {
    transform: scale(1.03);
}

.branch-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.branch-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.branch-gallery-item:hover .branch-gallery-overlay {
    background: rgba(130, 40, 95, 0.2);
}

/* Hide items animation */
.branch-gallery-item.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.branch-gallery-item.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   GROUP CLASSES SECTION
============================================ */
.group-classes-section {
    background-color: var(--color-white);
    padding: 4rem 0;
}

@media screen and (min-width: 768px) {
    .group-classes-section {
        padding: 6rem 0;
    }
}

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

/* Header */
.group-classes-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .group-classes-header {
        margin-bottom: 4rem;
    }
}

.group-classes-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
    .group-classes-title {
        font-size: 3rem;
    }
}

.group-classes-description {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.8;
    letter-spacing: -0.01em;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .group-classes-description {
        font-size: 1.0625rem;
        line-height: 1.9;
    }
}

/* Classes Grid */
.group-classes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media screen and (min-width: 640px) {
    .group-classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .group-classes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Class Card */
.group-class-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}

.group-class-card:hover {
    transform: translateY(-8px);
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);*/
}

.group-class-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.group-class-card:hover img {
    /*transform: scale(1.1);*/
}

.group-class-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    /*transition: background 0.4s ease;*/
}


.group-class-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
}

.group-class-name {
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 768px) {
    .group-class-name {
        font-size: 2rem;
    }
}

/* Special Layout for 5 items (2-3 grid) */
@media screen and (min-width: 1024px) {
    .group-classes-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .group-class-card:nth-child(4),
    .group-class-card:nth-child(5) {
        grid-row: 2;
    }
    
    .group-class-card:nth-child(4) {
        grid-column: 1;
    }
    
    .group-class-card:nth-child(5) {
        grid-column: 2;
    }
}

/* ============================================
   TRAINERS SECTION
============================================ */
.trainers-section {
    background-color: var(--color-black);
    padding: 4rem 0;
}

@media screen and (min-width: 768px) {
    .trainers-section {
        padding: 6rem 0;
    }
}

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

/* Header */
.trainers-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .trainers-header {
        margin-bottom: 4rem;
    }
}

.trainers-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
    .trainers-title {
        font-size: 3.5rem;
    }
}

/* Trainers Grid */
.trainers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media screen and (min-width: 640px) {
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .trainers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Trainer Card */
.trainer-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(130, 40, 95, 0.3);
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: grayscale(0%);
}

.trainer-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.trainer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: background 0.4s ease;
}

.trainer-card:hover .trainer-overlay {
    background: linear-gradient(
        180deg,
        rgba(130, 40, 95, 0.1) 0%,
        rgba(130, 40, 95, 0.3) 40%,
        rgba(130, 40, 95, 0.8) 100%
    );
}

/* Trainer Info */
.trainer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
    transition: transform 0.4s ease;
}

.trainer-card:hover .trainer-info {
    transform: translateY(-8px);
}

.trainer-name {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

@media screen and (min-width: 768px) {
    .trainer-name {
        font-size: 1.75rem;
    }
}

.trainer-role {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
    .trainer-role {
        font-size: 1rem;
    }
}

/* Special Layout for 5 items */
@media screen and (min-width: 1024px) {
    .trainers-grid {
        grid-template-rows: auto auto;
    }
    
    .trainer-card:nth-child(4),
    .trainer-card:nth-child(5) {
        grid-row: 2;
    }
    
    .trainer-card:nth-child(4) {
        grid-column: 1;
    }
    
    .trainer-card:nth-child(5) {
        grid-column: 2;
    }
}/* ============================================
   BRANCH HERO WITH INFO SECTION
============================================ */
.branch-hero-info {
    background-color: var(--color-black);
}

/* Hero Image Section */
.branch-hero-info-image {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .branch-hero-info-image {
        height: 450px;
    }
}

.branch-hero-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.branch-hero-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.branch-hero-info-title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.branch-hero-info-title h1 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
    .branch-hero-info-title h1 {
        font-size: 3rem;
    }
}

/* Info Grid Section */
.branch-hero-info-grid {
    background-color: var(--color-black);
    padding: 0;
}

.branch-hero-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
}

@media screen and (min-width: 1024px) {
    .branch-hero-info-container {
        grid-template-columns: 1fr 1fr;
        padding: 50px;
    }
}

/* Left Side: Features */
.branch-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .branch-hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.branch-hero-feature-card {
    min-height: 170px;
    max-height:200px;
    border-radius:25px;
    background-color:rgb(27 27 27);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.branch-hero-feature-card:hover {
    background-color: rgba(130, 40, 95, 0.1);
    border-color: rgba(130, 40, 95, 0.3);
}

@media screen and (min-width: 768px) {
    .branch-hero-feature-card:nth-child(4),
    .branch-hero-feature-card:nth-child(5),
    .branch-hero-feature-card:nth-child(6) {
        margin-top: -20px;
    }
}

.branch-hero-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-hero-feature-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.branch-hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.branch-hero-feature-number {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.branch-hero-feature-label {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Right Side: Description */
.branch-hero-description {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .branch-hero-description {
        padding: 3rem 4rem;
    }
}

.branch-hero-description p {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .branch-hero-description p {
        font-size: 1rem;
        line-height: 2;
    }
}

.breadcrumbs-wrapper {
    background-color: #222222;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* ============================================
   CALL MODAL
============================================ */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.call-modal-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: white !important;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    max-height: 100vh;
    margin: 0;
    z-index: 100000 !important;
}

.call-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 2.5rem;
    height: 2.5rem;
    color: white !important;
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
}

.call-modal-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.call-modal-header {
    position: relative;
    padding: 1rem;
    background: transparent !important;
    color: white !important;
}

.call-modal-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #82285f, #9c3573, #1a202c) !important;
}

.call-modal-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.call-pattern-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: white !important;
    border-radius: 9999px;
    filter: blur(64px);
}

.call-pattern-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background: white !important;
    border-radius: 9999px;
    filter: blur(40px);
}

.call-modal-header-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent !important;
}

.call-modal-icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(4px);
    color: white !important;
}

.call-modal-icon svg {
    color: white !important;
}

.call-modal-icon svg path {
    stroke: white !important;
}

.call-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white !important;
    margin: 0;
}

.call-modal-subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0.125rem 0 0 0;
}

.call-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #ffffff !important;
}

.call-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.call-form-group {
    display: grid;
    gap: 0.5rem;
}

.call-form-full {
    grid-column: span 1;
}

.call-form-full-mobile {
    grid-column: span 1;
}

.call-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.call-form-group input {
    display: flex;
    height: 2.75rem;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background: #ffffff !important;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s;
    outline: none;
    color: #1f2937 !important;
}

.call-form-group input::placeholder {
    opacity: 1;
    color: #9ca3af;
}

.call-form-group input:focus {
    border-color: #82285f;
    box-shadow: 0 0 0 2px rgba(130, 40, 95, 0.2);
}

.call-form-select {
    display: flex;
    height: 2.75rem;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background: #ffffff !important;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s;
    outline: none;
    color: #1f2937 !important;
    cursor: pointer;
}

.call-form-select:focus {
    border-color: #82285f;
    box-shadow: 0 0 0 2px rgba(130, 40, 95, 0.2);
}

.call-kvkk-label {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.call-kvkk-checkbox {
    width: 1rem !important;
    height: 1rem !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #82285f;
    min-width: 1rem;
    max-width: 1rem;
}

.call-kvkk-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
}

.call-kvkk-text a {
    color: #82285f;
    text-decoration: underline;
    font-weight: 500;
}

.call-kvkk-text a:hover {
    color: #9c3573;
}

.call-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.15s;
    background: linear-gradient(to right, #82285f, #1a202c) !important;
    color: white !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1rem;
    width: 100%;
    height: 3rem;
    border: none;
    cursor: pointer;
}

.call-submit-btn:hover {
    opacity: 0.9;
}

.call-submit-btn svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .call-modal-overlay {
        padding: 1rem;
    }

    .call-modal-content {
        max-width: 700px;
        border-radius: 0.5rem;
        margin: 0;
        max-height: 95vh;
    }

    .call-modal-body {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .call-form-grid {
        gap: 1.5rem 1.5rem;
    }

    .call-form-full-mobile {
        grid-column: span 1;
    }

    .call-kvkk-text {
        font-size: 1rem;
    }

    .call-submit-btn {
        height: 3.5rem;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-1rem);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast-show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

@media (max-width: 640px) {
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
