/* ==========================================================================
   HAVADER - Microsoft Style CSS (Vanilla)
   ========================================================================== */

@import url("https://use.typekit.net/mpl1opv.css");

:root {
    /* Colors - Microsoft-esque Palette */
    --primary-color: #0067b8;
    /* Classic MS Blue */
    --primary-hover: #005da6;
    --secondary-color: #f2f2f2;
    --secondary-hover: #e6e6e6;
    --text-main: #1a1a1a;
    /* Dark gray for better readability than pure black */
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #f3f2f1;
    /* MS light gray */
    --border-color: #e6e6e6;

    /* Typography */
    --font-family: "segoe-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1600px;
    --header-height: 60px;
    --radius-sm: 2px;
    --radius-md: 4px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

/* ==========================================================================
   Header & Navbar (MS Style)
   ========================================================================== */
.ms-header {
    background-color: var(--bg-main);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    /* Subtle bottom border/shadow */
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.brand-text:hover {
    color: var(--text-main);
}

.main-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-left: 15px;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links>li>a {
    display: inline-flex;
    align-items: center;
    color: #262626;
    font-size: 14px !important;
    padding: 5px 5px;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    text-decoration: none !important;
    font-weight: 400;
}

.nav-links>li>a:hover {
    border-bottom-color: var(--text-main);
}

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

/* Dropdown-toggle alignment is now handled by .nav-links>li>a */

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 6px;
    margin-top: -2px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(225deg);
    margin-top: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #eee;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    z-index: 1000;
    padding: 5px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 7px 10px;
    border-bottom: 2px solid transparent;
    font-weight: normal;
    color: var(--text-main);
    font-size: 14px !important;
}

.dropdown-menu a:hover {
    background-color: #d0d0d0;
    /*border-bottom-color: var(--text-main);*/
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    color: var(--text-main);
    display: flex;
    align-items: center;
    padding: 5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 991px) {
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:hover {
        border-bottom-color: var(--primary-color);
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
        margin-left: 15px;
    }

    .header-actions {
        display: flex;
        order: 2;
        margin-left: auto;
        gap: 8px;
    }
    
    .header-actions .btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .brand-logo {
        order: 1;
    }
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.main-content {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #1a6fb5 0%, #5ba3d9 40%, #a8d4f0 70%, #d5e8f5 100%);
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Arka plan video — ileri doğru uçuş efekti */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    object-fit: cover;
    animation: fly-forward 20s ease-in-out infinite alternate;
}

@keyframes fly-forward {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Video yoksa veya yüklenmediyse CSS bulut animasyonları */
.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cloud-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    opacity: 0.8;
}

.cloud-layer-1 {
    background:
        radial-gradient(ellipse 120px 80px at 10% 60%, rgba(255, 255, 255, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 200px 100px at 25% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 70%),
        radial-gradient(ellipse 160px 90px at 45% 55%, rgba(255, 255, 255, 0.75) 0%, transparent 70%),
        radial-gradient(ellipse 180px 70px at 65% 45%, rgba(255, 255, 255, 0.65) 0%, transparent 70%),
        radial-gradient(ellipse 140px 80px at 80% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 220px 100px at 95% 35%, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    animation: drift-clouds 35s linear infinite;
}

.cloud-layer-2 {
    background:
        radial-gradient(ellipse 250px 120px at 5% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 180px 90px at 30% 65%, rgba(255, 255, 255, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 300px 110px at 55% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 200px 80px at 75% 70%, rgba(255, 255, 255, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 160px 100px at 90% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    animation: drift-clouds 50s linear infinite;
    opacity: 0.5;
}

.cloud-layer-3 {
    background:
        radial-gradient(ellipse 350px 150px at 15% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 280px 130px at 50% 35%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 320px 100px at 85% 55%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    animation: drift-clouds 70s linear infinite;
    opacity: 0.35;
}

@keyframes drift-clouds {
    0% {
        transform: translateX(0);
    }

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

/* Gökyüzü gradient overlay — metin okunabilirliği için */
.hero-sky-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.typewriter-text {
    color: #e9f1f8;
    padding-left: 5px;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background-color: #000000;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-actions .btn-primary {
    background: #ffffff;
    color: #1a6fb5;
    border-color: #ffffff;
    font-weight: 600;
}

.hero-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* Features Grid (Cards) */
.page-section {
    padding: 20px 0;
    background-color: var(--bg-main);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--text-main);
}

/* About Section */
.about-section {
    padding: 80px 5% 20px;
    background-color: var(--bg-main);
    text-align: center;
}

.about-title {
    font-size: 26px;
    font-weight: 600;
    color: #e4583e;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.stat-value {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
}

.features-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.ms-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ms-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Azure-style gradient image area with centered icon */
.ms-card-image {
    height: 200px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    margin: 0.5rem;
    margin-bottom: 0;
    width: calc(100% - 15px);
}

.ms-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ms-card:hover .ms-card-icon {
    transform: scale(1.08);
}

/* Floating decorative icons */
.ms-card-float {
    position: absolute;
    opacity: 0.35;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ms-card:hover .ms-card-float {
    opacity: 0.55;
}

.ms-float-1 {
    top: 18%;
    left: 12%;
    animation: float-slow 6s ease-in-out infinite;
}

.ms-float-2 {
    top: 24%;
    right: 14%;
    animation: float-slow 5s ease-in-out infinite 1s;
}

.ms-float-3 {
    bottom: 16%;
    right: 22%;
    animation: float-slow 7s ease-in-out infinite 2s;
}

@keyframes float-slow {

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

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

/* Card gradient backgrounds — soft lavender/purple Azure style */
.placeholder-img-1 {
    background: linear-gradient(135deg, #e8dff5 0%, #d4c5f0 30%, #c9b8eb 60%, #e0d5f5 100%);
    color: #5b3fa0;
}

.placeholder-img-1 .ms-card-float {
    color: #7b61c4;
}

.placeholder-img-2 {
    background: linear-gradient(135deg, #d5eaf7 0%, #b8d8f0 30%, #a8cce8 60%, #c8e0f5 100%);
    color: #1a6fb5;
}

.placeholder-img-2 .ms-card-float {
    color: #3a8fd5;
}

.placeholder-img-3 {
    background: linear-gradient(135deg, #daf0e5 0%, #b8e4cc 30%, #a8dcbf 60%, #c8ebd5 100%);
    color: #1a8a55;
}

.placeholder-img-3 .ms-card-float {
    color: #2aa06a;
}

.placeholder-img-4 {
    background: linear-gradient(135deg, #fce8d5 0%, #f5d0b0 30%, #f0c5a0 60%, #f8dcc5 100%);
    color: #b85a1a;
}

.placeholder-img-4 .ms-card-float {
    color: #d0752a;
}

/* Card content area */
.ms-card-content {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ms-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.ms-card-desc {
    color: #5f6368;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Azure-style CTA link with chevron icon */
.ms-card-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #0067b8;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.ms-card-link-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #0067b8;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0067b8;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.ms-card-link:hover {
    color: #005a9e;
    text-decoration: none;
    gap: 14px;
}

.ms-card-link:hover .ms-card-link-icon {
    background: #0067b8;
    color: #ffffff;
    transform: translateX(2px);
}



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

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.form-title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

.ms-form .form-group {
    margin-bottom: 20px;
}

.ms-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.ms-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #8a8886;
    /* MS input border */
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.ms-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
    /* Focus ring */
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-sm);
}

.info-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ms-footer {
    background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 40%, #0a1628 100%);
    padding: 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
}

/* Radar dekoratif elemanları */
.footer-radar {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    pointer-events: none;
    opacity: 0.12;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(100, 200, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-circle-1 {
    width: 100px;
    height: 100px;
}

.radar-circle-2 {
    width: 180px;
    height: 180px;
}

.radar-circle-3 {
    width: 260px;
    height: 260px;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 2px;
    background: linear-gradient(90deg, rgba(100, 200, 255, 0.8), transparent);
    transform-origin: left center;
    animation: radar-rotate 4s linear infinite;
}

@keyframes radar-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 50px 1% 30px;
    position: relative;
    z-index: 2;
}

/* Footer brand / logo alanı */
.footer-brand {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-desc {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer bağlantı grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 13px;
    color: rgba(100, 200, 255, 0.9);
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4 svg {
    opacity: 0.7;
    flex-shrink: 0;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: rgba(100, 200, 255, 1);
    padding-left: 4px;
    text-decoration: none;
}

/* İletişim satırları */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

.footer-contact-item a {
    font-size: 13px;
}

/* Sosyal medya */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.footer-social-link:hover {
    background: rgba(100, 200, 255, 0.15);
    border-color: rgba(100, 200, 255, 0.4);
    color: rgba(100, 200, 255, 1);
    transform: translateY(-3px);
}

/* Pist ayırıcı çizgi */
.footer-runway {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    margin-bottom: 24px;
}

.runway-dash {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.runway-dash:nth-child(odd) {
    background: rgba(100, 200, 255, 0.2);
}

/* Footer alt bilgi */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 0;
    border-top: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: rgba(100, 200, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-brand-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-radar {
        display: none;
    }

    .runway-dash {
        width: 24px;
    }
}

/* ==========================================================================
   NAVBAR BRAND LOGO (Moved from inline)
   ========================================================================== */
.brand-logo-container {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 45px;
    object-fit: contain;
    transition: margin-right 0.3s ease;
}

.brand-logo-img.has-title {
    margin-right: 16px;
}

.brand-separator {
    width: 1px;
    height: 35px;
    background-color: #111;
    margin-right: 16px;
}

.brand-title {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    letter-spacing: -0.5px;
}

.ms-donate-btn {
    transition: all .1s ease-in;
}

/* ==========================================================================
   GLOBAL BUTTONS
   ========================================================================== */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   TÜZÜK PAGE STYLES (Seamless Layout)
   ========================================================================== */
.tuzuk-page {
    background-color: var(--bg-light);
    padding: 60px 0;
    min-height: 100vh;
}

.tuzuk-header {
    text-align: center;
    margin-bottom: 60px;
}

.tuzuk-title {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tuzuk-desc {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Sidebar & ToC */
.tuzuk-sidebar-container {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 20px;
}

.tuzuk-toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tuzuk-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #e5e7eb;
}

.tuzuk-toc-item {
    margin-bottom: 8px;
}

.tuzuk-toc-link {
    text-decoration: none;
    color: #6b7280;
    display: block;
    padding: 6px 0 6px 16px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.2s;
    position: relative;
    left: -2px;
    border-left: 2px solid transparent;
}

.tuzuk-toc-link:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.tuzuk-toc-num {
    font-weight: 600;
    color: #4b5563;
}

/* Main Content area */
.tuzuk-content-box {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.tuzuk-section-title {
    font-size: 24px;
    color: #111827;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-weight: 800;
    border-bottom: 2px solid #f3f4f6;
}

.tuzuk-article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 50px;
    margin-bottom: 15px;
}

.tuzuk-article-title {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
    margin: 0;
}

.tuzuk-back-to-top {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.tuzuk-back-to-top:hover {
    color: var(--primary-color);
}

.tuzuk-dt {
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 30px;
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tuzuk-dd {
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 3px solid var(--primary-color);
}

.tuzuk-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #111827;
}

/* ==========================================================================
   ABOUT (HAKKIMIZDA) PAGE STYLES
   ========================================================================== */
.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.about-card-img {
    background-size: cover;
    background-position: center;
    height: 300px;
}

.about-card-content {
    padding: 40px;
}

.about-card-category {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-card-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-card-desc {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   TÜZÜK PAGE LAYOUT (Replaces Bootstrap Grid)
   ========================================================================== */
.tuzuk-layout {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.tuzuk-sidebar {
    flex: 0 0 300px;
    width: 300px;
}

.tuzuk-main-article {
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .tuzuk-layout {
        flex-direction: column;
    }

    .tuzuk-sidebar {
        display: none;
        /* Hide sticky sidebar on mobile */
    }
}

/* ==========================================================================
   EXACT TÜZÜK PAGE STYLES (Replicating original havader.org.tr)
   ========================================================================== */
.tuzuk-page-seamless {
    background-color: var(--bg-light);
    /* Or white depending on site */
    padding: 60px 0;
    min-height: 100vh;
}

.tuzuk-content-wrapper {
    background: transparent;
    padding: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

/* Replicate Grid */
.tuzuk-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.tuzuk-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.tuzuk-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.tuzuk-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 768px) {

    .tuzuk-col-3,
    .tuzuk-col-4,
    .tuzuk-col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utilities */
.tuzuk-text-center {
    text-align: center;
    margin: 40px 0 20px;
}

.tuzuk-text-primary {
    color: var(--primary-color);
}

.tuzuk-lead {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 30px;
}

.tuzuk-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border: 1px solid #dee2e6;
    border-collapse: collapse;
}

.tuzuk-table th,
.tuzuk-table td {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

/* Specific elements */
.tuzuk-pdf-container {
    text-align: center;
    margin: 30px 0;
}

.tuzuk-article-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaeaea;
}

.tuzuk-backlink {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    font-weight: normal;
}

.tuzuk-backlink:hover {
    color: var(--primary-color);
}

#icindekiler h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}


/* ==========================================================================
   MINI BOOTSTRAP UTILITIES (For backward compatibility with original HTML)
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4,
.col-sm-12,
.col-sm-1,
.col-sm-2,
.col-sm-10,
.col-sm-11,
.col-sm-3,
.col-sm-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.text-center {
    text-align: center !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

.text-orangered {
    color: var(--primary-color) !important;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-primary {
    background-color: #cce5ff;
}

/* Custom Additions */
.tuzuk-page-seamless {
    background-color: transparent;
}

.tuzuk-article-heading {
    width: 100%;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaeaea;
}

.tuzuk-backlink {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    font-weight: normal;
}

.tuzuk-backlink:hover {
    color: var(--primary-color);
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.tuzuk-jumbotron {
    padding: 1rem 1rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

@media (min-width: 576px) {
    .tuzuk-jumbotron {
        padding: 1rem 1rem;
    }
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

dt,
dl dt {
    font-weight: 700 !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* ==========================================================================
   JOURNAL (DERGİMİZ) PAGE STYLES
   ========================================================================== */

/* --- Journal Hero Banner --- */
.journal-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: 80px 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #0052a2 0%, #0078d4 25%, #00a4ef 50%, #6b3fa0 75%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: journalGradientShift 8s ease infinite;
    color: #ffffff;
    width: 100%;
}

@keyframes journalGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating blob shapes */
.journal-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.journal-hero-blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    top: -80px;
    right: 10%;
    animation: journalBlobFloat1 6s ease-in-out infinite;
}

.journal-hero-blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, #0078d4);
    bottom: -60px;
    left: 5%;
    animation: journalBlobFloat2 8s ease-in-out infinite;
}

.journal-hero-blob-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: 50%;
    right: 30%;
    animation: journalBlobFloat3 7s ease-in-out infinite;
}

@keyframes journalBlobFloat1 {

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

    50% {
        transform: translate(-30px, 20px) scale(1.1);
    }
}

@keyframes journalBlobFloat2 {

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

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

@keyframes journalBlobFloat3 {

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

    50% {
        transform: translate(-15px, -20px) scale(0.95);
    }
}

/* Small floating circles */
.journal-hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.journal-hero-circle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 8%;
    background: rgba(255, 255, 255, 0.2);
    animation: journalCirclePulse 3s ease-in-out infinite;
}

.journal-hero-circle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 15%;
    background: rgba(255, 255, 255, 0.15);
    animation: journalCirclePulse 4s ease-in-out infinite 1s;
}

.journal-hero-circle-3 {
    width: 16px;
    height: 16px;
    bottom: 15%;
    left: 40%;
    background: rgba(255, 255, 255, 0.25);
    animation: journalCirclePulse 3.5s ease-in-out infinite 0.5s;
}

@keyframes journalCirclePulse {

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

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* Content layout */
.journal-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
}

.journal-hero-text {
    flex: 1;
    min-width: 0;
}

.journal-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
}

.journal-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.journal-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.journal-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 520px;
}

.journal-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journal-hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.journal-hero-btn svg {
    flex-shrink: 0;
}

/* Journal cover on right */
.journal-hero-cover {
    flex-shrink: 0;
}

.journal-hero-cover img {
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(100, 180, 255, 0.2);
    transition: transform 0.4s ease;
    animation: journalCoverFloat 4s ease-in-out infinite;
}

.journal-hero-cover img:hover {
    transform: scale(1.05) rotate(-1deg);
}

@keyframes journalCoverFloat {

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

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

/* Journal Hero Responsive */
@media (max-width: 768px) {
    .journal-hero {
        padding: 40px 24px;
    }

    .journal-hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .journal-hero-title {
        font-size: 32px;
    }

    .journal-hero-desc {
        max-width: 100%;
    }

    .journal-hero-cover img {
        width: 180px;
    }

    .journal-hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Latest Issue Section --- */
.journal-latest-section {
    margin-bottom: 40px;
}

.journal-latest-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 8px;
}

.journal-latest-issue {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
}

/* --- Article Cards --- */
.journal-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journal-article-card {
    background-color: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 28px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.journal-article-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 103, 184, 0.08);
}

.journal-article-header {
    margin-bottom: 8px;
}

.journal-article-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.journal-article-title a {
    color: var(--text-main);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.journal-article-title a:hover {
    color: var(--primary-color);
    text-decoration: none !important;
}

.tdn,
a.tdn,
a.tdn:hover {
    text-decoration: none !important;
}

.journal-article-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.journal-article-meta strong {
    font-weight: 600;
}

/* --- Article Actions & Outline Buttons --- */
.journal-article-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.journal-abstract-toggle,
.journal-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    border: 1.5px solid var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.journal-abstract-toggle:hover,
.journal-read-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 103, 184, 0.18);
}

.journal-abstract {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}

.journal-abstract-open {
    max-height: 600px;
    padding: 16px 0 0 0;
}

.journal-abstract p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 16px 20px;
    background-color: #f0f4f8;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    margin: 0;
}

/* --- Journal Responsive --- */
@media (max-width: 768px) {
    .journal-intro {
        padding: 24px;
    }

    .journal-intro .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .journal-cover-img {
        width: 180px;
    }

    .journal-title {
        font-size: 22px;
    }

    .journal-latest-title {
        font-size: 24px;
    }

    .journal-article-card {
        padding: 18px 20px;
    }

    .journal-article-title {
        font-size: 16px;
    }

    .btn-journal {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ARAŞTIRMALAR VE PROJELER PAGE STYLES (REALISTIC SKY & FLYING PLANE)
   ========================================================================== */

.sky-scene {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    background: #52a5e2;
}

/* Scrolling Clouds Background */
.cloud-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('../img/arastirmalar/8729.jpg');
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 0 center;
    z-index: 1;
}

.cloud-layer-back {
    animation: scrollCloudsBack 50s linear infinite;
    opacity: 0.95;
}

.cloud-layer-front {
    animation: scrollCloudsFront 30s linear infinite;
    opacity: 0.45;
    filter: blur(3px);
    top: -20px;
}

@keyframes scrollCloudsBack {
    0% {
        transform: translateX(0);
    }

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

@keyframes scrollCloudsFront {
    0% {
        transform: translateX(0);
    }

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

/* Sky Overlay Content */
.sky-overlay-content {
    position: relative;
    z-index: 10;
    padding-top: 70px;
    pointer-events: none;
}

.sky-hero-text {
    pointer-events: auto;
}

.sky-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(0, 50, 120, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.sky-hero-title {
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 18px rgba(0, 30, 80, 0.4);
}

.sky-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 26px auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 30, 80, 0.35);
}

.audio-control-wrapper {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 20;
}

.btn-sky-audio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 52, 110, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-sky-audio:hover {
    background: rgba(0, 52, 110, 0.98);
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.flying-plane-wrapper {
    position: absolute;
    top: 45%;
    right: -350px;
    z-index: 5;
    pointer-events: none;
    animation: flyPlaneAcross 15s linear infinite;
}

.flying-plane-img {
    width: 500px;
    max-width: 90vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 30, 80, 0.35));
    animation: planeRealisticMotion 3s ease-in-out infinite alternate;
}

/* Main flight path animation moving from right to left across viewport */
@keyframes flyPlaneAcross {
    0% {
        right: -350px;
        top: 50%;
    }

    50% {
        top: 42%;
    }

    100% {
        right: 100%;
        top: 48%;
    }
}

100% {
    right: 105%;
    top: 45%;
}
}

/* Slight pitch & roll float during flight */
@keyframes planeRealisticMotion {
    0% {
        transform: translateY(0) rotate(0.5deg);
    }

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

    100% {
        transform: translateY(-4px) rotate(1.5deg);
    }
}

@media (max-width: 768px) {
    .sky-scene {
        height: 420px;
    }

    .sky-hero-title {
        font-size: 32px;
    }

    .sky-hero-desc {
        font-size: 15px;
    }

    .flying-plane-img {
        width: 300px;
    }

    @keyframes flyPlaneAcross {
        0% {
            right: -320px;
            top: 58%;
        }

        100% {
            right: 110%;
            top: 48%;
        }
    }
}

/* ==========================================================================
   EVENTS & BLOG DETAIL (ETKİNLİKLER) PAGE STYLES - AZURE CARD DESIGN
   ========================================================================== */

/* --- Azure Hero Header (Turkuaz Temalı) --- */
.azure-hero {
    background: linear-gradient(135deg, #073b4c 0%, #06d6a0 33%, #118ab2 66%, #00b4d8 100%);
    background-size: 200% 200%;
    animation: journalGradientShift 8s ease infinite;
    padding: 60px 0;
    color: #ffffff;
    margin-bottom: 50px;
    width: 100%;
}

.azure-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.azure-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.azure-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Azure Cards Grid --- */
.azure-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 10px;
    margin-bottom: 60px;
}

.azure-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0 0 28px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.azure-card-thumb {
    width: 100%;
    height: 200px;
    background: #ffffff;
    padding: 0.5rem;
    overflow: hidden;
}

.azure-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.azure-card:hover .azure-card-thumb img {
    transform: scale(1.03);
}

.azure-card-top {
    padding: 24px 28px 0 28px;
    margin-bottom: 24px;
}

.azure-card-bottom {
    padding: 18px 28px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.azure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 131, 143, 0.18);
}

.azure-card-top {
    margin-bottom: 24px;
}

.azure-card-category-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.azure-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #007a8c;
    background: #e0f7fa;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.azure-card-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.azure-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.azure-card-title a {
    color: var(--text-main);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.azure-card-title a:hover {
    color: var(--primary-color);
    text-decoration: none !important;
}

.azure-card-summary {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.azure-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f0f3f6;
    gap: 12px;
}

.azure-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azure-card-location svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.btn-azure-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #00838f;
    background: transparent;
    border: 1.5px solid #00838f;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-azure-outline:hover {
    background: #00838f;
    color: #ffffff;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 131, 143, 0.25);
}

.btn-azure-outline svg {
    flex-shrink: 0;
}

/* ==========================================================================
   EVENT BLOG POST DETAIL STYLES (NEW DESIGN)
   ========================================================================== */

/* --- Event Detail Hero (Dergimiz stili - Turkuaz Temalı) --- */
.event-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 75px 0;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #073b4c 0%, #06d6a0 33%, #118ab2 66%, #00b4d8 100%);
    background-size: 200% 200%;
    animation: journalGradientShift 8s ease infinite;
    color: #ffffff;
    width: 100%;
}

.event-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 13.5px;
}

.event-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.event-hero .breadcrumb-item a:hover {
    color: #ffffff !important;
}

.event-hero .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.event-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.event-hero-meta .journal-hero-badge {
    margin-bottom: 0;
}

.event-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.event-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.event-hero-summary {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 850px;
    margin: 0;
}

/* --- Main Article Section --- */
.event-content-section {
    margin-bottom: 80px;
}

.event-detail-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.event-detail-main {
    flex: 1 1 0%;
    min-width: 0;
}

.event-detail-sidebar {
    width: 340px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .event-detail-grid {
        flex-direction: column;
    }

    .event-detail-sidebar {
        width: 100%;
    }
}

.event-main-article {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.event-cover-box {
    width: 100%;
    margin-bottom: 32px;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.event-cover-img {
    width: 100%;
    max-height: 480px;
    /*object-fit: cover;*/
    border-radius: 6px;
    display: block;
    margin-bottom: 0.5rem;
}

.event-article-body {
    padding: 2rem;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.event-article-body p {
    margin-bottom: 20px;
}

.event-article-body h2,
.event-article-body h3,
.event-article-body h4 {
    color: var(--text-main);
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.event-article-body ul,
.event-article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.event-article-body li {
    margin-bottom: 10px;
    position: relative;
}

.event-article-footer {
    margin-top: 40px;
    padding-top: 24px;
}

.btn-event-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #00838f;
    background: transparent;
    border: 1.5px solid #00838f;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-event-back:hover {
    background: #00838f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 131, 143, 0.25);
}

/* --- Sidebar Widgets --- */
.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-info-widget,
.event-others-widget {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.event-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.event-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.event-info-list li:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e0f7fa;
    color: #00838f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2px;
}

.btn-event-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 131, 143, 0.25);
}

.btn-event-contact:hover {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 131, 143, 0.35);
}

/* Other Events List in Sidebar */
.other-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.other-event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
}

.other-event-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.other-event-thumb {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.other-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-event-item:hover .other-event-thumb img {
    transform: scale(1.08);
}

.other-event-info {
    display: flex;
    flex-direction: column;
}

.other-event-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.other-event-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 4px 0 0 0;
}

.other-event-title a {
    color: var(--text-main);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.other-event-title a:hover {
    color: var(--primary-color);
}

/* Responsive Detail Styles */
@media (max-width: 768px) {
    .event-hero-title {
        font-size: 26px;
    }

    .event-hero-summary {
        font-size: 15px;
    }

    .event-main-article {
        padding: 24px;
    }
}

/* ==========================================================================
   BAĞIŞ (DONATION / SUPPORT) PAGE STYLES
   ========================================================================== */

/* Navbar BAĞIŞ button styling */
.ms-bagis-btn {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transition: all 0.2s ease;
}

.ms-bagis-btn:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 103, 184, 0.2);
}

/* Bagis Hero */
.bagis-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 75px 0;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #073b4c 0%, #06d6a0 33%, #118ab2 66%, #00b4d8 100%);
    background-size: 200% 200%;
    animation: journalGradientShift 8s ease infinite;
    color: #ffffff;
    width: 100%;
}

.bagis-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.bagis-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.bagis-hero-desc {
    font-size: 17.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto;
}

/* Bank Account Card */
.bank-account-card {
    background: #ffffff;
    border: 1px solid #e1e6eb;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    margin: 0 auto 40px auto;
    transition: transform 0.3s ease;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.bank-badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #e0f7fa;
    color: #00838f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bank-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.bank-branch {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.bank-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.detail-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
}

.iban-item .detail-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #00838f;
}

.iban-copy-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.btn-copy-iban {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #00838f;
    background: #e0f7fa;
    border: 1px solid #b2ebf2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-iban:hover {
    background: #00838f;
    color: #ffffff;
    border-color: #00838f;
}

.btn-copy-iban.copied {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.bank-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.bank-note svg {
    color: #00838f;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bagis Pillars Grid */
.pillars-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pillars-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.bagis-pillars-grid {
    padding: 0 1%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #e1e6eb;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: #00838f;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 131, 143, 0.12);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0f7fa;
    color: #00838f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pillar-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Toast Notifications (Popup Style) */
.toast {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.toast.toast-show {
    opacity: 1;
    visibility: visible;
}

.toast-content-wrapper {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 320px;
    max-width: 500px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 5px solid transparent;
}

.toast.toast-show .toast-content-wrapper {
    transform: scale(1) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-success .toast-content-wrapper { border-top-color: #28a745; }
.toast-success svg { stroke: #28a745; }

.toast-error .toast-content-wrapper { border-top-color: #dc3545; }
.toast-error svg { stroke: #dc3545; }

.toast-empty .toast-content-wrapper { border-top-color: #ffc107; }
.toast-empty svg { stroke: #ffc107; }

.toast-content span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    margin-left: 20px;
    transition: color 0.2s;
    padding: 0;
}

.toast-close:hover {
    color: #333;
}

/* Modern Contact Form Styling */
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.modern-form-group {
    position: relative;
    width: 100%;
}

.modern-form-control {
    width: 100%;
    padding: 24px 16px 8px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 12px;
    background-color: #f7f9fc;
    color: #1f2937;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.modern-form-control:hover {
    background-color: #f1f4f9;
}

.modern-form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 103, 184, 0.1);
}

.modern-form-label {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 15px;
    color: #6b7280;
    transition: all 0.25s ease;
    pointer-events: none;
    transform-origin: left top;
}

.modern-form-control:focus ~ .modern-form-label,
.modern-form-control:not(:placeholder-shown) ~ .modern-form-label {
    top: 8px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.modern-textarea {
    resize: vertical;
    min-height: 140px;
}

.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005da6 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 103, 184, 0.2);
    align-self: flex-start;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 103, 184, 0.3);
}

.modern-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 103, 184, 0.2);
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translate(-120%, 50px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    border-left: 5px solid var(--primary-color);
}

.cookie-consent-banner.show {
    transform: translate(0, 0);
    opacity: 1;
}

.cookie-consent-content {
    padding: 24px;
}

.cookie-consent-content h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-content h4::before {
    content: "🍪";
    font-size: 20px;
}

.cookie-consent-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-consent-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent-content a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
}

.cookie-consent-banner .cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-consent-banner .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cookie-consent-banner .btn-primary:hover {
    background-color: var(--primary-hover);
}

.cookie-consent-banner .btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid #d1d5db;
}

.cookie-consent-banner .btn-outline:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        transform: translate(0, 150%);
    }
    
    .cookie-consent-banner.show {
        transform: translate(0, 0);
    }
}