/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --color-primary: #231f20;
    --color-primary-rgb: 35, 31, 32;
    --color-secondary: #2bb673;
    --color-secondary-rgb: 43, 182, 115;
}

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #555;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Header Wrapper (Absolute for transparency over slider) */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Topbar Styles */
.topbar {
    background-color: transparent;
    position: relative;
    z-index: 200;
    padding: 9px 0;
}

/* Info Wrapper */
.topbar .topbar-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar .topbar-info ul li {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
}

.topbar .topbar-info ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

.topbar .topbar-info ul li a:hover {
    color: var(--color-secondary);
}

.topbar .topbar-info ul li i {
    color: var(--color-secondary);
    background-color: rgba(var(--color-secondary-rgb), 0.15);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 8px;
    transition: 0.3s;
    vertical-align: middle;
}

.topbar .topbar-info ul li:hover i {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: scale(1.1);
}

.topbar .topbar-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.topbar .topbar-social ul li {
    padding: 0;
    display: flex;
}

.topbar .topbar-social ul li a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: 0.5s;
    background-color: rgba(var(--color-secondary-rgb), 0.15);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    vertical-align: middle;
}

.topbar .topbar-social ul li:hover a {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Search Wrapper */
.topbar .topbar-search form {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-secondary);
    border-radius: 40px;
    overflow: hidden;
    height: 40px;
    background: rgba(var(--color-secondary-rgb), 0.02);
}

.topbar .topbar-search form input {
    border: none;
    background: transparent;
    padding: 0 15px;
    font-size: 14px;
    color: var(--color-secondary);
    outline: none;
    width: 150px;
}

.topbar .topbar-search form input::placeholder {
    color: var(--color-secondary);
    opacity: 0.8;
}

.topbar .topbar-search form button {
    border: none;
    background: transparent;
    padding: 0 15px 0 0;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 14px;
}

.topbar .topbar-search form button:hover {
    color: var(--color-secondary);
}

/* =====================
   Site Header
   ===================== */
.site-header {
    background-color: transparent;
    position: relative;
    z-index: 999;
}

/* Sticky Header */
.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(var(--color-primary-rgb), 0.98);
    /* Siyah arkaplan (hafif saydam) */
    animation: fadeInDown 0.5s ease-in-out forwards;
    border-bottom: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

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

.site-header .header-main {
    padding: 0;
}

/* Logo Placeholder */
.site-logo a {
    display: block;
    padding: 0;
}

.site-logo .logo-placeholder {
    width: 160px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.custom-mobile-menu .mobile-logo-placeholder {
    width: 140px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Mobile Toggle */
.site-menu .mobile-toggle {
    display: none;
    text-align: right;
    padding: 15px 0;
}

.site-menu .mobile-toggle a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.site-menu .mobile-toggle a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Main Nav */
.site-menu .main-nav {
    line-height: 41px;
    text-align: right;
}

.site-menu .main-nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-menu .main-nav>ul>li {
    display: inline-block;
    position: relative;
    text-align: left;
    padding: 0 6px;
}

.site-menu .main-nav>ul>li:first-child {
    padding-left: 0;
}

.site-menu .main-nav>ul>li:last-child {
    padding-right: 0;
}

/* Birinci seviye link */
.site-menu .main-nav>ul>li>a {
    font-weight: 900;
    font-size: 17px;
    color: #fff;
    display: block;
    padding: 23px 15px 26px 15px;
    position: relative;
    text-decoration: none;
    transition: 0.5s;
}

/* Altta yuvarlak marker efekti */
.site-menu .main-nav>ul>li>a:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition: 0.3s ease;
}

/* Hover & aktif - birinci seviye */
.site-menu .main-nav>ul>li:hover>a,
.site-menu .main-nav>ul>li.active>a {
    color: var(--color-secondary);
}

/* Marker görünür hale gelir */
.site-menu .main-nav>ul>li:hover>a:before,
.site-menu .main-nav>ul>li.active>a:before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Dropdown Sub-menu */
.site-menu .main-nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background-color: #212121;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-menu .main-nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub-menu öğeleri */
.site-menu .main-nav ul li ul>li {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    transition: all 0.3s;
}

.site-menu .main-nav ul li ul>li:last-child {
    border-bottom: 0;
}

.site-menu .main-nav ul li ul>li>a {
    font-size: 15px;
    font-weight: 300;
    color: #e0e0e0;
    padding-left: 18px;
    position: relative;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    line-height: 1.3;
}

/* Sub-menu link başındaki nokta efekti */
.site-menu .main-nav ul li ul>li>a:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}

