/* Modern Theme - Core Styles */
/* Ünlü Hukuk - Lacivert & Beyaz & Altın Renk Paleti */
:root {
    /* Ana Renkler - Hukuk Teması */
    --primary-color: #C9A962;
    /* Altın/Gold - Ana aksan rengi */
    --primary-light: #D4BA7A;
    /* Açık altın */
    --primary-dark: #B89A52;
    /* Koyu altın */

    --secondary-color: #0A1628;
    /* Koyu lacivert - Footer ve vurgular */
    --secondary-light: #1A2D4D;
    /* Açık lacivert */
    --secondary-dark: #050C16;
    /* Daha koyu lacivert */

    --accent-color: #C9A962;
    /* Altın aksan */

    --bg-color: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #0A1628;
    /* Koyu lacivert */

    --text-dark: #0A1628;
    /* Koyu lacivert metin */
    --text-medium: #1A2D4D;
    /* Orta lacivert metin */
    --text-light: #8B9EB5;
    /* Açık gri metin */
    --text-white: #ffffff;

    --border-color: rgba(201, 169, 98, 0.3);
    /* Altın border */
    --border-light: #E5E9EF;

    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 10px 25px rgba(10, 22, 40, 0.12);
    --shadow-hover: 0 15px 35px rgba(10, 22, 40, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Override main.css fonts */
    --tc-body-font-family: 'Poppins', sans-serif !important;
    --tc-heading-font-family: 'Poppins', sans-serif !important;
    --tc-display-font-family: 'Poppins', sans-serif !important;
}

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--font-main) !important;
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #0A1628;
}

/* Override any potential pink (#E91E63) from old themes */
[style*="#E91E63"],
.text-pink,
.bg-pink {
    color: var(--primary-color) !important;
}

.bg-pink {
    background-color: var(--primary-color) !important;
}

/* Force standard link hover if not overridden */
a:hover {
    color: var(--primary-color);
}

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

a {
    text-decoration: none;
    transition: var(--transition-fast);
    color: inherit;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-flex {
    display: flex;
}

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

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

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

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

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-4 {
    gap: 2rem;
}

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

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

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

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #e49200;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #e49200;
}

.btn-outline {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: white;
    color: #e49200;
}

.btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: #e49200;
    color: white;
    border-color: #e49200;
}

/* =====================================================
   HEADER STYLES - Ünlü Hukuk (Dark Theme - BMW Style)
   ===================================================== */
/* =====================================================
   HEADER STYLES - Floating Pill (BMW Style)
   ===================================================== */
.modern-header {
    position: fixed;
    top: 30px;
    /* Floating offset */
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1400px;
    z-index: 1000;
    padding: 15px 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Yumuşak geçiş */
    background: #ffffff;
    border-radius: 60px;
    /* Pill shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.modern-header.scrolled {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.modern-header .navbar-brand img,
.modern-logo {
    height: 80px;
    /* Pill içine sığması için */
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
    margin-left: 0;
    filter: none;
    /* Logo orijinal renginde (siyah/renkli) */
}

.modern-header.scrolled .modern-logo {
    height: 80px;
    max-height: 80px;
}

/* Header Divider */
.header-divider {
    width: 1px;
    height: 35px;
    background: #e0e0e0;
    margin: 0 25px;
}

/* Phone Icon Box */
.phone-icon-box {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.phone-icon-box:hover {
    background-color: #C9A962;
    color: #ffffff;
    transform: scale(1.05);
}

/* Header CTA Button */
.btn-header-cta {
    background-color: transparent;
    /* Lacivert Buton */
    color: #C9A962;
    border-radius: 30px;
    /* Yuvarlak buton */
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #C9A962;
    transition: var(--transition-normal);
}

.btn-header-cta:hover {
    background-color: #C9A962;
    color: #0A1628;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-header-cta i {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .modern-header {
        top: 15px;
        width: 92%;
        padding: 10px 20px;
        border-radius: 15px;
        /* Mobilde daha az yuvarlak */
    }

    .modern-header.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
    }

    .modern-header .navbar-brand img,
    .modern-logo {
        height: 40px;
        max-height: 40px;
    }

    .modern-header.scrolled .modern-logo {
        height: 35px;
        max-height: 35px;
    }

    /* Mobile: Phone Icon Left, Text Centered */
    .phone-cta-group .d-flex {
        position: relative;
        justify-content: center !important;
        /* Keep text centered */
        width: 100%;
    }

    .phone-cta-group .phone-icon-round {
        position: absolute !important;
        left: 0 !important;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 30px;
    }
}

