/*
Theme Name: CorporateX
Theme URI: https://ozatweb.com/corporatex
Author: Ozatweb
Author URI: https://ozatweb.com
Description: Professional corporate WordPress theme
Version: 1.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: corporatex
License Check: Required
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700&display=swap');

/* Root Variables - These will be overridden by dynamic CSS */
:root {
    --primary-color: #00A6FF;
    --primary-color-dark: #0088cc;
    --dark-blue: #1B1F3B;
    --text-color: #333333;
    --white: #ffffff;
}

/* Global Styles - Font will be overridden by dynamic CSS */
body {
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.entry-title {
    display: none !important;
}

/* Alıntı / Blockquote — tek katman, iç içe tekrar yok */
.service-content blockquote:not(.wp-block-pullquote blockquote):not(blockquote blockquote),
.entry-content blockquote:not(.wp-block-pullquote blockquote):not(blockquote blockquote),
.post-content blockquote:not(.wp-block-pullquote blockquote):not(blockquote blockquote),
.service-content figure.wp-block-pullquote,
.entry-content figure.wp-block-pullquote,
.post-content figure.wp-block-pullquote {
    margin: 28px 0;
    padding: 18px 22px 18px 24px;
    background: var(--primary-color-light, rgba(0, 166, 255, 0.08));
    border: none;
    border-left: 4px solid var(--primary-color, #00A6FF);
    border-radius: 0 8px 8px 0;
    font-size: 17px;
    line-height: 1.75;
    color: #334155;
    font-style: italic;
    display: flow-root;
    clear: both;
}

.service-content .wp-block-pullquote blockquote,
.entry-content .wp-block-pullquote blockquote,
.post-content .wp-block-pullquote blockquote,
.service-content blockquote blockquote,
.entry-content blockquote blockquote,
.post-content blockquote blockquote {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-style: italic;
}

.service-content blockquote > p,
.entry-content blockquote > p,
.post-content blockquote > p,
.service-content figure.wp-block-pullquote > p,
.entry-content figure.wp-block-pullquote > p,
.post-content figure.wp-block-pullquote > p {
    margin: 0;
}

.service-content blockquote > p + p,
.entry-content blockquote > p + p,
.post-content blockquote > p + p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 166, 255, 0.18);
    font-style: normal;
    font-size: 15px;
    color: #555;
}

.service-content blockquote cite,
.entry-content blockquote cite,
.post-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color, #00A6FF);
}

.service-content figure.wp-block-pullquote,
.entry-content figure.wp-block-pullquote,
.post-content figure.wp-block-pullquote {
    text-align: left;
}


