/* RenkliKalem.com tarafından oluşturulu: 2026-05-25 12:24:31 */

/* --- Start of /css/style.css --- */
/* --- CSS Variables & Resets --- */
:root {
    --primary-color: #eb619e;
    /* Vibrant Pink/Red */
    --primary-dark: #d54f8b;
    --secondary-color: #81cbdb;
    /* Mint/Teal */
    --accent-color: #ffa502;
    /* Warm Yellow/Orange */
    --text-color: #2d3436;
    /* Dark Gray */
    --text-light: #636e72;
    /* Medium Gray */
    --bg-color: #fdfbf7;
    /* Off-white warm background */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* --- Layout Column System --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.row>[class*="col-"]>* {
    flex: 1;
}

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

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

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

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

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

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

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

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

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

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

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

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

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

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

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

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

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

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

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.sayfa {
    padding: 20px 0 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2,
.section-title h4 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2 span,
.section-title h4 span {
    color: var(--primary-color);
}

.section-title h2::after,
.section-title h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

/* --- Navigation / Header Top --- */
.header-top {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-top-social ul li {
    margin: 0;
    padding: 0;
}

.header-top-social a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.header-top-social a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-2px);
    display: inline-block;
}

.header-top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top-contact ul li {
    margin: 0;
    padding: 0;
}

.header-top-contact a,
.header-top-contact span {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.header-top-contact a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* --- Navigation / Header --- */
.header {
    background-color: var(--white);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 5px 0;
    position: relative;
}

.header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    animation: headerFadeIn 0.5s ease forwards;
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 238px !important;
    height: 80px !important;
    object-fit: cover !important;
    display: block !important;
}

.logo h1,
.logo .logo-title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

.nav-links li a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links li a:not(.btn):hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
}

.mobile-menu-header,
.mobile-menu-contact {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -20px;
    background-color: var(--white);
    width: 335px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    list-style: none;
    border-top: 4px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center;
    padding: 12px 20px 12px 15px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    transition: color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu li a::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 0.85rem;
    line-height: 1;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    color: var(--primary-color) !important;
    background-color: #fff0f0;
    padding-left: 28px !important;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 75vh;
    /* Slightly increased height */
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease-out;
    /* Smooth ongoing zoom effect */
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    color: var(--white);
    max-width: 1100px;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    /* Delay to sync with fade */
    text-align: center;
    margin: 0 auto;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.slider-nav {
    display: none;
    /* Gizle */
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

@keyframes dotLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.8);
    width: 35px;
}

.dot.active::after {
    animation: dotLoading 5s linear forwards;
}

/* --- Services --- */
.services {
    background-color: var(--white);
}