/* Navigation Links - Dark Text for White Header */
.modern-nav-link {
    font-weight: 600;
    color: #0A1628;
    /* Lacivert Yazı */
    margin: 0 15px;
    position: relative;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 8px 0;
}


.modern-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C9A962;
    transition: var(--transition-fast);
}

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

.modern-nav-link:hover {
    color: #C9A962;
}

.modern-nav-link.active {
    color: #C9A962;
    font-weight: 600;
}

/* Dropdown Arrow */
.modern-nav-link i.bi-chevron-down {
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.6);
}

.modern-dropdown:hover .modern-nav-link i.bi-chevron-down {
    transform: rotate(180deg);
    color: #C9A962;
}

.header-cta-btn {
    padding: 14px 30px;
    font-size: 14px;
}

/* Sections */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.new-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f0f4f8;
    overflow: hidden;
    padding-top: 80px;
}

.new-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #E3F2FD 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #90CAF9;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #64B5F6;
    bottom: -50px;
    left: -100px;
}

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

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 169, 98, 0.1);
    color: #C9A962;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #0A1628 0%, #C9A962 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Service Cards */
.modern-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(10, 22, 40, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: var(--transition-normal);
    z-index: -2;
}

.modern-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
    transition: var(--transition-normal);
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 22, 40, 0.1);
    border-color: #C9A962;
}

.modern-service-card:hover .modern-service-card-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.modern-service-card:hover:before {
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, rgba(201, 169, 98, 0.1) 100%);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(10, 22, 40, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: #0A1628;
    transition: var(--transition-normal);
    border: 1px solid rgba(10, 22, 40, 0.1);
}

.modern-service-card:hover .service-icon-box {
    background: #0A1628;
    color: #C9A962;
    transform: rotateY(180deg);
    border-color: #0A1628;
}

.modern-service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A1628;
    font-weight: 700;
}

.modern-service-text {
    color: var(--text-medium);
    margin-bottom: 0;
    font-weight: 500;
}

/* Features / About Split */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.split-content {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =====================================================
   MODERN FOOTER STYLES - Ünlü Hukuk (Lacivert & Altın Tema)
   ===================================================== */
/* .nxt-footer block removed to resolve conflict with footer.css */

/* Dekoratif Üst Çizgi */
.nxt-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A962, transparent);
}

.nxt-footer-circle {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.08);
    pointer-events: none;
}

.nxt-newsletter-row {
    display: none !important;
}

/* Footer Logo - Büyük ve Dikey Ortalı */
.footer-logo-wrapper {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    margin-left: -100px;
    /* Logoyu sola çek */
}

.nxt-footer-logo {
    width: 100%;
    max-width: 380px;
    /* Logo çok daha büyük */
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s;
    display: block;
}

.nxt-footer-logo:hover {
    opacity: 1;
}

/* Footer Titles */
.nxt-footer-title {
    color: #C9A962;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.nxt-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #C9A962;
}

/* Footer Links */
.nxt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.nxt-footer-links a {
    color: #8B9EB5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.nxt-footer-links a:hover {
    color: #C9A962;
    padding-left: 5px;
    transform: translateX(3px);
}

/* İletişim Alanı - Sağ Sütun */
.nxt-address {
    color: #8B9EB5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nxt-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.nxt-contact-item i {
    color: #C9A962;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.nxt-contact-item a {
    color: #8B9EB5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    word-break: break-all;
}