.site-menu .main-nav ul li ul>li>a:after {
    content: '';
    background-color: #3b3b3b;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: 0.3s;
}

/* Sub-menu hover */
.site-menu .main-nav ul li ul>li:hover {
    background-color: #1a1a1a;
}

.site-menu .main-nav ul li ul>li:hover>a {
    color: var(--color-secondary);
}

.site-menu .main-nav ul li ul>li:hover>a:before {
    border-color: var(--color-secondary);
}

.site-menu .main-nav ul li ul>li:hover>a:after {
    background-color: var(--color-secondary);
}

/* Alt alt menü (3. seviye) */
.site-menu .main-nav ul li ul>li ul {
    left: 100%;
    top: 0;
    margin-top: 0;
    border-top: 2px solid var(--color-secondary);
    border-left: none;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, opacity 0.3s;
}

.site-menu .main-nav ul li ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
}

/* Alt alt menü ok ikonu */
.site-menu .main-nav ul li ul li:has(ul)>a:after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #3b3b3b;
    border: none;
    background: none;
    transition: 0.3s;
}

.site-menu .main-nav ul li ul li:has(ul):hover>a:after {
    color: var(--color-secondary);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .site-menu .mobile-toggle {
        display: block;
    }

    .site-menu .main-nav {
        display: none;
        text-align: left;
        background-color: var(--color-primary);
        padding: 10px 0;
    }

    .site-menu .main-nav.open {
        display: block;
    }

    .site-menu .main-nav>ul>li {
        display: block;
        padding: 0;
        border-bottom: 1px solid #0d2a3e;
    }

    .site-menu .main-nav>ul>li>a {
        padding: 12px 15px;
    }

    .site-menu .main-nav>ul>li>a:before {
        display: none;
    }

    .site-menu .main-nav ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        margin-top: 0;
        border-top: none;
        border-left: 3px solid var(--color-secondary);
        display: none;
    }

    .site-menu .main-nav ul li.open>ul {
        display: block;
    }

    .site-menu .main-nav ul li ul>li ul {
        left: 0;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .site-menu .main-nav ul li ul>li.open>ul {
        display: block;
    }
}

/* =====================
   Main Slider Section
   ===================== */
.main-slider {
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-slider .slider-item {
    height: 820px;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-color: var(--color-primary);
    /* Fallback */
}

.main-slider .slider-item.item-1 {
    background-image: url('https://images.unsplash.com/photo-1581428982868-e410dd047a90?q=80&w=2000&auto=format&fit=crop');
}

.main-slider .slider-item.item-2 {
    background-image: url('https://images.unsplash.com/photo-1550581190-9c1c48d21d6c?q=80&w=2000&auto=format&fit=crop');
}

.main-slider .slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.main-slider .slider-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.main-slider .slider-content h2 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.main-slider .slider-content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Slider Navigasyon Okları */
.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 !important;
}

.main-slider .owl-nav button.owl-prev,
.main-slider .owl-nav button.owl-next {
    position: absolute;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.15) !important;
    color: #fff !important;
    font-size: 20px !important;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.main-slider .owl-nav button.owl-prev:hover,
.main-slider .owl-nav button.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.main-slider .owl-nav button.owl-prev {
    left: 30px;
}

.main-slider .owl-nav button.owl-next {
    right: 30px;
}

