/* ===========================
   CSS Variables & Reset
   =========================== */

/* Decimal Font - Local */
@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-XLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-SemiboldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Ultra.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-UltraItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-XBlack.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Decimal';
    src: url('../fonts/decimal/Decimal-XBlackItalic.otf') format('opentype');
    font-weight: 950;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --bg-dark: #1C1C1C;
    --brand-blue: #294989;
    --brand-neon: #CEFF04;
    --brand-pink: #FF2E9B;
    --brand-red: #C41E3A;
    --brand-silver: #b3b5b8;
    
    /* Legacy Colors (for compatibility) */
    --primary-color: #1A1A1B;
    --accent-color: #2E5BFF;
    --accent-alt: #C0C0C0;
    --background-color: #F9F9F9;
    --white: #FFFFFF;
    --text-light: #FFFFFF;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    background-color: #FFFFFF;
    color: #1A1A1B;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

.section-text {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1B;
    margin-bottom: 1rem;
}

.section-divider {
    height: 4px;
    background: var(--brand-neon);
    margin: 1rem 0 2rem;
    width: 100%;
}

#hakkimda .section-divider {
    background: var(--brand-pink);
}

#vizyon .section-divider {
    background: var(--brand-neon);
}

#hizmetler .section-divider {
    background: var(--brand-blue);
}

#referanslar .section-divider {
    background: var(--brand-blue);
}

#etkinlikler .section-divider {
    background: var(--brand-blue);
}

#deneyim {
    background: var(--brand-neon);
}
#deneyim .section-title {
    color: var(--brand-blue);
}

#deneyim .section-divider {
    background: var(--brand-blue);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background: var(--brand-blue);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: none;
    z-index: 1000;
}

.navbar-home {
    background: transparent;
    box-shadow: none;
}

.navbar-brand {
    font-family: 'Decimal';
    font-weight: 150;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white) !important;
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.navbar-collapse {
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-link {
    font-family: 'Decimal';
    font-weight: 500;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0;
    padding: 0.4rem 0.5rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-neon) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-neon);
    transition: var(--transition);
}

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

/* ===========================
   Hero Section - Full Width Blue Background
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-blue);
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
}

.hero-fullwidth-img {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 3rem;
    margin-right: 5%;
    text-align: right;
}

.hero-title {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 450;
    font-size: 3.5rem;
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: 20% center;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background: var(--brand-neon);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Decimal';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--brand-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--brand-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Decimal';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-blue:hover {
    background: #1e3a6d;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-pink {
    background: var(--brand-pink);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Decimal';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-pink:hover {
    background: #d91d7d;
    color: var(--white);
    transform: translateY(-2px);
}

#hizmetler .btn-primary,
.service-detail-card .btn-primary,
.testimonial-cta .btn-primary {
    background: var(--brand-blue);
    color: var(--white);
}

#hizmetler .btn-primary:hover,
.service-detail-card .btn-primary:hover,
.testimonial-cta .btn-primary:hover {
    background: #1e3a6d;
    color: var(--white);
}

#vizyon .btn-primary {
    background: var(--brand-neon);
    color: var(--bg-dark);
}

#vizyon .btn-primary:hover {
    background: #b8e604;
    color: var(--bg-dark);
}

#hakkimda .btn-primary {
    background: var(--brand-pink);
    color: var(--white);
}

#hakkimda .btn-primary:hover {
    background: #d91d7d;
    color: var(--white);
}

/* ===========================
   Sections
   =========================== */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    overflow: hidden;
}

.bg-accent {
    background: var(--brand-blue);
}

.bg-light {
    background-color: #F9F9F9;
}

/* ===========================
   About Section
   =========================== */
#hakkimda .section-divider {
    background: var(--brand-pink);
}

#vizyon .section-divider {
    background: var(--brand-neon);
}

.about-image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.about-image-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Companies Grid */
.companies-title {
    font-family: 'Decimal', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.companies-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
}

.companies-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
    min-width: 120px;
    max-width: 150px;
}

.company-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.company-logo-item img:hover {
    opacity: 0.95;
    transform: scale(1.2);
}

.company-placeholder {
    min-height: 80px;
}

/* ===========================
   Consistent Typography Across All Pages
   =========================== */