.nxt-contact-item a:hover {
    color: #C9A962;
    padding-left: 0;
    /* Override link hover padding */
}

/* Footer Bottom */
.nxt-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    text-align: center;
}

.nxt-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #6B7C94;
}

.nxt-footer-bottom a {
    color: #C9A962;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nxt-footer-bottom a:hover {
    color: #D4BA7A;
}

/* Responsive */
@media (max-width: 991px) {
    .nxt-footer {
        padding: 60px 0 30px;
    }

    .footer-logo-wrapper {
        margin-bottom: 30px;
        display: block;
        text-align: center;
    }

    .nxt-footer-logo {
        max-width: 200px;
    }

    .nxt-footer-main .col-lg-3.d-flex {
        display: block !important;
        text-align: center;
        margin-bottom: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .modern-header {
        background: #ffffff;
        padding: 0px 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column-reverse;
    }

    .modern-nav-menu {
        display: none;
    }

    .modern-header.scrolled {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 0px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.phone {
    background-color: #0A1628;
    border: 2px solid #C9A962;
    color: #C9A962;
}

.float-btn.phone:hover {
    background-color: #C9A962;
    color: #0A1628;
}

.float-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        left: auto;
        right: 20px;
        bottom: 80px;
    }
}

/* Modern Dropdown Styles - Light Theme (Matches Header) */
.modern-dropdown {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
}

.modern-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 15px 0;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    margin-top: 15px;
    /* Visual Gap */
}

/* Invisible Bridge to prevent closing on hover */
.modern-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.modern-dropdown:hover .modern-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    animation: dropdownFadeIn 0.3s ease forwards;
}

.modern-dropdown-item {
    display: block;
    padding: 10px 25px;
    color: #0A1628;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-left: 3px solid transparent;
}

.modern-dropdown-item:last-child {
    border-bottom: none;
}

.modern-dropdown-item:hover {
    background-color: rgba(201, 169, 98, 0.08);
    color: #C9A962;
    border-left-color: #C9A962;
    padding-left: 30px;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   Modern Hero & Slider Styles (Redesign)
   ========================================= */

.modern-hero-section {
    background-color: #fafbfc;
    padding-top: 100px;
    /* Reduced to pull content up if needed */
    padding-bottom: 80px;
}

/* Background Shapes */
.hero-bg-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 10s ease-in-out infinite alternate;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.05) 0%, rgba(13, 71, 161, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

/* Hero Content Typography */
.modern-hero-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 188, 212, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.modern-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.modern-hero-subhead {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 400;
    max-width: 90%;
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.4);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 28px;
    border-radius: var(--radius-full);
}

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

/* Slider Container */
.modern-slider-container {
    padding: 20px;
}

.slider-frame {
    border-radius: 30px;
    /* Large rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    border: 8px solid #fff;
    /* White border frame effect */
}

.modern-slide-item {
    height: 500px;
    position: relative;
    background: #eee;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Navigation Buttons */
.modern-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 60px;
    left: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    text-align: center;
    min-width: 120px;
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
}

@keyframes floatBadge {

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

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

@media (max-width: 991px) {
    .modern-hero-headline {
        font-size: 2.5rem;
    }

    .modern-slide-item {
        height: 350px;
    }

    .floating-badge {
        left: 0;
        bottom: -20px;
    }

    .hero-bg-shape-1 {
        width: 300px;
        height: 300px;
    }
}

/* =========================================
   Green Energy Style Split Layout (Refined)
   ========================================= */

.hero-split-section {
    position: relative;
    background-color: var(--primary-color) !important;
}

/* Left Panel (Solid Color) */
.hero-split-left {
    background-color: var(--primary-color) !important;
    /* Force Brand Color */
    min-height: 600px;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-split-left {
        height: 100vh;
        max-height: 900px;
        min-height: 700px;
    }
}

/* Typography in Left Panel */
.hero-tag-line {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 20px;
}

.tag-line-accent {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 10px;
    border-radius: 2px;
}

.hero-split-headline {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
    max-width: 100%;
}

/* Buttons */
.btn-hero-white {
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    background: #f8f9fa;
}

.link-hero-white {
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
}

.link-hero-white:hover {
    color: var(--accent-color);
}

/* Right Panel (Full Image) */
.hero-split-right {
    height: 600px;
    position: relative;
    overflow: hidden;
    /* Ensure images don't bleed out */
}

@media (min-width: 992px) {
    .hero-split-right {
        height: 100vh;
        max-height: 900px;
    }
}

.hero-split-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Slightly darker overlay for text contrast if needed */
    pointer-events: none;
}