.services-grid {
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card p {
    flex-grow: 1;
    /* Pushes content down properly */
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Service Card Variants (1 to 4) */
.service-card-1 .icon-box {
    background-color: #fdebf3;
    color: #eb619e;
}

.service-card-1:hover {
    border-bottom-color: #eb619e;
}

.service-card-2 .icon-box {
    background-color: #eef8fa;
    color: #81cbdb;
}

.service-card-2:hover {
    border-bottom-color: #81cbdb;
}

.service-card-3 .icon-box {
    background-color: #fff4e6;
    color: #ffa502;
}

.service-card-3:hover {
    border-bottom-color: #ffa502;
}

.service-card-4 .icon-box {
    background-color: #f2e6ff;
    color: #9b59b6;
}

.service-card-4:hover {
    border-bottom-color: #9b59b6;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card .icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Features (Why Choose Us) --- */
.feature-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    flex: 1;
}

.feature-card .feature-title {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Feature Card Variants (1 to 6) */
.feature-card-1 {
    border-color: #ffe6e6;
    background-color: #fffafa;
}

.feature-card-1 .feature-icon {
    background-color: #ffe6e6;
}

.feature-card-1 .feature-icon img {
    filter: invert(53%) sepia(34%) saturate(3015%) hue-rotate(319deg) brightness(101%) contrast(105%);
}

.feature-card-2 {
    border-color: #e6f7ff;
    background-color: #f7fcff;
}

.feature-card-2 .feature-icon {
    background-color: #e6f7ff;
}

.feature-card-2 .feature-icon img {
    filter: invert(79%) sepia(35%) saturate(769%) hue-rotate(124deg) brightness(88%) contrast(85%);
}

.feature-card-3 {
    border-color: #fff4e6;
    background-color: #fffaf5;
}

.feature-card-3 .feature-icon {
    background-color: #fff4e6;
}

.feature-card-3 .feature-icon img {
    filter: invert(72%) sepia(61%) saturate(2360%) hue-rotate(352deg) brightness(103%) contrast(104%);
}

.feature-card-4 {
    border-color: #f2e6ff;
    background-color: #fcf7ff;
}

.feature-card-4 .feature-icon {
    background-color: #f2e6ff;
}

.feature-card-4 .feature-icon img {
    filter: invert(47%) sepia(19%) saturate(1637%) hue-rotate(242deg) brightness(88%) contrast(87%);
}

.feature-card-5 {
    border-color: #e6fff2;
    background-color: #f5fffa;
}

.feature-card-5 .feature-icon {
    background-color: #e6fff2;
}

.feature-card-5 .feature-icon img {
    filter: invert(71%) sepia(50%) saturate(5426%) hue-rotate(107deg) brightness(87%) contrast(90%);
}

.feature-card-6 {
    border-color: #fff0f5;
    background-color: #fffafc;
}

.feature-card-6 .feature-icon {
    background-color: #fff0f5;
}

.feature-card-6 .feature-icon img {
    filter: invert(43%) sepia(61%) saturate(2222%) hue-rotate(307deg) brightness(97%) contrast(98%);
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* --- About --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    border: 5px solid var(--bg-color);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins';
}

.experience-badge p {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.about-content {
    flex: 1;
}

.sub-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li::before {
    content: '\f058';
    /* fa-check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--white);
}

.cta-banner h2,
.cta-banner h5 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- Blog Section --- */
.blog-section {
    background-color: var(--bg-color);
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
}

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

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-color);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, #192026 0%, #0d1216 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding-top: 80px;
}

/* Footer Dekoratif Pati Ä°zleri */
footer::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.03);
    top: -80px;
    right: -80px;
    transform: rotate(35deg);
    z-index: 0;
    pointer-events: none;
}

footer::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    left: 20px;
    transform: rotate(-25deg);
    z-index: 0;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer .row {
    margin-bottom: 50px;
}

footer [class*="col-"] {
    margin-bottom: 30px;
}

/* col-* flex kÄ±sÄ±tlarÄ±nÄ± sÄ±fÄ±rla (ilk kolonun asagi itmesini onlemek icin) */
footer [class*="col-"]>* {
    flex: unset !important;
}

footer [class*="col-"]>span:first-of-type {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    width: 100%;
}

footer [class*="col-"]>span:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

footer p {
    color: #a4b0be;
    margin-bottom: 20px;
}

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

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

footer ul li a {
    color: #a4b0be;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links ul li {
    margin: 0;
    padding: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

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

/* --- Footer Social Links Ã–zel TasarÄ±m --- */
footer .social-links {
    margin-top: 25px;
}

footer .social-links ul {
    gap: 15px;
    /* Daha belirgin bir aralÄ±k */
}

footer .social-links a {
    width: 45px !important;
    height: 45px !important;
    background-color: var(--white) !important;
    color: #1e272e !important;
    border-radius: 12px !important;
    /* Daire yerine modern kavisli kare (Squircle) */
    font-size: 1.3rem !important;
    /* Ä°konlar daha bÃ¼yÃ¼k */
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer .social-links a:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color);
    transform: translateY(-6px) scale(1.05) rotate(5deg) !important;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
}

.flist ul li,
.filetisim ul li {
    margin-bottom: 12px;
}

.filetisim ul li {
    display: flex;
    gap: 15px;
    color: #a4b0be;
    align-items: flex-start;
}

.filetisim ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.flist ul li a,
.filetisim ul li a {
    color: #a4b0be;
}

.flist ul li a:hover,
.filetisim ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111417;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-bottom p {
    color: #a4b0be;
    font-size: 0.9rem;
    margin: 0;
}

.seo-footer-links a {
    color: #576574;
    font-size: 0.8rem;
    transition: var(--transition);
}

.seo-footer-links a:hover {
    color: var(--secondary-color);
}

/* --- Internal Pages (About, Blog Detail) --- */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 0 90px;
    text-align: center;
    color: var(--white);
    margin: 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

/* YaratÄ±cÄ± Dekoratif Pati Ä°zleri: */
.page-header::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.07);
    top: -80px;
    right: -80px;
    transform: rotate(35deg);
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.09);
    bottom: -40px;
    left: 20px;
    transform: rotate(-25deg);
    z-index: 1;
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