/* Section Title - 2rem everywhere */
.section-title,
.page-hakkimda .section-title,
.page-vizyon .section-title,
.page-referanslar .section-title,
.page-etkinlikler .section-title,
.page-hizmetler .section-title {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

.page-hizmetler .section-title 
{
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-neon);
}

/* Section Text - 1.1rem everywhere */
.section-text,
.page-hakkimda .section-text,
.page-vizyon .section-text,
.page-referanslar .section-text,
.page-etkinlikler .section-text{
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1B;
    margin-bottom: 1rem;
}

.page-hizmetler .section-text {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Section Subtitle - 1.5rem everywhere */
.section-subtitle,
.page-hakkimda .section-subtitle,
.page-vizyon .section-subtitle,
.page-referanslar .section-subtitle {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

/* Lead text - consistent */
.lead {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1.10rem;
    line-height: 1.7;
}

/* Divider colors for sub-pages */
.page-hakkimda .section-divider {
    background: var(--brand-pink);
}

.page-vizyon .section-divider {
    background: var(--brand-neon);
}

.page-referanslar .section-divider,
.page-etkinlikler .section-divider,
.page-hizmetler .section-divider {
    background: var(--brand-blue);
}

/* ===========================
   Services Section
   =========================== */
.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.15);
    border-color: var(--brand-blue);
}

.service-title {
    font-family: 'Decimal';
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-subtitle {
    font-family: 'Decimal';
    font-size: 1.3rem;
    color: #1A1A1B;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-content {
    margin-top: 2rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    font-family: 'Decimal';
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #1A1A1B;
}

.service-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.gala-run-club {
    background: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
}

.gala-run-club .service-title {
    color: var(--brand-neon);
}

.gala-run-club .section-text {
    color: var(--white);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.15);
    border-color: var(--brand-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-blue);
}

.testimonial-name {
    font-family: 'Decimal';
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    font-family: 'Decimal';
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.testimonial-link {
    font-family: 'Decimal';
    font-size: 0.9rem;
    color: var(--brand-blue);
    text-decoration: none;
    transition: var(--transition);
}

.testimonial-link:hover {
    color: var(--brand-pink);
}

.testimonial-hero {
    font-family: 'Decimal';
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand-blue);
}

.testimonial-text {
    font-family: 'Decimal';
    font-size: 1rem;
    line-height: 1.7;
    color: #1A1A1B;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

/* ===========================
   Events Section - 4-Column Grid
   =========================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.event-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 350px;
    transition: var(--transition);
}

.event-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
}

.event-tile-title::lang(en){
    font-family: 'Decimal';
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-tile:hover {
    transform: scale(1.02);
}

.event-tile:hover img {
    filter: brightness(1.1);
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .event-tile {
        height: 280px;
    }
    
    .event-tile-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-tile {
        height: 300px;
    }
}

/* Legacy Event Card Styles */
.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 300px;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Blue filter for homepage event images — darker gradient bottom→top */
body.home .event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(41, 73, 137, 0.65), rgba(41, 73, 137, 0.15));
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

body.home .event-card:hover::before {
    background: linear-gradient(to top, rgba(41, 73, 137, 0.45), rgba(41, 73, 137, 0.05));
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 27, 0.95), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(0);
    transition: var(--transition);
    z-index: 2;
}

.event-overlay h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 700;
    overflow-wrap: break-word;
    word-break: break-word;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card:hover .event-overlay {
    background: linear-gradient(to top, rgba(46, 91, 255, 0.95), transparent);
}

/* Event Detail Page Styles */
.event-detail-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.event-detail-title {
    font-family: 'Decimal';
    font-size: 2rem;
    color: #1A1A1B;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===========================
   Page Header (for sub-pages)
   =========================== */
.page-header {
    padding: 170px 0 80px;
    background: #FFFFFF;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-title {
    font-family: 'Decimal';
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1B;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.page-subtitle {
    font-family: 'Decimal';
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

.content-title {
    font-family: 'Decimal';
    font-size: 2rem;
    color: #1A1A1B;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.content-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    min-height: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-box.bg-accent {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
}

.highlight-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brand-blue);
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    min-height: auto;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--brand-neon);
}

.feature-icon i {
    color: var(--brand-neon);
}