.elementor-element {
    padding: 0 !important;
}
/* Top Bar Styles */
.topbar {
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.topbar-contact {
    display: flex;
    gap: 25px;
}

.topbar-contact a,
.topbar-contact i,
.topbar .social-icons a,
.topbar .social-icons i {
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.topbar-contact a:hover {
    color: var(--primary-color);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.language-switcher a.active {
    color: var(--primary-color);
}

.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.language-dropdown-toggle span {
    color: #fff !important;
}

.language-dropdown-toggle:hover,
.language-dropdown.open .language-dropdown-toggle {
    background: rgba(255,255,255,0.18);
}

.language-dropdown-toggle img {
    width: 16px;
    height: 16px;
}

.language-dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.language-dropdown.open .language-dropdown-toggle i {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    background: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 1002;
}

.language-dropdown.open .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #1B1F3B !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.language-dropdown-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.language-dropdown-item img {
    width: 16px;
    height: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Header Styles */
.site-header {
    background: transparent;
    box-shadow: none;
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Add background on scroll */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

.site-branding img {
    width: auto;
}

.site-branding h1 {
    margin: 0;
}

.site-branding h1 a {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
}

.site-branding .text-primary {
    color: var(--primary-color);
}

.main-navigation {
    margin-left: auto;
    margin-right: 30px;
}

.primary-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.primary-menu li a:hover {
    color: var(--primary-color);
}

@media (min-width: 1025px) {
    .header-wrapper.header-v1 .primary-menu li a {
        color: #1B1F3B;
    }

    .header-wrapper.header-v1 .primary-menu li a:hover,
    .header-wrapper.header-v1 .primary-menu li.current-menu-item > a,
    .header-wrapper.header-v1 .primary-menu li.current-menu-parent > a,
    .header-wrapper.header-v1 .primary-menu li.current-menu-ancestor > a {
        color: var(--primary-color);
    }

    .header-wrapper.header-v1 .primary-menu li a i {
        color: #fff;
        background: var(--primary-color);
        width: 28px;
        height: 28px;
        min-width: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        margin-right: 6px;
        opacity: 1;
        font-size: 14px;
    }
}

.primary-menu li.menu-item-has-children > a:after {
    display: none;
}

.primary-menu li.menu-item-has-children:hover > a:after {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.online-catalog-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.online-catalog-btn:hover {
    background: var(--primary-color-dark, #0088cc);
}

@media (min-width: 1025px) {
    .header-wrapper.header-v1:not(.header-split) .site-header {
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .header-wrapper.header-v1.header-split .site-header {
        border-bottom: none;
        box-shadow: none;
    }

    .header-wrapper.header-v1 .online-catalog-btn {
        background: var(--primary-color);
        color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
        font-weight: 600;
    }

    .header-wrapper.header-v1 .online-catalog-btn:hover {
        opacity: 0.92;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .header-wrapper.header-v1 .online-catalog-btn i {
        color: #fff;
    }

    .header-wrapper.header-v1 .search-toggle {
        background: var(--primary-color);
    }

    .header-wrapper.header-v1 .search-toggle i {
        color: #fff;
    }
}

.search-icon {
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Styles */
.site-footer {
    color: #1B1F3B;
    padding: 60px 0 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-widget-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget {
    padding: 0 15px;
}

.widget-title {
    color: #1B1F3B;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color, #00A6FF);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #334155;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-color, #00A6FF);
}

.site-info {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.copyright {
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-widget-areas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .site-branding {
        max-width: 150px;
    }

    .main-navigation {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .hamburger-menu span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger-menu span:nth-child(1) {
        top: 14px;
    }

    .hamburger-menu span:nth-child(2) {
        top: 19px;
    }

    .hamburger-menu span:nth-child(3) {
        top: 24px;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 19px;
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 19px;
    }

    .mobile-icon {
        color: #fff;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .mobile-icon i {
        color: #fff;
    }

    .mobile-icon:hover {
        color: #fff;
        background: var(--primary-color);
        opacity: 0.92;
    }

    .primary-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 80px 20px 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .primary-menu.active {
        display: block;
    }

    .primary-menu li {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .primary-menu li a {
        padding: 12px 0;
        border: none;
        font-size: 18px;
        display: flex;
        align-items: center;
        color: var(--text-color);
    }

    .primary-menu li a i {
        width: 24px;
        font-size: 20px;
        margin-right: 10px;
        color: var(--primary-color);
    }

    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding: 5px 0 5px 34px;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
    }

    .primary-menu .sub-menu.active {
        display: block;
    }

    .primary-menu .sub-menu li a {
        font-size: 16px;
        padding: 8px 0;
    }

    /* Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-color);
        font-size: 24px;
    }

    /* Language and Social Icons in Mobile Menu */
    .mobile-menu-bottom {
        position: relative;
        width: 100%;
        padding: 20px;
        background: var(--white);
        border-top: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
        margin-top: auto;
    }

    .mobile-menu-languages {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-languages a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--text-color);
        font-size: 16px;
    }

    .mobile-menu-languages img {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-social {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-social a {
        color: var(--text-color);
        font-size: 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .mobile-menu-social a:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

    .carousel-slider {
        margin-top: 0;
        position: relative;
    }

    .carousel-content {
        padding-top: 180px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 50px;
    }

    .carousel-slide {
        min-height: 600px;
    }

    .carousel-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .carousel-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .carousel-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-buttons {
        gap: 12px;
    }

    .site-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .site-header.scrolled {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* Desktop için margin değerini koruyalım */
@media (min-width: 768px) {
    .carousel-slider {
        margin-top: -116px;
    }
}

/* Language switcher flag icons */
.language-switcher img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Dropdown Menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1002;
    background: #fff;
    backdrop-filter: none;
    border: 1px solid #eee;
    min-width: 220px;
    padding: 15px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.primary-menu .sub-menu li a {
    padding: 8px 25px;
    font-size: 14px;
    color: #1B1F3B;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.primary-menu .sub-menu li a:hover {
    color: var(--primary-color);
    background: var(--primary-color-light, rgba(0,166,255,0.08));
}

/* Update the dropdown arrow style */
.primary-menu li.menu-item-has-children > a:after {
    display: none;
}

.primary-menu li.menu-item-has-children:hover > a:after {
    display: none;
}

/* Update menu item styles to accommodate icons */
.primary-menu li a i {
    margin-right: 4px;
    font-size: 16px;
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.primary-menu li a:hover i {
    opacity: 1;
}

@media (min-width: 1025px) {
    .header-wrapper.header-v1 .primary-menu li a i {
        color: #fff !important;
        background: var(--primary-color) !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        opacity: 1 !important;
    }

    .header-wrapper.header-split .header-nav-row .primary-menu > li > a i,
    .mobile-menu .primary-menu li a i {
        background: none !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        border-radius: 0 !important;
    }
}

.primary-menu .sub-menu li a i {
    margin-right: 6px;
    width: 14px;
    font-size: 14px;
}

.mobile-icons {
    display: none;
}

@media (max-width: 767px) {
    .mobile-icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-icon {
        color: #fff;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .mobile-icon i {
        color: #fff;
    }

    .mobile-icon:hover {
        color: #fff;
        background: var(--primary-color);
        opacity: 0.92;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color, #00A6FF);
}

.mobile-menu .site-branding h1 a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.mobile-menu .site-branding img {
    width: auto;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Active state for current menu item */
.mobile-menu .primary-menu li.current-menu-item > a,
.mobile-menu .primary-menu li.current-menu-parent > a {
    color: var(--primary-color);
    background: #f1f3f5;
}

.mobile-menu .primary-menu .sub-menu li.current-menu-item > a {
    color: var(--primary-color);
    background: #f1f3f5;
}

.mobile-menu-wrapper {
    padding: 10px 0;
    overflow-x: hidden;
    flex: 1 1 auto;
}

/* Mobile Menu Primary Menu Styles */
.mobile-menu .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block !important;
    position: static !important;
    background: none;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow-x: hidden;
}

.mobile-menu .primary-menu li {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    width: 100%;
}

.mobile-menu .primary-menu li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    width: 100%;
    min-height: 48px;
    height: auto;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: 1.45;
    overflow: visible;
    white-space: normal;
}

.mobile-menu .primary-menu > li > a {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 16px;
    min-height: 56px;
    color: #1B1F3B;
}

.mobile-menu .primary-menu > li > a i {
    font-size: 18px !important;
    width: 20px !important;
    min-width: 20px !important;
}

.mobile-menu .primary-menu > li > a .menu-link-text {
    font-size: 18px;
    line-height: 1.35;
}

.mobile-menu .primary-menu li a i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 18px !important;
    height: auto !important;
    min-width: 18px !important;
    flex-shrink: 0;
    margin-right: 0 !important;
    font-size: 15px;
    color: var(--primary-color, #00A6FF) !important;
    background: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

.mobile-menu .primary-menu li a .menu-link-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.35;
}

.header-split .header-nav-row .primary-menu > li > a .menu-link-text {
    white-space: nowrap;
}

.mobile-menu .primary-menu li.menu-item-has-children {
    position: relative;
}

.mobile-menu .primary-menu li.menu-item-has-children > a {
    padding-right: 48px;
}

.mobile-menu .primary-menu li.menu-item-has-children > a i {
    margin-right: 0;
}

.mobile-menu .primary-menu > li.menu-item-has-children > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 18px;
    transform: none;
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
    z-index: 2;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mobile-menu .primary-menu li.menu-item-has-children.active > a::after {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.mobile-menu .primary-menu .sub-menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f1f3f5;
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    overflow: visible;
}

.mobile-menu .primary-menu .sub-menu.active {
    display: block;
}

.mobile-menu .primary-menu .sub-menu li a {
    padding: 12px 16px 12px 28px;
    font-size: 13px;
    color: #666;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    background: #f8f9fa;
    gap: 10px;
    align-items: flex-start;
    min-height: 44px;
    height: auto;
    line-height: 1.45;
    white-space: normal;
    overflow: visible;
}

.mobile-menu .primary-menu .sub-menu li a i {
    width: 16px !important;
    height: auto !important;
    min-width: 16px !important;
    font-size: 13px;
    background: none !important;
    color: var(--primary-color, #00A6FF) !important;
}

.mobile-menu .primary-menu .sub-menu li.active > a {
    color: var(--primary-color);
    background: #f1f3f5;
}

.mobile-menu .primary-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Bottom Section */
.mobile-menu-bottom {
    padding: 25px 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: auto;
}

body.has-bottom-bar .mobile-menu {
    padding-bottom: 56px;
}

body.has-bottom-bar .mobile-menu-bottom {
    padding-bottom: 16px;
}

.header-split .mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1B1F3B;
    padding: 10px 14px;
    border-radius: 8px;
    background: #f8f9fa;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
}

.header-split .mobile-menu-phone-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #00A6FF);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.header-split .mobile-menu-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.header-split .mobile-menu-phone-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1B1F3B;
}

.header-split .mobile-menu-phone-text small {
    font-size: 11px;
    color: #64748b;
}

.mobile-menu-languages {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-menu-languages a {
    padding: 8px 15px 8px 15px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-languages a:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-menu-languages a[href="#tr"]:before {
    background-image: url('assets/images/tr.svg');
}

.mobile-menu-languages a[href="#en"]:before {
    background-image: url('assets/images/en.svg');
}

.mobile-menu-languages a.active {
    background: #e9ecef;
    color: #1B1F3B;
    font-weight: 600;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Reset Elementor Section Margins */
.elementor-2 .elementor-element.elementor-element-76d5271 {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-2 .elementor-element.elementor-element-b24a657 {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}



/* Reset Elementor Container */
.elementor-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Reset Body and HTML */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Fix for Elementor Section Width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Update menu colors for transparent header */
.primary-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.primary-menu li a:hover {
    color: var(--primary-color);
}

@media (min-width: 1025px) {
    .header-wrapper.header-v1 .primary-menu li a {
        color: #1B1F3B !important;
    }

    .header-wrapper.header-v1 .primary-menu li a:hover,
    .header-wrapper.header-v1 .primary-menu li.current-menu-item > a {
        color: var(--primary-color) !important;
    }

    .header-wrapper.header-v1:not(.header-split) .primary-menu li a i {
        color: #fff !important;
        background: var(--primary-color) !important;
    }
}

/* Update logo color for light background */
.site-branding h1 a {
    color: var(--white);
}

/* Update search icon color */
.search-icon {
    color: var(--white);
}

/* Update dropdown menu background */
.primary-menu .sub-menu {
    background: #fff;
    backdrop-filter: none;
    border: 1px solid #eee;
}

.primary-menu .sub-menu li a {
    color: #1B1F3B;
}

.primary-menu .sub-menu li a:hover {
    color: var(--primary-color);
    background: var(--primary-color-light, rgba(0,166,255,0.08));
}

/* Update header on scroll */
.scrolled .primary-menu li a,
.scrolled .site-branding h1 a,
.scrolled .search-icon {
    color: var(--text-color);
}

.scrolled .primary-menu .sub-menu {
    background: var(--white);
    backdrop-filter: none;
}

.scrolled .primary-menu .sub-menu li a {
    color: var(--text-color);
}

/* Adjust carousel positioning */
.carousel-slider {
    position: relative;
    z-index: 1;
    margin-top: -116px;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding-top: 200px;
} 


.elementor-391 .elementor-element.elementor-element-b127ad0 {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-392 .elementor-element.elementor-element-d79a7e0 {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}


.elementor-392 .elementor-element.elementor-element-a8f8614  {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-391 .elementor-element.elementor-element-8fd0da8  {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* ============================================
   Header Split Layout (V1 redesigned)
   ============================================ */
.header-split .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.breadcrumb-area {
    background: var(--primary-color-dark, var(--primary-color, #00A6FF)) !important;
    color: #fff !important;
    position: relative;
    z-index: 900;
}

.breadcrumb-area .breadcrumb-nav a,
.breadcrumb-area .breadcrumb-nav .current,
.breadcrumb-area .page-title {
    color: #fff !important;
}

.breadcrumb-area .breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.55) !important;
}

body.mobile-menu-open {
    padding-bottom: 0 !important;
}

body.mobile-menu-open .mobile-bottom-bar {
    z-index: 900;
}

body.mobile-menu-open.has-bottom-bar .mobile-menu {
    padding-bottom: 0;
}

body.mobile-menu-open .mobile-menu-bottom {
    padding-bottom: 24px;
    position: relative;
    z-index: 2;
}

.header-wrapper.header-split {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
}

.header-split .site-header {
    border-bottom: none;
    background: #fff;
    position: relative;
    width: 100%;
}

body.header-split-fixed {
    padding-top: var(--cx-header-offset, 118px);
}

body.header-split-fixed.cx-header-breadcrumb,
body.header-split-fixed.single-service,
body.header-split-fixed.single-video {
    padding-top: 0 !important;
}

body.cx-header-breadcrumb .breadcrumb-area,
body.single-service .cx-single-top-breadcrumb,
body.single-video .cx-single-top-breadcrumb {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: calc(var(--cx-header-offset, 118px) + 6px);
    padding-bottom: 16px;
}

body.single-service .cx-inline-breadcrumb--attached,
body.single-video .cx-inline-breadcrumb--attached {
    padding: 0;
}

body.single-service .cx-inline-breadcrumb--attached .cx-breadcrumb-nav,
body.single-video .cx-inline-breadcrumb--attached .cx-breadcrumb-nav {
    justify-content: center;
}

.cx-single-page-title {
    margin: 0 0 10px;
    padding: 0;
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

body.single-service .service-featured-image,
body.single-video .video-featured-image {
    margin-top: 24px;
    margin-bottom: 24px;
}

.cx-single-contact-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color-dark, #0f172a) 0%, var(--primary-color, #00A6FF) 100%);
    padding: 32px 0;
}
.cx-single-contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cx-single-contact-cta-text {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    min-width: 0;
}
.cx-single-contact-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.cx-single-contact-cta-title {
    margin: 0 0 6px;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
}
.cx-single-contact-cta-sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    max-width: 480px;
}
.cx-single-contact-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cx-single-contact-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}
.cx-single-contact-cta-phone i {
    font-size: 16px;
}
.cx-single-contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-color-dark, #0f172a);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cx-single-contact-cta-btn:hover {
    color: var(--primary-color-dark, #0f172a);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
@media (max-width: 767px) {
    .cx-single-contact-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cx-single-contact-cta-text {
        flex-direction: column;
        align-items: center;
    }
    .cx-single-contact-cta-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .cx-single-contact-cta-phone,
    .cx-single-contact-cta-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

.header-wrapper.header-split.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-split .header-top-row {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.header-split .header-top-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.header-split .header-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-split .header-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
    max-width: 280px;
}

.header-split .header-address i {
    color: var(--primary-color, #00A6FF);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.header-split .header-search-form {
    display: flex;
    align-items: stretch;
    min-width: 220px;
    max-width: 320px;
    flex: 1;
}

.header-split .header-search-form input[type="search"] {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #1B1F3B;
    background: #fff;
    outline: none;
    min-width: 0;
}

.header-split .header-search-form input[type="search"]:focus {
    border-color: var(--primary-color, #00A6FF);
}

.header-split .header-search-form button {
    border: none;
    background: var(--primary-color, #00A6FF);
    color: #fff;
    padding: 0 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.header-split .header-search-form button:hover {
    opacity: 0.9;
}

.header-split .header-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-split .header-social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff;
}

.header-split .header-social-icons a:hover {
    border-color: var(--primary-color, #00A6FF);
    color: var(--primary-color, #00A6FF);
}

.header-split .header-top-row .language-dropdown-toggle {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    color: #1B1F3B !important;
}

.header-split .header-top-row .language-dropdown-toggle span {
    color: #1B1F3B !important;
}

.header-split .header-nav-row {
    background: var(--primary-color, #00A6FF);
    padding: 0;
}

.header-split .header-nav-row .header-container {
    min-height: 52px;
}

.header-split .header-home-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-right: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.header-split .header-home-icon:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.header-split .header-nav-row .main-navigation {
    flex: 1;
    margin: 0;
    overflow: visible;
}

.header-split .header-nav-row .primary-menu {
    display: flex;
    align-items: center;
    gap: 0;
    height: 52px;
}

.header-split .header-nav-row .primary-menu > li {
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.header-split .header-nav-row .primary-menu > li > a {
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding: 0 22px 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: background 0.2s ease;
    position: relative;
}

.header-split .header-nav-row .primary-menu > li > a i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff !important;
    background: none !important;
    border-radius: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    padding: 0;
}

.header-split .header-nav-row .primary-menu > li > a:hover,
.header-split .header-nav-row .primary-menu > li.current-menu-item > a,
.header-split .header-nav-row .primary-menu > li.current-menu-parent > a {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

.header-split .header-nav-row .primary-menu > li.menu-item-has-children > a {
    padding-right: 28px;
}

.header-split .header-nav-row .primary-menu > li.menu-item-has-children > a::before {
    display: none !important;
    content: none !important;
}

.header-split .header-nav-row .primary-menu > li.menu-item-has-children > a::after {
    content: '\f107' !important;
    display: flex !important;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    transform: translateY(-50%) !important;
    font-size: 11px;
    color: rgba(255,255,255,0.9) !important;
    margin: 0;
    transition: none;
    background: none;
}

.header-split .header-nav-row .primary-menu > li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) !important;
}

.header-split .header-nav-row .primary-menu > li:not(.menu-item-has-children) > a::after {
    display: none !important;
}

.header-split .header-phone-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: rgba(0,0,0,0.12);
    padding: 8px 18px;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.header-split .header-phone-block:hover {
    background: rgba(0,0,0,0.2);
}

.header-split .header-phone-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.header-split .header-phone-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.3;
}

.header-split .header-phone-text strong {
    font-size: 14px;
    font-weight: 700;
}

.header-split .header-phone-text small {
    font-size: 11px;
    opacity: 0.85;
}

/* Mobile rows */
.header-split .header-mobile-top,
.header-split .header-mobile-bar {
    display: none;
}

@media (max-width: 1024px) {
    .header-split .header-top-row,
    .header-split .header-nav-row {
        display: none;
    }

    .header-split .header-mobile-top {
        display: block;
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .header-split .header-mobile-top .header-container {
        gap: 12px;
    }

    .header-split .header-mobile-top .site-branding {
        flex-shrink: 0;
        max-width: 45%;
    }

    .header-split .header-mobile-search-wrap {
        flex: 1;
        min-width: 0;
    }

    .header-split .header-search-form--mobile {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .header-split .header-search-form--mobile input[type="search"] {
        font-size: 12px;
        padding: 8px 10px;
    }

    .header-split .header-search-form--mobile button {
        padding: 0 12px;
    }

    .header-split .header-mobile-bar {
        display: block;
        background: var(--primary-color, #00A6FF) !important;
        padding: 0;
        border-top: none;
    }

    .header-split .header-mobile-bar .header-container {
        min-height: 44px;
    }

    .header-split .header-social-icons--mobile a {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        text-decoration: none;
        background: transparent;
        transition: opacity 0.2s ease, border-color 0.2s ease;
    }

    .header-split .header-social-icons--mobile a i {
        color: #fff !important;
    }

    .header-split .header-social-icons--mobile a:hover {
        opacity: 0.85;
        color: #fff !important;
    }

    .header-split .header-mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    .header-split .mobile-search-toggle {
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        color: #fff !important;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-split .mobile-search-toggle i {
        color: #fff !important;
    }

    .header-split .header-menu-toggle.hamburger-menu {
        width: auto !important;
        height: auto !important;
        min-width: 0;
        min-height: 38px;
        padding: 8px 14px !important;
        border: 1px solid rgba(255,255,255,0.85);
        background: transparent !important;
        color: #fff !important;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.4px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        position: static !important;
        flex-shrink: 0;
    }

    .header-split .header-menu-toggle .menu-toggle-label {
        display: block;
        line-height: 1.2;
        white-space: nowrap;
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: none;
    }

    .header-split .header-menu-toggle span:not(.menu-toggle-label) {
        display: none !important;
    }

    .header-wrapper.header-split.scrolled,
    .header-split .site-header.scrolled {
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
}

@media (min-width: 1025px) {
    .header-split .header-mobile-top,
    .header-split .header-mobile-bar {
        display: none !important;
    }
}
