/* ============================================
   BDDMEP THEME - PROFESSIONAL BLUE EDITION
   Modern Fintech/Banking Style
   ============================================ */

/* Google Fonts - Poppins for Professional Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* CSS Variables - BDDMEP Professional Blue Palette */
:root {
    /* Force light mode - disable dark mode */
    color-scheme: light only;

    /* Primary Colors - New Palette */
    --primary-dark: #04133f;
    /* Ana koyu lacivert */
    --primary-purple: #5107a4;
    /* Mor vurgu */
    --primary-blue: #084ba7;
    /* Mavi vurgu */
    --primary-blue-light: #1a6fd4;
    /* Açık mavi */
    --primary-purple-light: #7b2fcf;
    /* Açık mor */

    /* Background Gradients */
    --gradient-primary: linear-gradient(135deg, #04133f 0%, #5107a4 50%, #084ba7 100%);
    --gradient-hero: linear-gradient(135deg, #020a1f 0%, #04133f 30%, #5107a4 70%, #084ba7 100%);
    --gradient-button: linear-gradient(90deg, #5107a4 0%, #084ba7 100%);
    --gradient-accent: linear-gradient(135deg, #5107a4 0%, #084ba7 50%, #1a6fd4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(81, 7, 164, 0.1) 0%, rgba(8, 75, 167, 0.05) 100%);

    /* Legacy support - mapped to new colors */
    --primary-color: #5107a4;
    --accent-magenta: #5107a4;
    --accent-magenta-light: #7b2fcf;
    --navy-dark: #04133f;
    --ses-dark: #04133f;

    --text-body-light: rgba(255, 255, 255, 0.75);
    --text-body-dark: #4A5568;
    --bg-light: #f8fafc;
    --white: #ffffff;

    /* Typography - Poppins */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing & Radius */
    --section-spacing: 100px;
    --border-radius: 24px;
    --btn-radius: 50px;

    /* Shadows with Blue/Purple glow */
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 40px rgba(81, 7, 164, 0.3);

    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body-dark);
    background-color: var(--white);
    min-height: 100vh;
}

main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-body-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS - SES ANTALYA STYLE
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(81, 7, 164, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(81, 7, 164, 0.5);
    color: var(--white);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(81, 7, 164, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(81, 7, 164, 0.15);
    border-color: var(--primary-magenta);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(81, 7, 164, 0.2);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(81, 7, 164, 0.35);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 126, 0.4);
    color: var(--white);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, #50abc7 0%, #3d9ab8 100%);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left span i {
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Adjust navbar position when top bar is present */
.home-page .navbar {
    top: 40px;
}

.home-page .hero-wrapper {
    padding-top: 170px;
}

@media (max-width: 768px) {
    .top-bar-left span:nth-child(2) {
        display: none;
    }

    .top-bar {
        padding: 8px 0;
    }

    .home-page .navbar {
        top: 36px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .home-page .navbar {
        top: 0;
    }

    .home-page .hero-wrapper {
        padding-top: 130px;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    padding: 20px 0;
    border-bottom: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

/* Scrolled state - solid background */
.navbar.scrolled {
    background: #04133f;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.nav-brand img {
    height: 80px;
    transition: filter 0.3s ease;
}

/* Homepage - white logo */
.home-page .nav-brand img {
    filter: brightness(0) invert(1);
}

/* Scrolled state - white logo */
.navbar.scrolled .nav-brand img {
    filter: brightness(0) invert(1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: #2c3e50;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: #4a5568;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    padding: 10px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(199, 28, 28, 0.08);
}

/* Homepage - white nav links */
.home-page .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.home-page .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.home-page .brand-name {
    color: rgba(255, 255, 255, 0.95);
}

.home-page .brand-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Homepage navbar button - turkuaz */
.home-page .navbar .btn-primary {
    background: linear-gradient(135deg, #50abc7 0%, #3d9ab8 100%);
    box-shadow: 0 10px 30px rgba(80, 171, 199, 0.35);
}

.home-page .navbar .btn-primary:hover {
    background: linear-gradient(135deg, #5dbfd9 0%, #50abc7 100%);
    box-shadow: 0 15px 50px rgba(80, 171, 199, 0.5);
}

/* Scrolled state - keep white text */
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-link,
.navbar.scrolled .brand-name,
.navbar.scrolled .brand-subtitle {
    color: #ffffff;
}

.navbar.scrolled .brand-subtitle {
    opacity: 0.9;
}

.navbar.scrolled .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Hide subtitle on smaller screens */
@media (max-width: 1200px) {
    .brand-subtitle {
        display: none;
    }
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 15px 0 10px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    margin-top: 0;
}

/* Invisible bridge to prevent hover loss */
.nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: var(--text-body-dark);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* MEGA MENU */
.dropdown-menu.mega-menu {
    display: none;
    min-width: 800px;
    left: 0;
    transform: none;
    padding: 30px 30px 30px;
    flex-direction: row;
    gap: 30px;
    border-top: 3px solid var(--primary-color);
}

.nav-item.dropdown:hover .dropdown-menu.mega-menu {
    display: flex;
}

.menu-column {
    flex: 1;
    min-width: 0;
}

.menu-title {
    font-size: 12px;
    font-weight: 800;
    color: #8d1251;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8d1251;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-height: 40px;
    display: flex;
    align-items: flex-end;
}

.menu-column a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0 -12px;
}

.menu-column a:hover {
    background: rgba(199, 28, 28, 0.08);
    color: var(--primary-color);
    padding-left: 18px;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--dark-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar.scrolled .mobile-toggle {
    color: var(--white);
}

/* ============================================
   HERO SECTION - NON-FULL-HEIGHT CONTAINED STYLE
   ============================================ */

/* Hero Wrapper - provides padding/breathing room */
.hero-wrapper {
    background: #0f153c;
    padding: 130px 12px 80px;
    position: relative;
    overflow: hidden;
}

/* Background Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 21, 60, 0.85) 0%,
            rgba(15, 21, 60, 0.7) 50%,
            rgba(15, 21, 60, 0.85) 100%);
    z-index: 1;
}

/* Dot pattern for hero wrapper background */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}

/* Special container for hero - wider with minimal side margins */
.hero-wrapper>.container {
    max-width: 1600px;
    padding: 0 12px;
    position: relative;
    z-index: 3;
}

/* Hero Section - Now contained with rounded corners */
.hero-section {
    background: var(--gradient-hero);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 32px;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Gradient Overlay for Video */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(13, 2, 33, 0.85) 0%,
            rgba(26, 10, 62, 0.8) 30%,
            rgba(45, 27, 105, 0.75) 70%,
            rgba(21, 8, 53, 0.85) 100%);
    z-index: 1;
}

/* Adjust pattern z-index for video mode */
.hero-video .hero-pattern {
    z-index: 2;
}

.hero-video .hero-content {
    z-index: 3;
}

.hero-video::before,
.hero-video::after {
    z-index: 2;
}

/* Abstract dot pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(81, 7, 164, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Decorative Wave/Circle Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(81, 7, 164, 0.15) 0%, rgba(81, 7, 164, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Secondary decorative circle */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 47, 207, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

/* Slider Container */
.hero-slider {
    position: relative;
    background: transparent;
    border-radius: 32px;
    overflow: hidden;
}

/* Slides Container */
.hero-slides {
    position: relative;
    min-height: 500px;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Slide Content Container */
.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 80px;
    position: relative;
}

/* Slide Text Content */
.slide-text {
    max-width: 700px;
    text-align: center;
}

.slide-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: rgba(81, 7, 164, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
}

.slide-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
}

.slide-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-body-light);
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation Arrows */
.hero-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(81, 7, 164, 0.6);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(81, 7, 164, 0.6);
    transform: scale(1.3);
}

/* Decorative elements for slider */
.hero-slider::before {
    display: none;
}

.hero-slide .slide-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-text .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-body-light);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--ses-dark);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.social-proof-text {
    color: var(--text-body-light);
    font-size: 14px;
}

.social-proof-text strong {
    color: var(--white);
    font-size: 16px;
    display: block;
}

/* Hero Dashboard Mockup */
.hero-dashboard {
    position: relative;
}

.dashboard-main {
    background: linear-gradient(135deg, rgba(13, 36, 71, 0.95), rgba(26, 10, 62, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 80px 30px 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.dashboard-stat-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.mini-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.mini-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(0, 194, 203, 0.3), rgba(0, 194, 203, 0.1));
    border-radius: 6px;
    transition: var(--transition);
}

.chart-bar.active {
    background: linear-gradient(180deg, #00C2CB, #00d4aa);
    box-shadow: 0 0 20px rgba(0, 194, 203, 0.4);
}

.chart-bar:hover {
    background: linear-gradient(180deg, rgba(0, 194, 203, 0.5), rgba(0, 194, 203, 0.2));
}

/* Float Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 22px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
}

.float-card.top-right {
    top: -10px;
    right: -40px;
}

.float-card.bottom-left {
    bottom: 40px;
    left: -50px;
    animation-delay: 2.5s;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.float-icon.success {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.15), rgba(0, 212, 170, 0.1));
    color: #00C2CB;
}

.float-icon.shield {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(81, 7, 164, 0.1));
    color: #6366f1;
}

/* Floating Notification */
.float-notification {
    position: absolute;
    bottom: 150px;
    right: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-dark);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.notif-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 35px 28px;
    border-radius: 20px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.feature-card::before {
    display: none;
}

.feature-card h3 {
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card .learn-more-link {
    color: #fff;
}

.feature-card .learn-more-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Card 1 - Turkuaz */
.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #50abc7 0%, #3d9ab8 100%);
    box-shadow: 0 10px 30px rgba(80, 171, 199, 0.3);
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-card:nth-child(1):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(80, 171, 199, 0.4);
}

/* Card 2 - Turuncu */
.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-card:nth-child(2):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 126, 34, 0.4);
}

/* Card 3 - Bordo */
.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #8d1251 0%, #c71c6f 100%);
    box-shadow: 0 10px 30px rgba(141, 18, 81, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-card:nth-child(3):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(141, 18, 81, 0.4);
}

/* Card 4 - Lacivert (daha açık ton) */
.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-card:nth-child(4):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(4, 19, 63, 0.4);
}

.feature-card:nth-child(4):hover .feature-icon {
    background: linear-gradient(135deg, #04133f, #0a2463);
    color: #fff;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    height: 6px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-body-dark);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-dark);
}

.learn-more-link:hover {
    color: var(--primary-color);
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-body-light);
    margin: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
/* NEWSLETTER WRAPPER - Footer style with side margins */
.newsletter-wrapper {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf1 100%);
    padding: 80px 12px;
    position: relative;
}

/* Dot pattern for newsletter wrapper background */
.newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #04133f 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

/* Newsletter container - wider with minimal side margins */
.newsletter-wrapper>.container {
    max-width: 1600px;
    padding: 0 12px;
}

.newsletter-section {
    background: var(--gradient-primary);
    padding: 60px 50px;
    border-radius: 32px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 16px 32px;
    background: #C71C1C;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #e82424;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 28, 28, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer Wrapper - provides padding/breathing room like hero */
.footer-wrapper {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf1 100%);
    padding: 80px 12px;
    position: relative;
}

/* Dot pattern for footer wrapper background */
.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #04133f 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

/* Footer container - wider with minimal side margins */
.footer-wrapper>.container {
    max-width: 1600px;
    padding: 0 12px;
}

/* Footer - contained with rounded corners */
.footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 50px 0;
    border-radius: 32px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    background: transparent;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #50abc7;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   INNER PAGE COMPATIBILITY  
   ============================================ */
.geo-page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    text-align: center;
}

.geo-page-title {
    color: var(--white);
    font-size: 36px;
}

.geo-page-breadcrumb {
    color: var(--text-body-light);
}

.geo-page-breadcrumb a {
    color: var(--primary-color);
}

.geo-page-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.geo-page-content {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.geo-btn,
.geo-btn-primary {
    background: var(--gradient-button);
    color: var(--white);
    border-radius: var(--btn-radius);
    padding: 14px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.geo-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
}

.geo-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.geo-page-menu-btn,
.geo-mobile-nav,
.geo-overlay,
.geo-page-logo {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {

    /* Mega Menu Mobile */
    .dropdown-menu.mega-menu {
        position: fixed;
        top: 0;
        left: 10px;
        right: 10px;
        transform: none;
        min-width: auto;
        width: calc(100% - 20px);
        max-height: 70vh;
        overflow-y: auto;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        z-index: 9999;
    }

    .menu-column {
        width: 100%;
    }

    .menu-title {
        font-size: 11px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .menu-column a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-wrapper {
        padding: 90px 0 60px;
    }

    .hero-section {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .hero-video-container {
        border-radius: 24px;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        border-radius: 24px;
    }

    .hero-slides {
        min-height: 450px;
    }

    .slide-content {
        min-height: 450px;
        padding: 50px 40px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .hero-slider-arrows {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .float-card {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Home page - white hamburger icon */
    .home-page .mobile-toggle {
        color: var(--white);
    }

    /* Inner pages - dark hamburger icon */
    .inner-page .mobile-toggle {
        color: #2c3e50;
    }

    /* Mobile - smaller logo size */
    .nav-brand img {
        height: 50px;
    }

    /* Mobile home-page - white logo */
    .home-page .nav-brand img {
        filter: brightness(0) invert(1);
    }

    .home-page .nav-brand .brand-name {
        color: rgba(255, 255, 255, 0.95);
        font-size: 18px;
    }

    .home-page .nav-brand .brand-subtitle {
        display: none;
    }

    /* Mobile inner-page - colored logo, dark text */
    .inner-page .nav-brand .brand-name {
        color: #2c3e50;
        font-size: 18px;
    }

    .inner-page .nav-brand .brand-subtitle {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(4, 19, 63, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 30px 30px;
        display: none;
        overflow-y: auto;
        z-index: 9999;
        gap: 5px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        display: block;
        width: 100%;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .nav-menu .btn-primary {
        margin-top: 20px;
        text-align: center;
    }

    /* Mobile Dropdown */
    .nav-menu .nav-item.dropdown {
        width: 100%;
    }

    .nav-menu .nav-item.dropdown>.nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-menu .dropdown-menu.mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        width: 100%;
        max-height: none;
        overflow: visible;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
        box-shadow: none;
        border-top: none;
    }

    .nav-menu .nav-item.dropdown.open .dropdown-menu.mega-menu {
        display: flex;
    }

    .nav-menu .nav-item.dropdown:hover .dropdown-menu.mega-menu {
        display: none;
    }

    .nav-menu .nav-item.dropdown.open:hover .dropdown-menu.mega-menu {
        display: flex;
    }

    .nav-menu .menu-column {
        width: 100%;
    }

    .nav-menu .menu-title {
        color: rgba(255, 255, 255, 0.7);
        border-bottom-color: rgba(255, 255, 255, 0.2);
        font-size: 11px;
    }

    .nav-menu .menu-column a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 15px;
    }

    .nav-menu .menu-column a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    /* Mega Menu Small Mobile */
    .dropdown-menu.mega-menu {
        top: 60px;
        left: 5px;
        right: 5px;
        width: calc(100% - 10px);
        max-height: 60vh;
        padding: 15px;
        gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .menu-column {
        width: 100%;
    }

    .menu-title {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .menu-column a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .hero-wrapper {
        padding: 80px 0 40px;
    }

    .hero-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-video-container {
        border-radius: 20px;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        border-radius: 20px;
    }

    .hero-slides {
        min-height: 420px;
    }

    .slide-content {
        min-height: 420px;
        padding: 40px 25px 60px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 11px;
        padding: 6px 14px;
    }

    .slide-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hide arrows on mobile, dots are enough */
    .hero-slider-arrows {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-dashboard {
        display: none;
    }
}

/* ============================================
   SES ANTALYA MAGENTA THEME ENHANCEMENTS
   Inner Pages & Card Effects
   ============================================ */

/* Magenta Accent Variables */
:root {
    --ses-primary: #5107a4;
    --ses-light: #084ba7;
    --ses-dark: #1a0a3e;
    --ses-glow: rgba(81, 7, 164, 0.3);
    --gradient-ses: linear-gradient(135deg, #5107a4 0%, #084ba7 100%);
    --gradient-ses-dark: linear-gradient(135deg, #0d0221 0%, #1a0a3e 30%, #2d1b69 70%, #150835 100%);
}

/* ============================================
   ENHANCED PAGE HEADERS - SES ANTALYA
   ============================================ */
/* PAGE HEADER WRAPPER - Footer style with side margins */
.geo-page-header-wrapper {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf1 100%);
    padding: 100px 12px 40px;
    position: relative;
}

/* Dot pattern for page header wrapper background */
.geo-page-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #04133f 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

/* Page header container - wider with minimal side margins */
.geo-page-header-wrapper>.container {
    max-width: 1600px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.geo-page-header {
    background: var(--gradient-primary);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.geo-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Decorative circle on inner pages */
.geo-page-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.geo-page-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.geo-page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.geo-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.geo-page-breadcrumb a:hover {
    color: #ffffff;
}

.geo-page-breadcrumb i {
    font-size: 12px;
    opacity: 0.6;
}

.geo-page-header-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   GLASSMORPHISM CARDS - SES ANTALYA
   ============================================ */
.geo-page-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(81, 7, 164, 0.1);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.geo-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ses);
}

.geo-page-content h3 {
    color: var(--ses-dark);
    font-size: 24px;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--ses-primary);
}

.geo-page-content h3:first-of-type {
    margin-top: 0;
}

.geo-page-content p {
    color: var(--text-body-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.geo-page-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.geo-page-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-body-dark);
    line-height: 1.7;
}

.geo-page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gradient-ses);
    border-radius: 50%;
}

/* ============================================
   NEWS CARDS - FINPOAN STYLE
   ============================================ */
.geo-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.geo-news-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(81, 7, 164, 0.1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: var(--transition);
    position: relative;
}

.geo-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ses);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.geo-news-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(81, 7, 164, 0.15),
        0 0 0 1px rgba(81, 7, 164, 0.2);
}

.geo-news-card:hover::before {
    transform: scaleX(1);
}

.geo-news-card-content {
    padding: 80px 30px 30px;
}

.geo-news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ses-primary);
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(81, 7, 164, 0.08);
    border-radius: 20px;
}

.geo-news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ses-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.geo-news-excerpt {
    color: var(--text-body-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.geo-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ses-primary);
    transition: var(--transition);
}

.geo-news-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ============================================
   FEATURE CARDS - PURPLE ACCENT
   ============================================ */
.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(81, 7, 164, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--ses-primary);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-ses);
    color: var(--white);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(81, 7, 164, 0.1), rgba(99, 102, 241, 0.1));
}

/* ============================================
   BOARD MEMBERS - ENHANCED CARDS
   ============================================ */
.board-member-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 80px 30px 30px;
    text-align: center;
    border: 1px solid rgba(81, 7, 164, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.board-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ses);
}

.board-member-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(81, 7, 164, 0.12),
        0 0 0 1px rgba(81, 7, 164, 0.15);
}