/* Slider Buttons */
.main-slider .slider-btn-group {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-slider .slider-btn-group a {
    display: inline-block;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.1s ease-out;
    position: relative;
    z-index: 1;
}

.main-slider .slider-btn-group a:first-child {
    background-color: var(--color-secondary);
    color: #212121;
    border: 1px solid var(--color-secondary);
}

.main-slider .slider-btn-group a:first-child:hover {
    background-color: #fff;
    color: #212121;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

.main-slider .slider-btn-group a:last-child {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.main-slider .slider-btn-group a:last-child:hover {
    background-color: var(--color-secondary);
    color: #212121;
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Slider Element Animations (Fade In Up with Stagger) */
.main-slider .slider-content h2,
.main-slider .slider-content p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-slider .owl-item.active .slider-content h2,
.main-slider .owl-item.active .slider-content p {
    opacity: 1;
    transform: translateY(0);
}

.main-slider .owl-item.active .slider-content h2 {
    transition-delay: 0.3s;
}

.main-slider .owl-item.active .slider-content p {
    transition-delay: 0.5s;
}

/* Keyframes for button entry to avoid hover transition conflicts */
@keyframes slideUpFadeBtn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.main-slider .slider-content .slider-btn-group a {
    opacity: 0;
}

.main-slider .owl-item.active .slider-content .slider-btn-group a:first-child {
    animation: slideUpFadeBtn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.7s forwards;
}

.main-slider .owl-item.active .slider-content .slider-btn-group a:last-child {
    animation: slideUpFadeBtn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.85s forwards;
}

/* =====================
   Premium Features Section
   ===================== */
.features {
    position: relative;
    z-index: 10;
    margin-top: -75px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, transparent 75px, #ffffff 75px);
}

.features-row {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    margin: 0;
}

.feature-item {
    position: relative;
    padding: 50px 40px;
    transition: 0.4s ease;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(var(--color-secondary-rgb), 0.15) 0%, rgba(var(--color-secondary-rgb), 0) 60%);
    opacity: 0;
    transform: translate(-20px, 20px) scale(0.9);
    transform-origin: bottom left;
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-item:hover::before {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.feature-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.15);
}

.feature-item:last-child::after {
    display: none;
}

.feature-item:hover {
    background-color: #fff;
    cursor: pointer;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    z-index: 0;
    line-height: 1;
}

.feature-item:hover .feature-number {
    color: var(--color-secondary);
    -webkit-text-stroke: 0;
    opacity: 0.1;
    transform: scale(1.1) translateY(-10px);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content .icon-wrap {
    font-size: 32px;
    color: var(--color-secondary);
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
}

.feature-item:hover .icon-wrap {
    transform: translateX(10px);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .features {
        margin-top: 50px;
    }

    .feature-item::after {
        width: 60%;
        height: 1px;
        right: auto;
        left: 20%;
        top: auto;
        bottom: 0;
    }
}

/* =====================
   About Section
   ===================== */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* About Images Group */
.about-images {
    display: block;
    position: relative;
    padding-bottom: 50px;
}

.about-shape {
    position: absolute;
    width: 140%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.5) 0%, rgba(var(--color-secondary-rgb), 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* Changed from -1 to 0 so it stays above the section background */
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    /* So it doesn't block clicks */
}

.image-box {
    position: relative;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-box-1 {
    width: 75%;
    z-index: 2;
}

.image-box-2 {
    width: 60%;
    position: absolute;
    right: 0;
    bottom: -10px;
    /* reduced offset so it's not too open initially */
    z-index: 3;
    border-radius: 5px;
}

.image-box-2 .img-inner {
    border-radius: 5px;
}

.img-inner {
    border-radius: 5px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: floatingIcon 3s ease-in-out infinite;
}

@keyframes floatingIcon {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 15px));
    }

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

/* =====================
   Services Section
   ===================== */
.services-section {
    position: relative;
    padding: 100px 0 80px;
    background-color: #ffffff;
    /* Base color below the half-bg */
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    margin: 0 2%;
    height: 450px;
    /* Increased to cover a bit more */

    background-size: cover;
    background-position: center 0;
    z-index: 0;
    border-radius: 15px;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65);
}

/* Section Title Fixes for Services Section */
.services-section .section-title span {
    display: block;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-size: 2.1rem;
    font-weight: 900;
}

.services-section .section-title p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    font-size: 1.1rem;
}

/* Blog Section Title Fixes */
.blog-section-title span {
    display: block;
    color: #212529 !important;
    /* text-dark */
    margin-bottom: 1.5rem;
    font-size: 2.1rem;
    font-weight: 900;
}

.blog-section-title p {
    color: #6c757d !important;
    /* text-muted */
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    font-size: 1.1rem;
}

/* About Action Button Fix */
.about-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background-color: var(--color-secondary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-action a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.about-action a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
}

.about-action a:hover::before {
    width: 100%;
}

.services-section .section-title h2 {
    font-weight: 900;
}

/* =====================
   Services Cards
   ===================== */
.services-carousel .owl-stage-outer {
    padding: 40px 50px 60px 50px !important;
    margin: -40px -50px -60px -50px !important;
}

/* Hide inactive items so their edges don't peek out in the expanded margin */
.services-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-carousel .owl-item.active {
    opacity: 1;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/5;
    border-radius: 10px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h4 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-content h4 a {
    color: inherit;
    text-decoration: none;
}

.service-card:hover .service-content h4 {
    color: var(--color-secondary);
}

.service-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

/* =====================
   Owl Carousel Dots (Modern)
   ===================== */
.services-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.services-carousel .owl-dot {
    outline: none !important;
}

.services-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #d1d1d1 !important;
    display: block;
    margin: 0 6px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.services-carousel .owl-dot.active span,
.services-carousel .owl-dot:hover span {
    width: 25px;
    /* Pill shape */
    background: var(--color-secondary) !important;
}

/* =====================
   Blog Section & Cards
   ===================== */
.blog-section {
    padding: 60px 0 100px 0;
    /* Reduced top padding */
    background-color: #ffffff;
}

.blog-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.04);
    /* Long shadow, negative spread prevents side spilling, low opacity */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    /* Subtler hover */
    box-shadow: 0 35px 60px -20px rgba(0, 0, 0, 0.06);
    /* Stronger hover shadow with same effect */
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/5;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-content {
    padding: 20px;
    /* Reduced padding for compact look */
}

.blog-title-wrap h4 {
    font-size: 1.15rem;
    /* Smaller title */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title-wrap a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title-wrap a:hover {
    color: var(--color-secondary);
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    /* Smaller text */
    line-height: 1.5;
    margin-bottom: 0;
    /* Flush with bottom padding since read-more is removed */
}


.video-overlay a {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.1);
    /* Glassmorphism base */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5), 0 0 0 15px rgba(255, 255, 255, 0.1);
}