/* Overlay Card (Bottom Right) */
.hero-overlay-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 380px;
    z-index: 20;
    /* High z-index */
    background: #ffffff;
    border-bottom: 5px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: block !important;
    /* Force visibility */
}

/* Pagination Custom */
.hero-custom-pagination {
    opacity: 1;
}

/* Progress Line Pagination */
.pagination-progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

/* Navbar Logo Override (Desktop) */
@media (min-width: 992px) {

    .main-logo img,
    .navbar-brand img,
    .logo img {
        height: 110px !important;
        width: auto !important;
        margin-left: 20px !important;
        display: block;
    }

    /* Ensure container allows this size */
    .nav-wrapper {
        grid-template-columns: 280px 1fr 200px !important;
    }
}

/* Mobile Logo Override */
@media (max-width: 991px) {

    .main-logo img,
    .navbar-brand img,
    .logo img {
        height: 90px !important;
        /* SIGNIFICANTLY INCREASED */
        max-height: 90px !important;
        width: auto !important;
        margin-left: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo {
        justify-content: center !important;
        /* Ensure centered if flex */
        width: 100%;
    }

    /* Reset grid for mobile if used */
    .nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
}

.pagination-progress-bar {
    background-color: #ffffff;
    width: 0%;
}

.swiper-pagination-custom {
    display: none;
    /* Hide default dots if we are using the line */
}

/* Background Shapes (Circles) */
.split-left-bg-shape {
    position: absolute;
    width: 80vh;
    height: 80vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

/* =========================================
   Mobile Menu Custom Styles
   ========================================= */
.mobile-menu-items {
    padding-top: 20px;
}

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

.mobile-menu-list>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list>li>a {
    display: block;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    /* Büyütüldü */
    font-weight: 600;
    color: #1a1a2e;
    /* Navy Blue */
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-list>li>a:hover {
    color: #C9A962;
    /* Gold */
    background-color: rgba(0, 0, 0, 0.02);
    padding-left: 25px;
    /* Slide effect */
}

.mobile-submenu li a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding: 10px 0;
    font-weight: 500;
}

.mobile-submenu li a:hover {
    color: #C9A962;
    padding-left: 5px;
}

/* Body Lock Helper */
body.mobile-menu-open {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .hero-split-headline {
        font-size: 2.5rem;
    }

    .hero-split-right {
        height: 500px;
    }

    .hero-overlay-card {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        width: 90%;
        margin: -60px auto 30px;
        /* Overlap nicely */
    }
}

/* =========================================
   Green Energy - About/Services Section
   ========================================= */

/* Typography */
.about-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00BCD4;
    /* Blue-Primary */
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}



.about-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #212529;
    letter-spacing: -1px;
}

.about-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Impact Card */
.impact-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.impact-card-top {
    background-color: #E0F7FA;
    /* Light Cyan */
    padding: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.impact-card-top h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 0;
}