.feature-title {
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 15px;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 600px;
    object-fit: cover;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.cta-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    color: var(--white);
    min-height: 300px;
}

.cta-box .section-subtitle {
    color: var(--brand-neon);
    font-size: 2.5rem;
}

.cta-box .section-text {
    color: var(--white);
}

.cta-box .lead {
    font-size: 1.25rem;
    line-height: 2;
}

/* Vision Page Styles */
.vision-hero-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.3);
    min-height: 200px;
}

.vision-hero-box.bg-pink {
    background: linear-gradient(135deg, var(--brand-pink) 0%, #d91d7d 100%);
    box-shadow: 0 15px 50px rgba(255, 46, 155, 0.3);
}

.vision-hero-box.bg-neon-box {
    background: linear-gradient(135deg, var(--brand-neon) 0%, #b8e604 100%);
    box-shadow: 0 15px 50px rgba(206, 255, 4, 0.3);
}

.vision-hero-box.bg-neon-box .content-title,
.vision-hero-box.bg-neon-box .section-text {
    color: var(--bg-dark) !important;
}

.vision-hero-box.bg-neon-box .section-divider {
    background: var(--brand-blue);
}

.vision-hero-box.bg-white-box {
    background: #FFFFFF;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vision-hero-box.bg-white-box .content-title,
.vision-hero-box.bg-white-box .section-text {
    color: #1A1A1B !important;
}

.vision-hero-box.bg-white-box .section-divider {
    background: var(--brand-pink);
}

.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 350px;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--brand-blue);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.2);
}

.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.vision-icon i {
    color: var(--brand-blue);
}

.vision-card-title {
    font-size: 1.2rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pillar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    height: 100%;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pillar-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pillar-title i {
    color: var(--brand-pink);
    margin-right: 0.5rem;
}

.pillar-list {
    list-style: none;
    padding-left: 0;
}

.pillar-list li {
    font-family: 'Decimal', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.pillar-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--brand-neon);
    font-weight: bold;
    font-size: 1.3rem;
}

.mission-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    color: var(--white);
    min-height: 300px;
}

.mission-box .section-subtitle {
    color: var(--brand-neon);
    font-size: 2.5rem;
}

.mission-box .section-text {
    color: var(--white);
}

.mission-box .lead {
    font-size: 1.25rem;
    line-height: 2;
}

/* Service Preview Cards (for index page) */
.service-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-pink);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-family: 'Decimal', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.service-preview-badge.bg-success {
    background: #28a745;
}

.service-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.service-preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(41, 73, 137, 0.65), rgba(41, 73, 137, 0.15));
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

.service-preview-card:hover .service-preview-image::after {
    background: linear-gradient(to top, rgba(41, 73, 137, 0.45), rgba(41, 73, 137, 0.05));
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-preview-card:hover .service-preview-image img {
    transform: scale(1.05);
}

.service-preview-content {
    padding: 1.5rem;
    background: #d3d4d5;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-preview-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1A1A1B;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-pink);
    min-height: 2.5rem;
}

.service-preview-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1A1A1B;
    margin-bottom: 1rem;
    flex: 1;
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.service-preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.preview-feature {
    background: rgba(206, 255, 4, 1);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--black);
    border: 1px solid var(--brand-neon);
    font-weight: 600;
}

.preview-feature i {
    color: var(--brand-blue);
    margin-right: 0.2rem;
}

/* Service Detail Cards (for hizmetler page) - Minimalist Design */
.service-detail-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.2);
    border-color: var(--brand-blue);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-family: 'Decimal';
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.service-badge.bg-success {
    background: var(--brand-neon);
    color: var(--bg-dark);
}

.service-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(28, 28, 28, 0.9), transparent);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-title {
    font-family: 'Decimal';
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.service-detail-subtitle {
    font-family: 'Decimal';
    font-size: 0.95rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Decimal';
    font-size: 0.9rem;
    color: #1A1A1B;
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Service Page Specific Styles */
.service-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
}

.service-badge-large {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Decimal', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.service-badge-large.bg-success {
    background: rgba(40, 167, 69, 0.3);
}

.service-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.8rem;
}

.service-subtitle i {
    color: var(--brand-pink);
    margin-right: 0.5rem;
}

.who-for-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e3a6d 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
}