/* Glassmorphism Breadcrumb TasarÄ±mÄ± */
.page-header .breadcrumb {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 25px;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.page-header .breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb li:first-child a {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}

.page-header .breadcrumb li:first-child a::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.9em;
}

.page-header .breadcrumb li a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb li+li::before {
    content: '/';
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 1.1em;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-grid {
    margin-top: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 25px 20px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Detail */
.sayfadetay img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.sayfadetay h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.sayfadetay p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sayfadetay h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.sayfadetay blockquote {
    background: #fff0f0;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 0 15px 15px 0;
}

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: max-content;
    flex: none !important;
    align-self: flex-start;
}

.sidebar-widget,
.wiletisim,
.hizmetwidget,
.blogwidget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

/* Özel Blog Widget Tasarımı (Canlı, Soft Renkler) */
.blogwidget {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.12) 0%, rgba(255, 165, 2, 0.15) 100%);
    border: 1px dashed rgba(255, 107, 107, 0.3);
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3,
.wiletisim span,
.hizmetwidget span,
.blogwidget span {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

/* Simulate h3 defaults for span */
.wiletisim span,
.hizmetwidget span,
.blogwidget span {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    display: block;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
}

.sidebar-widget h3::after,
.wiletisim span::after,
.hizmetwidget span::after,
.blogwidget span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Wiletisim specific elements */
.wiletisim p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.wiletisim ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
}

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

.wiletisim ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.wiletisim ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

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

/* Hizmetler ve Blog Widget */
.hizmetwidget ul,
.blogwidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmetwidget ul li,
.blogwidget ul li {
    margin-bottom: 10px;
}

.hizmetwidget ul li:last-child,
.blogwidget ul li:last-child {
    margin-bottom: 0;
}

.hizmetwidget ul li a,
.blogwidget ul li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 12px 15px;
    background: rgba(255, 107, 107, 0.05);
    /* Tasarıma uygun soft arka plan */
    border-radius: 12px;
}

.hizmetwidget ul li a::before,
.blogwidget ul li a::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9em;
    transition: var(--transition);
}

.hizmetwidget ul li a:hover,
.blogwidget ul li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.12);
    /* primary color with slightly more opacity */
    transform: translateX(5px);
}

.blogwidget ul li a {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 107, 107, 0.05);
}

.blogwidget ul li a:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.recent-post-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-item h4 a {
    color: var(--text-color);
}

.recent-post-item h4 a:hover {
    color: var(--primary-color);
}

.recent-post-item span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background: var(--bg-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.tags a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .header-top-contact span {
        display: none;
        /* Hide location text on smaller screens */
    }

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

    .about-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .experience-badge {
        right: 20px;
    }


}