.video-overlay a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    z-index: -1;
    transition: 0.4s ease;
}

.video-overlay a i {
    position: relative;
    margin-left: 4px;
    color: var(--color-primary);
    /* Icon matches dark theme */
    z-index: 2;
}

.video-overlay a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6), 0 0 0 20px rgba(255, 255, 255, 0.15);
}

.video-overlay a:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-secondary);
}

/* =====================
   Video Lightbox
   ===================== */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.video-lightbox-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.95);
    transition: 0.4s ease;
}

.video-lightbox.active .video-lightbox-content {
    transform: scale(1);
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-lightbox-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}



.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -1px;
}

.about-content p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

/* =====================
   Theme Utilities
   ===================== */
.text-theme {
    color: var(--color-secondary) !important;
}

.btn-theme {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: #fff !important;
}

.btn-theme:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Modern About Button */
.btn-modern-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    /* Standart 8px üzerine 10px eklenerek 18px yapıldı */
    background-color: var(--color-secondary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    /* Tam yuvarlak (pill) kenarlar */
    text-decoration: none !important;
    /* Alt çizgiyi kaldır */
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    /* color-secondary ile uyumlu varsayılan yeşil/mint tonu */
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-modern-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-modern-about:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    /* Hover anında da alt çizgi olmasın */
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
}

.btn-modern-about:hover::before {
    width: 100%;
}

/* =====================
   Main Footer
   ===================== */
.main-footer {
    background-color: #000000;
    color: #c8c8c8;
    font-size: 15px;
    font-weight: 300;
}