.who-for-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.who-for-icon {
    color: var(--brand-neon);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.who-for-item p {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Application Form Styles */
.application-form-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.application-form .form-label {
    font-family: 'Decimal', sans-serif;
    font-weight: 600;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
}

.application-form .form-control {
    border: 2px solid var(--background-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Decimal', sans-serif;
    transition: var(--transition);
}

.application-form .form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.2rem rgba(41, 73, 137, 0.1);
}

.application-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.application-form .form-check-input {
    border: 2px solid #C0C0C0;
    width: 1.25rem;
    height: 1.25rem;
}

.application-form .form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.application-form .form-check-label {
    font-size: 0.95rem;
    color: #1A1A1B;
    margin-left: 0.5rem;
}

.btn-outline-primary {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    background: transparent;
    padding: 1rem 2.5rem;
    font-family: 'Decimal', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--brand-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Testimonial Summary Cards (for index page) */
.testimonial-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.testimonial-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-summary-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.testimonial-summary-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-pink);
}

.testimonial-summary-role {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1rem;
}

.testimonial-summary-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #1A1A1B;
    line-height: 1.6;
    margin: 0;
}

/* Testimonial Detail Cards (for referanslar page) - Minimalist Design */
.testimonial-detail-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.testimonial-detail-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.15);
}

.testimonial-header-large {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-img-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-blue);
    flex-shrink: 0;
}