@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    /* MenÃ¼ iÃ§i Ã¶zel elemanlarÄ± gÃ¶rÃ¼nÃ¼r yap */
    .mobile-menu-header,
    .mobile-menu-contact {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        /* Ä°Ã§eriden paddingi sÄ±fÄ±rladÄ±k, elementlere daÄŸÄ±tacaÄŸÄ±z */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease-in-out;
        overflow-y: auto;
        z-index: 1001;
    }

    .mobile-menu-header {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 5px;
    }

    .mobile-menu-close {
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
        transition: var(--transition);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--bg-color);
    }

    .mobile-menu-close:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact) {
        padding: 0 20px;
        width: 100%;
        margin-bottom: 6px;
    }

    /* li.dropdown'un padding'i sadece ana a'ya uygulanÄ±r;
       dropdown-menu miras almasÄ±n diye li.dropdown'un padding'ini sÄ±fÄ±rla */
    .nav-links li.dropdown {
        padding: 0 !important;
    }

    /* Ana "Hizmetlerimiz" linki iÃ§in padding */
    .nav-links li.dropdown>a.dropdown-toggle {
        padding: 12px 20px !important;
        margin: 0 20px 0 20px;
        width: calc(100% - 40px) !important;
    }

    /* Mobil link tasarÄ±mÄ± (buton olmayÄ±p sadece yazÄ± olanlar iÃ§in) */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn) {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 12px 15px;
        background-color: var(--white);
        border-radius: 8px;
        border: none;
        box-shadow: none;
        transition: var(--transition);
        font-weight: 600;
        text-align: left;
    }

    /* EÄŸer linkin iÃ§inde bir dropdown oku (i) varsa onu en saÄŸa it */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn) i.dropdown-arrow {
        margin-left: auto !important;
    }

    /* MasaÃ¼stÃ¼ hover alt Ã§izgisini iptal et */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn)::after {
        display: none !important;
    }

    /* Hover veya aktif: sol kÄ±rmÄ±zÄ± ÅŸerit inset shadow ile (layout etkilenmez, kÄ±rpÄ±lmaz) */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn):hover,
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn).active {
        background-color: rgba(255, 107, 107, 0.06);
        box-shadow: inset 3px 0 0 var(--primary-color);
        color: var(--primary-color);
        padding-left: 18px;
    }

    /* Randevu al butonu mobilde tam ekran geniÅŸlikte gÃ¶rÃ¼nsÃ¼n */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact) .btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
        display: block;
        padding: 14px 20px;
    }

    .mobile-menu-contact {
        flex-direction: column;
        width: 100%;
        padding: 30px 0px;
        margin-top: auto;
        background-color: var(--bg-color);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        gap: 8px;
    }

    .mobile-menu-contact ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-contact ul li {
        margin: 0;
        padding: 0;
    }

    .mobile-menu-contact a,
    .mobile-menu-contact span,
    .mobile-menu-contact p {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-color);
        font-size: 0.95rem;
        font-weight: 600;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* .nav-links li a::after pseudo elementini kaldÄ±r */
    .mobile-menu-contact a::after,
    .mobile-menu-contact a:hover::after {
        display: none !important;
    }

    .mobile-menu-contact a:hover {
        color: var(--primary-color);
        background: none !important;
    }

    .mobile-menu-contact a i,
    .mobile-menu-contact span i,
    .mobile-menu-contact p i {
        color: var(--primary-color) !important;
    }

    .mobile-menu-contact .social-links {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .mobile-menu-contact .social-links ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-menu-contact .social-links ul li {
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        /* nav-links li width:100% override */
        flex-shrink: 0;
    }

    .mobile-menu-contact .social-links a {
        width: 40px !important;
        height: 40px !important;
        background-color: var(--white) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
    }

    .mobile-menu-contact .social-links a i {
        color: var(--text-color) !important;
        transition: color 0.3s ease !important;
    }

    .mobile-menu-contact .social-links a:hover {
        background-color: var(--primary-color) !important;
        transform: translateY(-4px) scale(1.05) !important;
        box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3) !important;
        border-color: var(--primary-color) !important;
    }

    .mobile-menu-contact .social-links a:hover i {
        color: var(--white) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        border-top: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 20px 0 24px !important;
        min-width: 100%;
        background-color: transparent !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out;
    }

    .nav-links .dropdown.open .dropdown-menu {
        max-height: 400px;
        /* AlabileceÄŸi maksimum yÃ¼kseklik (animasyon iÃ§in) */
        margin-top: 4px;
    }

    .nav-links .dropdown-menu li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        border: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    .nav-links .dropdown-menu li a {
        padding: 9px 12px !important;
        /* Daha kompakt */
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: var(--text-color) !important;
        border-left: 3px solid var(--primary-color) !important;
        border-radius: 0 8px 8px 0 !important;
        background-color: rgba(255, 107, 107, 0.04) !important;
        margin-bottom: 3px !important;
        display: flex !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        box-shadow: none !important;
        border-top: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .nav-links .dropdown-menu li a:hover {
        color: var(--primary-color) !important;
        background-color: rgba(255, 107, 107, 0.08) !important;
        padding-left: 20px !important;
    }

    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown.open .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

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

    .hero-slider {
        height: 80vh;
    }



    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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


}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-btn i {
    z-index: 2;
}