/* Footer Top (Widgets) */
.main-footer .footer-top {
    padding: 80px 0 60px;
}

.main-footer span.footer-title {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
    /* Span'ın h4 gibi davranmasını sağlar */
}

/* İki tonlu premium alt çizgi tasarımı */
.main-footer span.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Arka plandaki sönük çizgi */
}

.main-footer span.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-secondary);
    /* Öne çıkan vurgu çizgisi */
    transition: 0.4s ease;
}

/* Footer alanına gelince çizginin hafif uzaması (isteğe bağlı ince detay) */
.main-footer .footer-top>.container>.row>div:hover span.footer-title::after {
    width: 40px;
}

.main-footer .footer-about p {
    line-height: 1.8;
}

.main-footer .footer-about a {
    display: inline-block;
    margin-bottom: 20px;
}

/* Footer İletişim (Contact) */
.main-footer .filetisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .filetisim ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.6;
}

.main-footer .filetisim ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

.main-footer .filetisim ul li a:hover {
    color: var(--color-secondary);
}

.main-footer .filetisim ul li i {
    color: var(--color-secondary);
    background-color: rgba(var(--color-secondary-rgb), 0.15);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 15px;
    transition: 0.3s;
    flex-shrink: 0;
}

.main-footer .filetisim ul li:hover i {
    background-color: var(--color-secondary);
    color: #212121;
    /* Tema zemin rengine uygun kontrast */
    transform: scale(1.1);
}

/* Footer Menu & Flist */
.main-footer ul.footer-menu,
.main-footer .flist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer ul.footer-menu li,
.main-footer .flist ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.main-footer ul.footer-menu li:last-child,
.main-footer .flist ul li:last-child {
    border-bottom: none;
}

.main-footer ul.footer-menu li a,
.main-footer .flist ul li a {
    color: #d8d8d8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

.main-footer ul.footer-menu li a:before,
.main-footer .flist ul li a:before {
    content: '\f101';
    /* angle-double-right for a more modern look */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-secondary);
    font-size: 13px;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.main-footer ul.footer-menu li a:hover,
.main-footer .flist ul li a:hover {
    color: var(--color-secondary);
    padding-left: 26px;
}

.main-footer ul.footer-menu li a:hover:before,
.main-footer .flist ul li a:hover:before {
    opacity: 1;
    left: 4px;
}


/* Footer Bottom (Copyright) */
.main-footer .footer-bottom {
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer .copyright a {
    color: var(--color-secondary);
    text-decoration: none;
}

.main-footer .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.main-footer .footer-social li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-footer .footer-social a {
    color: #d8d8d8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.4s;
    text-decoration: none;
}

.main-footer .footer-social a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* =====================
   Mobile Offcanvas Menu
   ===================== */
.custom-mobile-menu.offcanvas-start {
    width: 90%;
    background-color: var(--color-primary);
    color: #fff;
    border-right: none;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.custom-mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
}

.custom-mobile-menu .btn-close {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    box-sizing: border-box;
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.custom-mobile-menu .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.custom-mobile-menu .offcanvas-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

#mobile-nav-container>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-nav-container>ul>li {
    margin-bottom: 10px;
}

#mobile-nav-container>ul>li>a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s;
    position: relative;
}

#mobile-nav-container>ul>li>a i {
    font-size: 16px;
    opacity: 0.5;
}

#mobile-nav-container>ul>li>a:hover,
#mobile-nav-container>ul>li>a[aria-expanded="true"] {
    color: var(--color-secondary);
}

.custom-mobile-menu ul ul {
    display: none;
    background-color: transparent;
    padding: 5px 0 15px 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 5px;
    margin-top: 5px;
}

.custom-mobile-menu ul ul li a {
    display: block;
    padding: 8px 0;
    color: #a0aab2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.custom-mobile-menu ul ul li a:hover {
    color: #fff;
}

.mobile-menu-footer ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    padding: 0;
}

.mobile-menu-footer ul li {
    margin-bottom: 1rem;
}