/* ============================================
   GEO MEMBERS GRID - NO PHOTO CARDS
   ============================================ */
.geo-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.geo-member-card {
    background: white;
    border-radius: 16px;
    padding: 80px 30px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.geo-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #e82424 100%);
}

.geo-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.geo-member-info {
    padding-top: 10px;
}

.geo-member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.geo-member-company {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.geo-member-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.geo-member-since {
    display: inline-block;
    font-size: 11px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .geo-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .geo-member-card {
        padding: 20px;
    }

    .geo-member-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .geo-members-grid {
        grid-template-columns: 1fr;
    }
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--gradient-ses);
    padding: 4px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-photo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-ses);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ses-dark);
    margin-bottom: 8px;
}

.member-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ses-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-body-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(81, 7, 164, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ses-primary);
    transition: var(--transition);
}

.member-contact-btn:hover {
    background: var(--gradient-ses);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.geo-page-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.section {
    background: var(--bg-light);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 992px) {
    .geo-page-header-wrapper {
        padding: 90px 12px 30px;
    }

    .geo-page-header {
        padding: 50px 40px;
        border-radius: 24px;
    }

    .geo-page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .geo-page-header-wrapper {
        padding: 80px 8px 25px;
    }

    .geo-page-header {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .geo-page-title {
        font-size: 28px;
    }

    .geo-page-breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .geo-page-content {
        padding: 30px 20px;
    }

    .geo-news-grid {
        grid-template-columns: 1fr;
    }

    .member-photo,
    .member-photo-placeholder {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   E-BÜLTEN PAGE STYLES
   ============================================ */

/* Newsletter Wrapper - Two Column Layout */
.geo-newsletter-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Form Section */
.geo-newsletter-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.geo-newsletter-form-section h2 {
    font-size: 28px;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.geo-newsletter-desc {
    color: var(--text-body-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Form Styles */
.geo-newsletter-form .geo-form-group {
    margin-bottom: 20px;
}

.geo-newsletter-form .geo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 14px;
}

.geo-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.geo-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(81, 7, 164, 0.1);
}

/* Checkbox Styles */
.geo-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.geo-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.geo-form-checkbox label {
    font-size: 14px;
    color: var(--text-body-dark);
    line-height: 1.5;
}

.geo-form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Primary Button */
.geo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-button);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(81, 7, 164, 0.3);
}

.geo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(81, 7, 164, 0.4);
}

/* Benefits Section */
.geo-newsletter-benefits {
    background: linear-gradient(135deg, #04133f 0%, #5107a4 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
}

.geo-newsletter-benefits h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--white);
}

.geo-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.geo-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.geo-benefits-list li:last-child {
    border-bottom: none;
}

.geo-benefits-list li i {
    font-size: 24px;
    color: #50abc7;
    width: 35px;
}

.geo-benefits-list li span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Header */
.geo-section-header {
    text-align: center;
}

.geo-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.geo-section-title {
    font-size: 36px;
    color: var(--navy-dark);
    margin-bottom: 0;
}

/* Newsletter Archive Grid */
.geo-newsletter-archive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Newsletter Card */
.geo-newsletter-card {
    background: var(--white);
    padding: 80px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.geo-newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.geo-newsletter-issue {
    display: inline-block;
    background: rgba(81, 7, 164, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    width: fit-content;
}

.geo-newsletter-card-title {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.geo-newsletter-card-desc {
    font-size: 14px;
    color: var(--text-body-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.geo-newsletter-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.geo-newsletter-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-button);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.geo-newsletter-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 7, 164, 0.3);
    color: var(--white);
}

/* E-Bülten Responsive */
@media (max-width: 1200px) {
    .geo-newsletter-archive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .geo-newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .geo-newsletter-archive {
        grid-template-columns: 1fr;
    }

    .geo-newsletter-form-section,
    .geo-newsletter-benefits {
        padding: 30px 20px;
    }

    .geo-newsletter-form-section h2 {
        font-size: 24px;
    }
}

/* ============================================
   SOCIAL SHARE BUTTONS
   ============================================ */
.social-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.btn-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.45);
    color: var(--white);
}

.btn-linkedin i {
    font-size: 18px;
}

/* Mobile toggle button z-index */
@media (max-width: 768px) {
    .mobile-toggle {
        z-index: 10001;
    }
}

/* FORCE MOBILE MENU ON TOP - CRITICAL */
@media (max-width: 768px) {

    main,
    .geo-page-section,
    .geo-page-header-wrapper,
    .footer-wrapper,
    section {
        position: relative;
        z-index: 1 !important;
    }

    .navbar {
        z-index: 10000 !important;
    }

    .nav-menu {
        z-index: 99999 !important;
    }

    .nav-menu.active {
        display: flex !important;
    }
}