.floating-btn.whatsapp {
    background-color: #25d366;
    animation: whatsappPulse 1.2s infinite;
}

.floating-btn.whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.floating-btn.phone {
    background-color: var(--primary-color);
    animation: phonePulse 1.6s infinite 0.8s;
}

.floating-btn.phone:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.9);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.9);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* --- RWT Legal Bar & Credit --- */
.rwt-legal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

.rwt-legal-bar p.copyright {
    margin: 0;
    font-size: 0.95rem;
}

.rwt-legal-bar p.copyright a {
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition);
}

.rwt-legal-bar p.copyright a:hover {
    color: var(--primary-color);
}

.rwt-credit-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rwt-credit-group a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.rwt-credit-group a:first-child {
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.rwt-credit-group a:hover {
    color: var(--primary-color);
}

.rwt-footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rwt-footer-icon {
    height: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.rwt-footer-icon:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .rwt-legal-bar {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 25px 15px;
        gap: 15px;
    }
    
    .rwt-credit-group {
        justify-content: center;
    }
}

/* --- Leaflet Map Container Layout --- */
.map-wrapper {
    position: relative;
    width: 94%;
    margin: 0px 3% 3% 3%;
}

#map {
    width: 100%;
    margin: 0;
    min-height: 650px;
    border-radius: 15px;
    overflow: hidden;
}

.directions-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.directions-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.directions-btn i {
    font-size: 0.85rem;
}

.custom-marker-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 75px !important;
    height: 75px !important;
    position: relative;
}

.modern-pin {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin-bottom: 20px;
}

.modern-pin::after {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-marker-wrapper::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
}

/* --- Premium Form Styling --- */
.dynamic-form-container {
    width: 100%;
    margin-top: 30px;
}

.form-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.form-wrapper i {
    position: absolute;
    left: 18px;
    top: 26px; /* Centered in 52px height input */
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 3;
    pointer-events: none;
    transition: var(--transition);
}

.form-wrapper.field-textarea i {
    top: 26px !important;
    transform: translateY(-50%) !important;
}

/* Dikey Seperatör */
.form-wrapper::after {
    content: '';
    position: absolute;
    left: 46px;
    top: 26px;
    transform: translateY(-50%);
    width: 1px;
    height: 24px; /* Max 30px, dikey ortalanmış */
    background-color: rgba(0, 0, 0, 0.12);
    z-index: 3;
    pointer-events: none;
    transition: var(--transition);
}

.form-wrapper.field-textarea::after {
    top: 26px !important;
    transform: translateY(-50%) !important;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="tel"],
.form-wrapper input[type="email"],
.form-wrapper input[type="file"],
.form-wrapper input[type="date"],
.form-wrapper input[type="time"],
.form-wrapper select {
    width: 100%;
    height: 52px; /* Premium corporate height */
    margin: 0 !important;
    padding: 0 16px 0 60px; /* Precise 60px left padding for icon + separator space */
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px; /* Clean corporate border radius */
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23eb619e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
    cursor: pointer;
}

.form-wrapper input[type="file"] {
    line-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.form-wrapper textarea {
    width: 100%;
    min-height: 150px;
    margin: 0 !important;
    padding: 16px 16px 16px 60px; /* Textarea retains top padding */
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    resize: vertical;
    transition: var(--transition);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-wrapper input:focus,
.form-wrapper textarea:focus,
.form-wrapper select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(235, 97, 158, 0.08);
    background-color: #ffffff;
}

.form-wrapper input:focus ~ i,
.form-wrapper textarea:focus ~ i,
.form-wrapper select:focus ~ i {
    color: var(--primary-dark);
}

/* --- Modern Captcha & Submit Alignment Design --- */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px !important;
    height: 52px !important;
    width: 100%;
    box-sizing: border-box;
}