.mobile-menu-footer .btn-outline-warning {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.mobile-menu-footer .btn-outline-warning:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* =====================
   Page Title Section
   ===================== */
.page-title {
    height: 450px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-title .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* To account for transparent header */
}

.page-title h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-title nav ol {
    margin: 0;
    padding: 10px 25px 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    list-style: none;
}

.page-title nav ol li,
.page-title nav ol li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.page-title nav ol li:first-child a {
    display: inline-flex;
    align-items: center;
}

.page-title nav ol li:first-child a::before {
    content: "\f015";
    /* FontAwesome Home */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--color-secondary);
    background-color: rgba(var(--color-secondary-rgb), 0.15);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.page-title nav ol li a:hover {
    color: var(--color-secondary);
}

.page-title nav ol li:last-child {
    color: var(--color-secondary);
}

.page-title nav ol li+li::before {
    color: var(--color-secondary);
    content: "\f054";
    /* FontAwesome Chevron Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 12px;
    font-size: 11px;
}

/* =====================
   Mobile Responsive Adjustments
   ===================== */
@media (max-width: 991px) {
    .main-slider .slider-item {
        height: 680px;
    }

    .main-slider .slider-content h2 {
        font-size: 42px;
    }

    .main-slider .slider-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .main-slider .slider-item {
        height: 550px;
    }

    .main-slider .slider-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .main-slider .slider-content p {
        font-size: 16px;
    }

    /* Hide slider navigation arrows on mobile */
    .main-slider .owl-nav {
        display: none !important;
    }

    /* Hide slider action buttons on mobile */
    .main-slider .slider-btn-group {
        display: none !important;
    }
}

/* Sayfa Section Ayarları */
section.sayfa,
.sayfa section {
    display: block;
    padding: 75px 0px;
}

section.sayfa img,
.sayfa img {
    width: 100% !important;
    height: auto !important;
}

/* =====================
   İletişim Widget (.wiletisim) Modern Tasarımı
   ===================== */
.wiletisim {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Dekoratif şekil arka plan */
.wiletisim::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: var(--color-secondary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.wiletisim span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 30px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.wiletisim p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.wiletisim ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.wiletisim ul li:last-child {
    margin-bottom: 0;
}

.wiletisim ul li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.wiletisim ul li:hover i {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--color-secondary-rgb), 0.3);
}

.wiletisim ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wiletisim ul li a:hover {
    color: var(--color-secondary);
}

/* =====================
   Hizmetler & Blog Widget Koyu Tasarımı
   ===================== */
.hizmetwidget,
.blogwidget {
    background: var(--color-primary);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Dekoratif şekil arka plan */
.hizmetwidget::before,
.blogwidget::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--color-secondary);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.hizmetwidget span,
.blogwidget span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
}

.hizmetwidget ul,
.blogwidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hizmetwidget ul li,
.blogwidget ul li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hizmetwidget ul li:last-child,
.blogwidget ul li:last-child {
    border-bottom: none;
}

.hizmetwidget ul li a,
.blogwidget ul li a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 5px;
    transition: all 0.3s ease;
    background: transparent;
}