.testimonial-name-large {
    font-family: 'Decimal';
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.testimonial-role-large {
    font-family: 'Decimal';
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.testimonial-link-large {
    font-family: 'Decimal';
    font-size: 0.9rem;
    color: var(--brand-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.testimonial-link-large:hover {
    color: var(--brand-pink);
}

.testimonial-content-large {
    line-height: 1.8;
}

.testimonial-hero-large {
    font-family: 'Decimal';
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--brand-blue);
}

.testimonial-text-large {
    font-family: 'Decimal';
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1A1A1B;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--brand-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: none;
}

.footer-title {
    font-family: 'Decimal';
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-divider {
    width: 250px;
    height: 3px;
    background: var(--brand-neon);
    margin: 0.5rem 0 1rem;
}

.footer-tagline {
    font-family: 'Decimal';
    font-size: 1rem;
    color: var(brand-neon);
    font-weight: 400;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    font-family: 'Decimal';
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--brand-neon);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--brand-neon);
}

.footer-text {
    font-family: 'Decimal';
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    font-weight: 400;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-section {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 3rem;
        background-position: 30% center;
    }

    .hero-content {
        text-align: center;
        margin-right: 0;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-nav,
    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title,
    .footer-tagline {
        text-align: center;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }

    .service-preview-image {
        height: 180px;
    }

    .service-preview-title {
        font-size: 1rem;
    }

    .service-preview-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .referans-carousel-card {
        padding: 1.5rem 1.2rem;
    }

    .referans-carousel-name {
        font-size: 1rem;
    }

    .referans-carousel-quote {
        font-size: 0.85rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .companies-carousel {
        gap: 1rem;
    }

    .company-item {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .event-card {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .event-listing-title {
        font-size: 1rem;
    }

    .event-overlay h4 {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-img {
        width: 100px;
        height: 100px;
    }
}

/* ===========================
   Animations & Utilities
   =========================== */
.fade-in {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

/* ===========================
   Accordion Styles
   =========================== */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Decimal';
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--brand-blue);
    background-color: #FFFFFF;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--brand-blue);
    color: #FFFFFF;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(25%) sepia(41%) saturate(1234%) hue-rotate(196deg) brightness(91%) contrast(87%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    padding: 2rem;
    background-color: #FFFFFF;
}

/* ===========================
   Highlight Badges
   =========================== */
.highlight-badge {
    background: var(--brand-neon);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Decimal';
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(206, 255, 4, 0.3);
    transition: var(--transition);
}

.highlight-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 255, 4, 0.4);
}

.rounded-3 {
    border-radius: 15px !important;
}

/* ===========================
   Section Subtitle (used in various places)
   =========================== */
.section-subtitle {
    font-family: 'Decimal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

.section-subtitle.text-white {
    color: #FFFFFF;
}

/* ===========================
   Back Link (single pages)
   =========================== */
.back-link {
    display: inline-block;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.back-link:hover {
    color: var(--brand-pink);
    transform: translateX(-3px);
}

.back-link i {
    margin-right: 0.5rem;
}

/* ===========================
   Single Post Navigation
   =========================== */
.single-navigation {
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.single-navigation a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.single-navigation a:hover {
    color: var(--brand-pink);
}

.single-navigation .nav-prev i {
    margin-right: 0.5rem;
}

.single-navigation .nav-next i {
    margin-left: 0.5rem;
}

/* ===========================
   Event Listing Cards (page-etkinlikler)
   =========================== */
.event-listing-card {
    display: block;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.event-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.event-listing-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-listing-card:hover .event-listing-image img {
    transform: scale(1.1);
}

.event-listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 73, 137, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.event-listing-card:hover .event-listing-overlay {
    background: rgba(41, 73, 137, 0.7);
}

.event-listing-view {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.event-listing-card:hover .event-listing-view {
    opacity: 1;
    transform: translateY(0);
}

.event-listing-content {
    padding: 1.5rem;
}

.event-listing-title {
    font-family: 'Decimal';
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.event-listing-date {
    font-size: 0.9rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-listing-date i,
.event-listing-meta i {
    margin-right: 0.4rem;
}

.event-listing-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

/* Event Cover Image (single page) */
.event-cover-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    object-fit: cover;
}

.event-detail-date {
    color: var(--brand-silver);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===========================
   Referans Carousel
   =========================== */
.referans-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    overflow: hidden;
    max-width: 100%;
}

.referans-carousel {
    overflow: hidden;
    flex: 1;
}

.referans-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
}

.referans-carousel-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

.referans-carousel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.referans-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(41, 73, 137, 0.15);
    border-color: var(--brand-blue);
    color: inherit;
    text-decoration: none;
}

.referans-carousel-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--brand-blue);
}

.referans-carousel-name {
    font-family: 'Decimal';
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-pink);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.referans-carousel-role {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1rem;
}

.referans-carousel-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #1A1A1B;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.referans-carousel-link {
    display: inline-block;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.referans-carousel-card:hover .referans-carousel-link {
    color: var(--brand-pink);
}

.referans-carousel-link i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.referans-carousel-card:hover .referans-carousel-link i {
    transform: translateX(3px);
}

/* Carousel Navigation Buttons (hidden – drag/swipe only) */
.carousel-nav-btn {
    display: none !important;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--brand-blue);
    transform: scale(1.2);
}

/* Carousel drag cursor */
.referans-carousel,
.deneyim-carousel,
.gallery-carousel {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.referans-carousel img,
.deneyim-carousel img,
.gallery-carousel img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.referans-carousel.carousel-dragging,
.deneyim-carousel.carousel-dragging,
.gallery-carousel.carousel-dragging {
    cursor: grabbing;
}

.carousel-dragging a {
    pointer-events: none;
}

/* Carousel Responsive */
@media (max-width: 991px) {
    .referans-carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 767px) {
    .referans-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-nav-btn {
        display: none !important;
    }
    
    .referans-carousel-wrapper {
        padding: 0;
    }
}

/* ===========================
   Single Referans Page
   =========================== */
.referans-single-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.referans-author-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.referans-author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-blue);
    flex-shrink: 0;
}

.referans-author-name {
    font-family: 'Decimal';
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1B;
    margin-bottom: 0.5rem;
}

.referans-author-role {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.referans-instagram-link {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.referans-instagram-link:hover {
    color: var(--brand-blue);
}

.referans-instagram-link i {
    margin-right: 0.3rem;
}

.referans-hero-quote {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(41, 73, 137, 0.05), rgba(255, 46, 155, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--brand-blue);
}

.referans-hero-quote .quote-icon {
    color: var(--brand-blue);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.5;
}

.referans-hero-quote p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-blue);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.referans-full-text .testimonial-text-large {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Event Card Link Styles */
a.event-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.event-card:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 767px) {
    .referans-author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .referans-single-card {
        padding: 2rem;
    }
    
    .referans-hero-quote {
        padding: 1.5rem;
    }
    
    .event-listing-image {
        height: 200px;
    }
}

/* ===========================
   Social Bar (under navbar)
   =========================== */
.social-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--brand-blue);
    z-index: 999;
    padding: 0.35rem 0;
    box-shadow: none;
    transition: var(--transition);
}

.social-bar-home {
    background: transparent;
}

.social-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.social-bar-inner a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-bar-inner a:hover {
    color: var(--brand-neon);
    transform: scale(1.15);
}

/* Social Separator & Search Toggle */
.social-separator {
    width: 1px;
    height: 16px;
    background: var(--brand-pink);
    flex-shrink: 0;
}

.search-toggle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    line-height: 1;
}

.search-toggle-btn:hover {
    color: var(--brand-neon);
    transform: scale(1.15);
}

/* Footer separator & search */
.social-separator-footer {
    height: 20px;
    background: var(--brand-pink);
}

.search-toggle-btn-footer {
    color: var(--white);
    font-size: 1.3rem;
}

.search-toggle-btn-footer:hover {
    color: var(--brand-neon);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 28, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.search-overlay-inner {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-overlay-close:hover {
    color: var(--brand-pink);
}

.search-overlay-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--brand-pink);
    padding-bottom: 0.75rem;
}

.search-overlay-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: 'Decimal', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-overlay-submit {
    background: none;
    border: none;
    color: var(--brand-pink);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: var(--transition);
}

.search-overlay-submit:hover {
    color: var(--brand-neon);
}

/* Adjust page content to account for social bar height -- handled in base .page-header */

/* ===========================
   Event Overlay Date
   =========================== */
.event-overlay-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0.3rem 0 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===========================
   Footer Logo
   =========================== */
.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo a {
    display: inline-block;
    line-height: 1;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    margin-left: -30px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        margin-left: 0;
    }
}

.footer-logo a:hover .footer-logo-img {
    opacity: 0.85;
}

/* ===========================
   Deneyim Carousel (Experience Logos)
   =========================== */
.deneyim-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    max-width: 100%;
}