label.islem {
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    background-color: #f8fafc !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    user-select: none !important;
    white-space: nowrap !important;
    margin: 0 !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
    transition: var(--transition) !important;
}

input.sonuc,
input[name="SayiToplami"],
input[name="captcha_result"] {
    flex: 1 !important;
    height: 52px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    outline: none !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-align: center !important;
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    transition: var(--transition) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    margin: 0 !important;
    display: inline-block !important;
}

input.sonuc:focus,
input[name="SayiToplami"]:focus,
input[name="captcha_result"]:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(235, 97, 158, 0.08) !important;
    background-color: #ffffff !important;
}

.form-actions {
    margin-bottom: 20px !important;
    height: 52px !important;
    width: 100%;
    box-sizing: border-box;
}

input.buton,
input.gonder,
input[type="submit"].buton,
input[type="submit"].gonder,
button.buton {
    width: 100% !important;
    height: 52px !important;
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(235, 97, 158, 0.15) !important;
    transition: var(--transition) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

input.buton:hover,
input.gonder:hover,
input[type="submit"].buton:hover,
input[type="submit"].gonder:hover,
button.buton:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(235, 97, 158, 0.3) !important;
}

/* --- End of /css/style.css --- */

/* --- Start of /custom/iletisim.css --- */
.iletisim {
	position: relative;
	display: block;
	padding: 80px 0px;
}

.sube {
	width: 100%;
	display: block;
}

.iletisim .sube h2,
.iletisim h3 {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.8rem !important;
	font-weight: 700 !important;
	color: var(--text-color) !important;
	margin-bottom: 15px !important; /* Slightly reduced margin to accommodate description */
	position: relative;
}

.iletisim .sube p.sube-desc {
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	color: var(--text-light) !important;
	line-height: 1.6 !important;
	margin-bottom: 25px !important;
	display: block !important;
	cursor: default !important;
}

.iletisim .sube p.sube-desc:hover {
	color: var(--text-light) !important;
}

.iletisim .sube p {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	margin-bottom: 18px !important;
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	color: var(--text-color) !important;
	padding: 0 !important;
	transition: var(--transition) !important;
}

.iletisim .sube p i {
	position: static !important;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	background-color: rgba(235, 97, 158, 0.08) !important;
	color: var(--primary-color) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 1rem !important;
	transition: var(--transition) !important;
	flex-shrink: 0 !important;
	box-shadow: 0 2px 5px rgba(235, 97, 158, 0.05) !important;
}

.iletisim .sube p:hover {
	color: var(--primary-color) !important;
	cursor: pointer;
}

.iletisim .sube p:hover i {
	background-color: var(--primary-color) !important;
	color: #ffffff !important;
	transform: scale(1.1) rotate(5deg) !important;
	box-shadow: 0 4px 10px rgba(235, 97, 158, 0.2) !important;
}

/* Premium Toast Notification Stilleri */
@keyframes toastSlideIn {
	from {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes toastSlideOut {
	from {
		opacity: 1;
		transform: translateX(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}
}

@keyframes progressBar {
	from {
		width: 100%;
	}

	to {
		width: 0%;
	}
}

.premium-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	color: white;
	padding: 18px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 500;
	z-index: 99999;
	min-width: 320px;
	max-width: 420px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.2s ease;
	overflow: hidden;
}

.premium-toast:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-toast.hiding {
	animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
	font-size: 24px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.25);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.toast-content {
	flex: 1;
	line-height: 1.4;
}

.toast-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.4);
	animation: progressBar 4s linear;
}
/* --- End of /custom/iletisim.css --- */

/* --- Start of /custom/lightbox.css --- */
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important; 
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/* --- End of /custom/lightbox.css --- */