.hizmetwidget ul li a::before,
.blogwidget ul li a::before {
    content: '\f105';
    /* FontAwesome sağ ok ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--color-secondary);
    transition: 0.3s ease;
}

.hizmetwidget ul li a:hover,
.blogwidget ul li a:hover {
    color: #ffffff;
    padding-left: 10px;
    background: transparent;
}

.hizmetwidget ul li a:hover::before,
.blogwidget ul li a:hover::before {
    color: #ffffff;
}

/* =====================
   Main Logo Size
   ===================== */
.main-logo {
    width: 271px;
    height: 80px;
    object-fit: contain;
}

/* =====================
   Footer Logo Size
   ===================== */
.footer-logo img {
    height: 70px;
    width: auto;
}

/* =====================
   Mobile Logo Size
   ===================== */
.mobile-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* =====================
   Product Card
   ===================== */
.product-card {
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 8/9;
    border-radius: 0px;
}

.product-img-wrapper-home {
    aspect-ratio: 10/8 !important;
}

.product-img-wrapper img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-content {
    padding: 15px 12px;
    text-align: center;
}

.product-content h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.product-content h4 a {
    color: inherit;
    text-decoration: none;
}

.product-card:hover .product-content h4 {
    color: var(--color-secondary);
}

/* =====================
   Home Products Section
   ===================== */
.home-products {
    padding: 100px 0 80px 0;
    background-color: #ffffff;
}

.home-products .section-title {
    margin-bottom: 50px;
    position: relative;
}

.home-products .section-title span {
    display: inline-block;
    color: var(--color-primary) !important;
    font-size: 2.3rem;
    font-weight: 900;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.home-products .section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.home-products .section-title p {
    color: #6c757d !important;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* =====================
   Section Best Seller (Recommended Products on Details Page)
   ===================== */
.section-best-seller {
    margin-bottom: 100px;
}

/* =====================
   Product Details View Styles
   ===================== */
.product-info-wrap {
    padding: 10px 0;
}

.product-title-big {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-short-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.product-short-desc p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.product-short-desc p:last-child {
    margin-bottom: 0;
}

.product-short-desc span {
    color: #444444 !important;
}

/* =====================
   Product Detail Image (.detayresim)
   ===================== */
.detayresim {
    position: relative;
}

/* Video-specific Container */
.detayresim.video-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 50px;
    border-radius: 5px;
    padding: 0px;
    padding-bottom: 0px !important;
}

.detayresim.video-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detayresim.video-container:hover img {
    transform: scale(1.04);
}

/* Detay sayfasındaki video overlay ayarları */
.detayresim .video-overlay {
    animation: none !important;
}

.detayresim .video-overlay a {
    width: 70px;
    height: 70px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(43, 182, 115, 0.4);
}

.detayresim .video-overlay a::before {
    background-color: var(--color-secondary);
    opacity: 0.15;
}

.detayresim .video-overlay a i {
    color: #fff;
    margin-left: 2px;
}

.detayresim .video-overlay a:hover {
    background: var(--color-primary);
    box-shadow: 0 8px 25px rgba(35, 31, 32, 0.4);
    transform: scale(1.1);
}

.detayresim .video-overlay a:hover i {
    color: #fff;
}

/* =====================
   Floating Contact Buttons (WhatsApp & Phone)
   ===================== */
.swhatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none !important;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: contactPulse 2s infinite;
}

.swhatsapp:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.stelefon {
    position: fixed;
    bottom: 95px; /* Placed exactly 65px above WhatsApp (50px height + 15px spacing) */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e74c3c; /* Red color */
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none !important;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: phonePulse 2.4s infinite;
    animation-delay: 0.6s;
}

.stelefon:hover {
    transform: scale(1.1);
    background-color: #c0392b;
}

@keyframes contactPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 10px rgba(37, 211, 102, 0);
    }
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5), 0 4px 10px rgba(231, 76, 60, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(231, 76, 60, 0), 0 4px 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0), 0 4px 10px rgba(231, 76, 60, 0);
    }
}

@media (max-width: 768px) {
    .swhatsapp, .stelefon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        right: 20px;
    }
    .swhatsapp {
        bottom: 20px;
    }
    .stelefon {
        bottom: 74px; /* Placed exactly 54px above WhatsApp (44px height + 10px spacing) */
    }
}

/* ==========================================================================
   Partners Section (Çözüm Ortaklarımız)
   ========================================================================== */
.partners-section {
    padding: 40px 0;
    background-color: rgba(43, 182, 115, 0.06);
    border: none;
}

.partners-section .section-title {
    margin-bottom: 20px;
}

.partners-section .section-title span {
    display: inline-block;
    color: var(--color-primary) !important;
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.partners-section .section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.partners-carousel .owl-stage-outer,
.partners-carousel .owl-stage,
.partners-carousel .owl-item,
.partners-carousel .partner-item {
    background: transparent !important;
}

.partners-carousel .partner-item {
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 2;
    width: 100%;
}

.partners-carousel .partner-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(120%) brightness(102%);
    opacity: 0.7;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.partners-carousel .partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: none;
}