.impact-card-bottom {
    background-color: #00BCD4;
    /* Blue */
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.impact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.impact-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.impact-stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Feature Grid (4 col) */
.feature-grid-item {
    text-align: center;
    padding: 20px;
    height: 100%;
}

.feature-grid-icon {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-grid-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #212529;
}

.feature-grid-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Vertical Dividers for Desktop */
@media (min-width: 992px) {}


/* =========================================
   Green Energy - About / Video Split Section
   ========================================= */

.about-split-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-split-media {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-play-pulse {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #388E3C;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-play-pulse:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #2E7D32;
}

@keyframes pulse-white {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.about-split-content-wrapper {
    background-color: #EEF3F0;
    /* Light Green/Grey */
    padding: 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.phone-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.phone-icon-round {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00BCD4;
}

.stats-icon-green {
    font-size: 3rem;
    color: #00BCD4;
    margin-bottom: 1.5rem;
}

.taller-headline {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 1.5rem;
}

.btn-dark-pill {
    background-color: #212529;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Button Hover Green -> Blue */
.btn-dark-pill:hover {
    background-color: #00BCD4;
    color: white;
    transform: translateY(-2px);
}

/* Stats Center Image */
.stats-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.stats-floating-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    /* Overlap right edge slightly if possible, or keep inside */
    width: 160px;
    height: 160px;
    background-color: #00BCD4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.4);
    z-index: 2;
}

/* White rings effect */
.stats-floating-badge::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.badge-percent {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-top: 5px;
    opacity: 0.9;
}

/* Right Stats List */
.stat-list-item {
    margin-bottom: 3rem;
}

.stat-big-number {
    font-size: 4rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label-title {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .stats-image-container {
        height: 400px;
        margin-bottom: 3rem;
    }

    .stats-floating-badge {
        right: 10px;
        bottom: 10px;
        width: 120px;
        height: 120px;
    }

    .badge-percent {
        font-size: 2rem;
    }

    .stat-list-item {
        text-align: center;
    }
}

/* =========================================
   Blue Energy - Recent Projects Section
   ========================================= */

.projects-section-padding {
    padding-bottom: 5rem;
}

.projects-container-rounded {
    background-color: #E0F7FA;
    /* Light Cyan */
    border-radius: 20px;
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    /* Use margin if not full width */
    margin: 0 auto;
    z-index: 2;
    /* Sit on top of watermark */
}

/* Giant Watermark */
.watermark-text {
    position: absolute;
    top: -80px;
    /* Position above the container top */
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    /* Even larger */
    font-weight: 800;
    color: rgba(0, 188, 212, 0.05);
    /* Very faint blue */
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 0.8;
    width: 100%;
}

.projects-content-wrapper {
    position: relative;
    z-index: 1;
    /* Above watermark */
}

/* Header Grid */
.projects-header-row {
    margin-bottom: 3rem;
}

.sub-title-green {
    color: #00BCD4;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
}

.projects-desc-center {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Nav Buttons */
.project-nav-wrapper {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.project-nav-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.project-nav-btn:hover {
    background-color: #212529;
    color: #ffffff;
}

/* Swiper Cards */
.project-img-card {
    border-radius: 5px;
    overflow: hidden;
    height: 400px;
    /* Fixed height for consistency */
    position: relative;
}

.project-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-img-card:hover img {
    transform: scale(1.05);
}

.project-zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-img-card:hover .project-zoom-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Quote */
.projects-footer-quote {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

.badge-free-quote {
    background-color: #D32F2F;
    /* Reddish */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
}

.link-underline-dark {
    text-decoration: underline;
    color: #212529;
    font-weight: 700;
}

@media (max-width: 991px) {
    .projects-container-rounded {
        padding: 4rem 1.5rem;
        border-radius: 0;
    }

    .watermark-text {
        font-size: 18vw;
        top: 2%;
    }

    .project-nav-wrapper {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* =========================================
   NEW HERO REFERENCE DESIGN (Green/Blue Theme)
   ========================================= */

.hero-ref-section {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

/* Left Panel */
.hero-ref-left {
    position: relative;
    background-color: var(--primary-color);
    color: #ffffff;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-ref-left {
        height: 100vh;
        max-height: 900px;
    }
}

/* Radar Pattern Background */
.bg-radar-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.05) 21%, transparent 22%),
        radial-gradient(circle, transparent 35%, rgba(255, 255, 255, 0.05) 36%, transparent 37%),
        radial-gradient(circle, transparent 50%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
        radial-gradient(circle, transparent 65%, rgba(255, 255, 255, 0.05) 66%, transparent 67%);
    z-index: -1;
    pointer-events: none;
}

/* Typography Ref */
.hero-ref-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ref-headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.hero-ref-headline span.highlight {
    position: relative;
    display: inline-block;
    color: #fff;
}

.hero-ref-headline span.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-ref-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

/* Buttons Ref */
.btn-ref-white {
    background-color: #ffffff;
    color: #212529;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-ref-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

.btn-ref-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-ref-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Navigation Circles Top Right */
.hero-ref-nav {
    position: absolute;
    top: 60px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

/* Pagination Ref */
.hero-ref-pagination {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
}

.ref-current {
    color: #fff;
    margin-right: 15px;
}

.ref-progress {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.ref-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

/* Right Slider Side */
.hero-ref-right {
    position: relative;
    height: 100%;
    min-height: 600px;
    /* Ensure slider fills */
    display: flex;
}

@media (min-width: 992px) {
    .hero-ref-right {
        height: 100vh;
        max-height: 900px;
    }
}

.ref-slider-container {
    width: 100%;
    height: 100%;
}

.ref-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Overlay Card Reference */
.ref-overlay-pos {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
}

@media (min-width: 992px) {
    .ref-overlay-pos {
        left: -80px;
        /* Pull it slightly into the left green zone */
        bottom: 80px;
        border-radius: 20px;
    }
}

.ref-card-inner {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ref-card-video {
    width: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ref-card-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.ref-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s;
}

.ref-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ref-card-content {
    padding: 30px;
    width: 340px;
}

.ref-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ref-email-form {
    position: relative;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.ref-email-input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    color: #666;
}

.ref-submit-btn {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s;
}

.ref-submit-btn:hover {
    background: var(--secondary-dark);
}

@media (max-width: 991px) {
    .hero-ref-headline {
        font-size: 2.5rem;
    }

    .hero-ref-left {
        padding: 60px 30px;
        min-height: auto;
    }

    .hero-ref-right {
        height: 400px;
        min-height: auto;
    }

    .ref-overlay-pos {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -50px 20px 0;
        max-width: none;
        width: auto;
    }

    .ref-card-inner {
        flex-direction: column;
    }

    .ref-card-video {
        width: 100%;
        height: 200px;
    }

    .ref-card-content {
        width: 100%;
    }

    .hero-ref-nav {
        top: 20px;
        right: 20px;
    }

    .hero-ref-pagination {
        bottom: 20px;
        left: 30px;
    }
}

/* =========================================
   BLOG SECTION - Navy Blue & Gold Theme
   ========================================= */
.blog-section {
    background: #0A1628;
    padding: 100px 0;
}


.blog-header {
    margin-bottom: 60px;
}

.blog-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C9A962;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: rgba(201, 169, 98, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
}

.blog-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 98, 0.15);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(10, 22, 40, 0.9);
    color: #C9A962;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: #C9A962;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #8B9EB5;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Blog Detail Content Styles */
.blog-section .col-md-10.mx-auto {
    color: rgba(255, 255, 255, 0.85);
    /* Readable light text */
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-section .col-md-10.mx-auto p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.blog-section .col-md-10.mx-auto strong,
.blog-section .col-md-10.mx-auto b {
    color: #fff;
    font-weight: 700;
}

.blog-section .col-md-10.mx-auto h1,
.blog-section .col-md-10.mx-auto h2,
.blog-section .col-md-10.mx-auto h3,
.blog-section .col-md-10.mx-auto h4 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-section .col-md-10.mx-auto h2 {
    font-size: 2rem;
}

.blog-section .col-md-10.mx-auto h3 {
    font-size: 1.5rem;
}

.blog-section .col-md-10.mx-auto ul,
.blog-section .col-md-10.mx-auto ol {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.blog-section .col-md-10.mx-auto li {
    margin-bottom: 10px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A962;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-link {
    gap: 12px;
}

.btn-blog-all {
    background: transparent;
    border: 2px solid #C9A962;
    color: #C9A962;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-blog-all:hover {
    background: #C9A962;
    color: #0A1628;
}

/* Blog Section Responsive */
@media (max-width: 991px) {
    .blog-section {
        padding: 70px 0;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-headline {
        font-size: 2rem;
    }

    .blog-card-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .blog-headline {
        font-size: 1.6rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}

/* =========================================
   Solution Partners Section
   ========================================= */
.solution-partners-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.partner-text-content {
    flex: 1;
}

.partner-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(0, 188, 212, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.partner-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.partner-headline span {
    color: var(--primary-color);
    position: relative;
}

.partner-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.partner-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.partner-img-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    animation: floatImage 4s ease-in-out infinite;
}

/* Yanarlı Dönerli Animation (Glowing Rotate) */
.partner-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, var(--accent-color), transparent);
    animation: rotateGlow 4s linear infinite;
    z-index: 1;
    opacity: 0.6;
    filter: blur(30px);
}

.partner-glow-effect::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 50%;
    background: #f8f9fa;
    /* Match section bg */
    z-index: 2;
}

@keyframes rotateGlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatImage {

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

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

/* Responsive */
@media (max-width: 991px) {
    .partner-content-wrapper {
        flex-direction: column;
        /* Text first, Image second */
        text-align: center;
        gap: 30px;
    }

    .partner-tagline {
        margin-top: 0;
        margin-bottom: 20px;
        display: inline-block;
    }

    .partner-text-content {
        padding: 0 15px;
    }

    .partner-headline {
        font-size: 2rem;
    }

    .partner-img-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .partner-glow-effect {
        width: 140%;
        height: 140%;
        opacity: 0.5;
    }

    /* Ensure the image doesn't float too far away on mobile */
    @keyframes floatImage {

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

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

/* =====================================================
   WHY CHOOSE US SECTION - Navy/Gold Theme
   ===================================================== */
.why-choose-section {
    background: #0A1628;
    padding: 80px 0;
}

.why-choose-tagline {
    display: inline-block;
    color: #C9A962;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(201, 169, 98, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
}

.why-choose-headline {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-choose-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon i {
    color: #0A1628;
    font-size: 1.8rem;
}

.why-choose-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-choose-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-headline {
        font-size: 1.8rem;
    }
}

/* =====================================================
   ABOUT SPLIT SECTION - Navy/Gold Theme
   ===================================================== */
.about-split-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-split-media {
    min-height: 700px;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-split-media {
        min-height: 280px;
    }
}

.about-split-content-wrapper {
    padding: 40px 50px;
    background: #0A1628;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .about-split-content-wrapper {
        padding: 35px 25px;
    }
}

/* Tagline */
.about-split-content-wrapper .about-tagline {
    display: inline-block;
    color: #C9A962;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(201, 169, 98, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

/* Headline */
.about-split-content-wrapper .about-headline {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .about-split-content-wrapper .about-headline {
        font-size: 1.8rem;
    }
}

/* Description */
.about-split-content-wrapper .about-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Checklist */
.about-split-content-wrapper .custom-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .about-split-content-wrapper .custom-checklist {
        gap: 8px 15px;
    }

    .about-split-section .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
    }

    .about-split-section .row {
        margin: 0 !important;
    }

    .about-split-section [class*="col-"] {
        padding: 0 !important;
    }
}

.about-split-content-wrapper .custom-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-split-content-wrapper .check-icon-circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-split-content-wrapper .check-icon-circle i {
    color: #0A1628;
    font-size: 0.85rem;
    font-weight: bold;
}

.about-split-content-wrapper .custom-checklist-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Phone CTA Group */
.about-split-content-wrapper .phone-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-split-content-wrapper .btn-modern.btn-header-cta {
    background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%) !important;
    border: none !important;
    color: #0A1628 !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-split-content-wrapper .btn-modern.btn-header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.about-split-content-wrapper .phone-icon-round {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.about-split-content-wrapper .phone-icon-round i {
    color: #C9A962;
    font-size: 1.2rem;
}

.about-split-content-wrapper .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.about-split-content-wrapper .text-dark,
.about-split-content-wrapper .fw-bold {
    color: #ffffff !important;
}

/* =========================================
   Hakkımızda + Harita Split Section (Navy Blue & Gold)
   ========================================= */
.about-map-split-section {
    background: #0A1628;
    position: relative;
    overflow: hidden;
}

.about-map-split-section .row {
    margin: 0;
}

.about-map-split-section .col-lg-6 {
    padding: 0;
}

/* Sol Taraf - Hakkımızda İçerik */
.about-map-content-wrapper {
    padding: 80px 70px;
    background: #0A1628;
    height: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-map-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C9A962;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(201, 169, 98, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
}

.about-map-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-map-headline span {
    color: #C9A962;
}

.about-map-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.9;
}

/* Sağ Taraf - Google Maps Full Height */
.about-map-iframe-wrapper {
    width: 100%;
    height: 100%;
    min-height: 550px;
    position: relative;
    background: #1A2D4D;
}

.about-map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border: none;
    display: block;
}

/* About Map Split Section - Responsive */
@media (max-width: 991px) {
    .about-map-split-section {
        background: #0A1628;
    }

    .about-map-split-section .container-fluid {
        padding: 0 !important;
    }

    .about-map-content-wrapper {
        padding: 50px 30px;
        min-height: auto;
        text-align: center;
    }

    .about-map-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .about-map-headline {
        font-size: 1.8rem;
    }

    .about-map-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-map-iframe-wrapper {
        min-height: 300px;
        width: 100%;
    }

    .about-map-iframe-wrapper iframe {
        min-height: 300px;
        width: 100%;
    }

    .about-map-content-wrapper .btn-modern {
        margin: 0 auto;
    }
}

/* =========================================
   Global Page Header Styles
   ========================================= */
.page-title-section {
    padding: 180px 0 50px;
    background-color: #0A1628;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-subheading {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    .page-title-section {
        padding: 160px 0 30px;
    }

    .page-heading {
        font-size: 2rem;
    }

    .page-subheading {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

/* =====================================================
   SHOW MORE EXPERTISE CARDS - Animations
   ===================================================== */
.expertise-card-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-30px);
}

.expertise-card-hidden.expertise-card-visible {
    display: block;
    animation: fadeSlideDown 0.5s ease forwards;
}

/* Staggered animation delay for each card */
.expertise-card-hidden.expertise-card-visible:nth-child(9) {
    animation-delay: 0.05s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(10) {
    animation-delay: 0.1s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(11) {
    animation-delay: 0.15s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(12) {
    animation-delay: 0.2s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(13) {
    animation-delay: 0.25s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(14) {
    animation-delay: 0.3s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(15) {
    animation-delay: 0.35s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(16) {
    animation-delay: 0.4s;
}

.expertise-card-hidden.expertise-card-visible:nth-child(n+17) {
    animation-delay: 0.45s;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Show More Button Style */
.btn-show-more-expertise {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FFA800;
    color: #14176C;
    border: 2px solid #FFA800;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-show-more-expertise:hover {
    background: #14176C;
    color: #FFA800;
    border-color: #14176C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 23, 108, 0.3);
}

.btn-show-more-expertise:active {
    transform: translateY(-1px);
}

.btn-show-more-expertise i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-show-more-expertise:hover i {
    transform: translateY(3px);
}

/* Hide button after clicked */
.btn-show-more-expertise.hidden {
    display: none;
}