.deneyim-carousel {
    overflow: hidden;
    flex: 1;
}

.deneyim-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    align-items: center;
}

.deneyim-carousel-slide {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: calc(25% - 1.5rem);
    display: flex;
    justify-content: center;
}

.company-logo-item-large {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-width: 200px;
    max-width: 280px;
    min-height: 120px;
}

.company-logo-item-large img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.company-logo-item-large img:hover {
    opacity: 0.95;
    transform: scale(1.1);
}

/* Brand Blue Carousel Nav Buttons (hidden) */
.carousel-nav-blue {
    display: none !important;
}

/* Deneyim carousel arrows – plain transparent brand-blue */
.deneyim-carousel-wrapper > .carousel-nav-btn {
    display: flex !important;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--brand-blue);
    font-size: 1.4rem;
    width: auto;
    height: auto;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    outline: none;
}

.deneyim-carousel-wrapper > .carousel-nav-btn:hover {
    color: var(--brand-pink);
    background: transparent;
    transform: none;
}

@media (max-width: 991px) {
    .deneyim-carousel-slide {
        flex: 0 0 calc(33.333% - 1.33rem);
        min-width: calc(33.333% - 1.33rem);
    }
}

@media (max-width: 767px) {
    .deneyim-carousel-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .company-logo-item-large {
        max-width: 200px;
        min-height: 200px;
        padding: 1rem;
    }
    
    .company-logo-item-large img {
        max-height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .deneyim-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ===========================
   Gallery Carousel (Event Single Page)
   =========================== */
.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    max-width: 100%;
}

.gallery-carousel {
    overflow: hidden;
    flex: 1;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1rem;
}

.gallery-carousel-slide {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: calc(33.333% - 0.67rem);
}

.gallery-carousel-slide .gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-carousel-slide .gallery-image:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .gallery-carousel-slide {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 767px) {
    .gallery-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .gallery-carousel-slide .gallery-image {
        height: 200px;
    }
}

/* ===========================
   Social Bar Responsive
   =========================== */
@media (max-width: 991px) {
    .social-bar {
        top: 56px;
    }
    
    .footer-logo {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .event-cover-image img {
        max-height: 300px;
    }

    .event-card {
        height: 220px;
    }

    .event-overlay {
        padding: 1rem 1rem;
    }

    .event-overlay h4 {
        font-size: 0.95rem;
    }

    .service-preview-image {
        height: 180px;
    }
}
