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

/* ==========================================================================
   Root Variables
   ========================================================================== */
:root {
    --primary-color: #aa7b39;
    --secondary-color: #000000;

    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --text-color: #333333;
    --bg-color: #ffffff;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    background-color: var(--bg-color);
    font-family: var(--font-primary);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #8c642e;
    /* Darker shade of primary color */
    border-color: #8c642e;
    color: #ffffff;
}

.btn-custom-outline {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    color: #000;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   Return to Top Button
   ========================================================================== */
#return-to-top {
    background-color: var(--primary-color);
    bottom: 50px;
    position: fixed;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

#return-to-top:hover {
    background-color: var(--secondary-color);
}

#return-to-top i {
    color: #ffffff;
}

#return-to-top:hover i {
    color: var(--primary-color);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.top-bar {
    font-size: 13px;
    background-color: var(--secondary-color) !important;
}

.top-contact {
    font-weight: 300;
}

.top-contact i {
    color: var(--primary-color) !important;
}

.header-area .navbar-brand img {
    width: 100px;
    transition: all 0.3s ease;
}

/* Overlapping Logo for Desktop */
@media (min-width: 1200px) {
    .header-area .navbar-brand {
        position: absolute;
        top: 0;
        left: 3rem;
        z-index: 1035;
        /* Below Bootstrap offcanvas backdrop (1040) */
        padding: 15px 20px 25px 20px;
        background-color: #ffffff;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .header-area .navbar-brand img {
        width: 115px;
        /* Increased size for desktop */
    }
}

.header-area .navbar-nav {
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (min-width: 1200px) {
    .header-area .navbar-nav {
        margin-left: 180px !important;
        /* Prevents menu items from sliding under the absolute logo */
        margin-right: auto !important;
        /* Pushes the right side buttons to the edge */
        padding-left: 0;
    }
}

.header-area .nav-link {
    transition: color 0.3s ease;
    font-family: 'Jost', sans-serif !important;
}

.header-area .nav-link:hover,
.header-area .nav-link.active {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.header-area .btn-outline-dark {
    font-size: 14px;
    letter-spacing: 1px;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

.header-area .btn-outline-custom {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-custom:hover {
    background-color: #b5952f;
    color: #fff;
    border-color: #b5952f;
}

.header-area .mdi-magnify {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.header-area .mdi-magnify:hover {
    color: var(--primary-color);
}

/* Utility / Page Banner */
@media screen and (min-width: 1152px) {
    .page-banner-main {
        padding: 200px 0 80px 0 !important;
    }
}

/* ==========================================================================
   Hero Slider (Swiper) Animations & Styles
   ========================================================================== */
.hero-slider-wrapper {
    background-color: var(--secondary-color);
}

.hero-slider {
    height: 700px;
    --swiper-theme-color: var(--primary-color);
    --swiper-pagination-color: var(--primary-color);
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 500px;
    }
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Ken Burns Effect Animations */
@keyframes kenBurnsLeft {
    0% {
        transform: scale(1) translate(0, 0);
    }

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

@keyframes kenBurnsRight {
    0% {
        transform: scale(1) translate(0, 0);
    }

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

.swiper-slide-active .ken-burns-left {
    animation: kenBurnsLeft 20s ease-out forwards;
}

.swiper-slide-active .ken-burns-right {
    animation: kenBurnsRight 20s ease-out forwards;
}

/* Text Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.5s;
}

.delay-3 {
    transition-delay: 0.7s;
}

.delay-4 {
    transition-delay: 0.9s;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    width: 24px !important;
    height: 4px !important;
    border-radius: 4px !important;
    background: #ffffff;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    width: 36px !important;
    background: var(--primary-color) !important;
    opacity: 1 !important;
}

/* ==========================================================================
   Custom Hamburger Menu
   ========================================================================== */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.custom-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.custom-hamburger .bar {
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-hamburger .bar-1 {
    width: 100%;
}

.custom-hamburger .bar-2 {
    width: 65%;
    align-self: flex-end;
}

.custom-hamburger .bar-3 {
    width: 100%;
}

/* ==========================================================================
   Desktop Menu Hover Dropdown Styles
   ========================================================================== */
@media (min-width: 1200px) {
    .header-area .nav-link {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
        font-weight: 500;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDown 0.3s ease;
    }

    .navbar .dropdown-menu {
        display: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        margin-top: 0 !important;
        transform: none !important;
        border: none;
        border-top: 3px solid var(--primary-color) !important;
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 10px 0;
        min-width: 220px;
    }

    .navbar .dropdown-item {
        padding: 12px 25px;
        font-size: 13px;
        font-weight: 500;
        color: var(--secondary-color);
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .navbar .dropdown-item:hover {
        background-color: transparent;
        color: var(--primary-color);
        padding-left: 30px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ==========================================================================
   Mobile Offcanvas Menu Styles
   ========================================================================== */
@media (max-width: 1199.98px) {
    .custom-mobile-menu {
        padding: 0 !important;
    }

    .custom-mobile-menu .navbar-nav {
        width: 100%;
        margin-top: 10px;
    }

    .custom-mobile-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .custom-mobile-menu .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px !important;
        font-size: 14px;
        font-weight: 600;
        color: var(--secondary-color) !important;
        text-transform: uppercase;
        border: none !important;
    }

    .custom-mobile-menu .nav-link:hover,
    .custom-mobile-menu .nav-link.active {
        color: var(--primary-color) !important;
        background-color: #f8f9fa;
    }

    /* Add arrow for dropdowns */
    .custom-mobile-menu .dropdown-toggle::after {
        content: '\F0142';
        /* MDI chevron-right */
        font-family: "Material Design Icons";
        border: none;
        font-size: 18px;
        vertical-align: middle;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .custom-mobile-menu .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
    }

    .custom-mobile-menu .dropdown-menu {
        border: none;
        background-color: #ffffff;
        padding: 5px 0;
        margin: 0;
    }

    .custom-mobile-menu .dropdown-item {
        padding: 12px 40px;
        font-size: 13px;
        border-bottom: 1px solid #f5f5f5;
        color: var(--secondary-color);
        font-weight: 500;
    }

    .custom-mobile-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .custom-mobile-menu .dropdown-item:hover {
        color: var(--primary-color);
        background-color: transparent;
    }
}

/* ==========================================================================
   Desktop Side Info Offcanvas Styles
   ========================================================================== */
.desktop-hamburger-btn {
    background-color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.desktop-hamburger-btn:hover {
    background-color: #8c642e;
}

.desktop-hamburger .bar {
    background-color: #fff;
}

.desktop-side-info {
    background-color: #f6f6f6 !important;
    width: 400px !important;
    border-left: none;
}

.desktop-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.desktop-close-btn:hover {
    background-color: #8c642e;
}

.social-box {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-box:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.desktop-side-info .info-block p {
    color: #444444 !important;
}

/* ==========================================================================
   Search Offcanvas Styles
   ========================================================================== */
.search-offcanvas {
    background-color: #1a1a1a !important;
    height: 350px !important;
    z-index: 1060 !important;
}

.search-input-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.search-input-group:focus-within {
    border-bottom-color: var(--primary-color);
}

.search-input-group .form-control {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 300;
    padding: 15px 0;
    box-shadow: none !important;
}

.search-input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input-group .btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 24px;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.search-input-group .btn:hover {
    color: var(--primary-color) !important;
}

@media (min-width: 1200px) {
    .top-contact {
        letter-spacing: 0.5px;
    }
}

/* ==========================================================================
   Homepage UI Templates (Presentation)
   ========================================================================== */

/* Typography Helpers */
.font-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
}

/* Template 1: Classic Elegance */
.about-t1 .image-wrapper {
    position: relative;
    padding: 20px 0 0 20px;
}

.about-t1 .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.about-t1 .image-wrapper img {
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Template 2: Modern Minimalist */
.about-t2 .icon-box {
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.about-t2 .icon-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.about-t2 .icon-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Template 3: Luxury Masonry */
.about-t3 .masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.about-t3 .masonry-img-1 {
    grid-row: span 2;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-t3 .masonry-img-2,
.about-t3 .masonry-img-3 {
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Template 4: Cinematic Video */
.about-t4 .video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-t4 .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-t4 .video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.about-t4 .play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.about-t4 .video-wrapper:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
}

/* Salon Card Image Hover Effect */
.salon-item {
    overflow: hidden;
}

.salon-item .salon-img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.salon-item:hover .salon-img {
    transform: scale(1.05);
}

/* Salonlar Section Custom Classes */
.section-salonlar {
    background-color: #fbfafa;
}

.salon-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
}

.salon-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.salon-divider-lg {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.salon-divider-sm {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.salon-card-text {
    background-color: transparent;
}

.salon-card-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.salon-card-subtitle {
    color: var(--primary-color);
}

.salon-card-desc {
    font-family: 'Jost', sans-serif;
}

/* Custom Fade-Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Section Custom Classes */
.intro-img-wrapper {
    padding: 20px 0 0 20px;
}

.intro-img-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;
    height: 90%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.intro-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
}

.intro-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.intro-icon {
    color: var(--primary-color);
}

.intro-stat {
    color: var(--secondary-color);
}

.btn-outline-custom {
    letter-spacing: 1px;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

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

/* Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Premium Effects */
/*
.salon-item:hover .salon-card-title {
    border-bottom: 1px solid #333;
}*/

.salon-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.salon-item:hover .salon-img-overlay {
    opacity: 1;
}

.salon-img-overlay span {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.salon-item:hover .salon-img-overlay span {
    transform: translateY(0);
}

@keyframes floatFrame {
    0% {
        transform: translateY(0);
    }

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

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

.intro-img-frame {
    animation: floatFrame 6s ease-in-out infinite;
}

/* Dokunuşlar Section Custom Classes */
.section-dokunuslar {
    background-color: var(--secondary-color);
    position: relative;
    border-top: 2px solid var(--primary-color);
}

.dokunus-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    /* faint primary color */
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.dokunus-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.dokunus-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dokunus-card:hover .dokunus-icon {
    transform: scale(1.1) translateY(-5px);
}

.dokunus-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.dokunus-desc {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Jost', sans-serif;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Extended Animation Delays */
.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Hizmetler Slider Section */
.section-hizmetler {
    background-color: #fbfafa;
    overflow: hidden;
}

.hizmetler-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.btn-light-custom {
    background-color: #f0f4f8;
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hizmet-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 420px;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.hizmet-card:hover {
    transform: translateY(-8px);
}

.hizmet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hizmet-card:hover img {
    transform: scale(1.08);
}

.hizmet-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    pointer-events: none;
}

.hizmet-card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.hizmet-card:hover .hizmet-card-title {
    transform: translateY(-5px);
}

.hizmet-card-desc {
    opacity: 1;
    transform: translateY(40px);
    transition: all 0.4s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hizmet-card:hover .hizmet-card-desc {
    opacity: 1;
    transform: translateY(10px);
    transition-delay: 0.1s;
}

/* Hizmetler Listesi Kart Başlık Ayarı */
.hizmetler-list-card-title {
    transform: translateY(40px) !important;
}

.hizmet-card:hover .hizmetler-list-card-title {
    transform: translateY(10px) !important;
}

/* Anasayfa Kart Başlık Ayarı */
.home-hizmet-card-title {
    transform: translateY(0) !important;
}

.hizmet-card:hover .home-hizmet-card-title {
    transform: translateY(-5px) !important;
}

.hizmetler-slider {
    padding: 10px 0 20px 0;
    /* space for hover translate */
}

.hizmetler-slider .swiper-button-next,
.hizmetler-slider .swiper-button-prev {
    background-color: #fff;
    color: var(--secondary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: -22px;
}

.hizmetler-slider .swiper-button-next:after,
.hizmetler-slider .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.hizmetler-slider .swiper-scrollbar {
    background: rgba(0, 0, 0, 0.1);
    height: 4px;
    bottom: 0;
    position: relative;
    margin-top: 1rem;
}

.hizmetler-slider .swiper-scrollbar-drag {
    background: var(--secondary-color);
}

/* Unutulmaz Anlar (Galeri) Section */
.section-galeri {
    background-color: #fff;
    overflow: hidden;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 15px;
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.masonry-item:nth-child(1) {
    grid-row: span 2;
    grid-column: span 2;
}

.masonry-item:nth-child(2) {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item:nth-child(3) {
    grid-row: span 2;
    grid-column: span 1;
}

.masonry-item:nth-child(4) {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item:nth-child(5) {
    grid-row: span 2;
    grid-column: span 2;
}

.masonry-item:nth-child(6) {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item:nth-child(7) {
    grid-row: span 1;
    grid-column: span 1;
}

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

    .masonry-item:nth-child(n) {
        grid-row: span 1;
        grid-column: span 1;
    }

    .masonry-item:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }
}

.masonry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-img {
    transform: scale(1.08);
}

.masonry-icon {
    color: #fff;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry-item:hover .masonry-icon {
    transform: translateY(0);
}

/* Testimonial Slider */
.testimonial-slider {
    padding-bottom: 40px;
}

.testimonial-card {
    background: #fbfafa;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin: 10px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-card i.quote-icon {
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 0px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Blog (Düğün Rehberi) Section */
.section-blog {
    background-color: #fbfafa;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 250px;
}

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

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

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.blog-card-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-card-title:hover {
    color: var(--primary-color);
}

.blog-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    opacity: 0.8;
}

.blog-card-link:hover i {
    transform: translateX(5px);
}

/* Video CTA Section */
.section-video {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #b5952f;
}

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

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

/* CTA (Teklif Formu) Section */
.section-cta {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?q=80&w=1920&auto=format&fit=crop') center/cover fixed no-repeat;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    /* Dark romantic overlay */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-form-card .form-control,
.glass-form-card .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 6px;
    padding: 12px 15px;
}

.glass-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.glass-form-card .form-control:focus,
.glass-form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: #fff;
}

.glass-form-card .form-select option {
    background: #333;
    color: #fff;
}

/* Mega Footer */
.mega-footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding-top: 80px;
    border-top: 4px solid var(--primary-color);
}

.mega-footer .footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.mega-footer h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mega-footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

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

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
}

/* Kurumsal Metin Fontu */
.section-intro p {
    font-family: 'Jost', sans-serif !important;
    color: #333;
    font-size: 17px;
}

.section-salonlar p {
    font-family: 'Jost', sans-serif !important;
    font-size: 16px;
}

/* Fix for horizontal scroll on mobile */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.intro-img-wrapper {
    padding: 20px 20px 20px 20px !important;
}

.intro-img-frame-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 53%;
    height: 56%;
    border: 2px solid var(--primary-color);
    z-index: 1;
    animation: floatFrame 6s ease-in-out infinite;
    animation-delay: -3s;
}

/* Fix for horizontal scroll on mobile */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 992px) {
    .intro-text-col {
        padding-left: 5% !important;
        /* offset-lg-1 is 8.33%, 5% is smaller and elegant */
    }
}

/* Custom GLightbox Description Overlay */
.glightbox-clean .gslide-description {
    position: absolute !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 40px 20px 20px 20px !important;
    z-index: 5;
    text-align: center;
}

.glightbox-clean .gslide-title {
    color: #fff !important;
    margin-bottom: 0 !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.glightbox-clean .gdesc-inner {
    padding: 0 !important;
}

.glightbox-clean .ginner-container {
    position: relative !important;
}

.glightbox-clean .ginner-container {
    position: relative !important;
    display: block !important;
    margin: 0 auto;
    width: fit-content !important;
    max-width: 100%;
}

/* =======================================
   SUBPAGE & BREADCRUMB STANDARDS
======================================= */
.subpage-banner {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;

    color: #fff;
    margin-top: 0;
}

.subpage-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-breadcrumb-nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.custom-breadcrumb {
    font-size: 14px;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.custom-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    color: rgba(255, 255, 255, 0.4);
}

/* =======================================
   SIDEBAR & WIDGETS
======================================= */
.sidebar-widget {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.category-list li a {
    color: #444;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif !important;
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list li a i {
    color: #ccc;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-list li a:hover i,
.category-list li a.active i {
    color: var(--primary-color);
}

.category-list li a:hover .badge,
.category-list li a.active .badge {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.recent-post-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.recent-post-item img {
    transition: transform 0.4s ease;
}

.recent-post-item:hover img {
    transform: scale(1.1);
}

.recent-post-title {
    transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-title {
    color: var(--primary-color) !important;
}

/* =======================================
   BLOG CARD SUBPAGE
======================================= */
.subpage-blog-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.subpage-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.subpage-blog-card .blog-card-img-wrapper img {
    transition: transform 0.6s ease;
}

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

.subpage-blog-card:hover .blog-card-title {
    color: var(--primary-color) !important;
}

.btn-link-custom .mdi-arrow-right {
    transition: transform 0.3s ease;
}

.btn-link-custom:hover .mdi-arrow-right {
    transform: translateX(5px);
}

/* =======================================
   PAGINATION
======================================= */
.custom-pagination .page-link {
    color: #444;
    border: none;
    margin: 0 4px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.custom-pagination .page-item.active .page-link,
.custom-pagination .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-pagination .page-link i {
    font-size: 20px;
}

/* =======================================
   BLOG DETAIL PAGE
======================================= */
.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-detail-content h3,
.blog-detail-content h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.social-share-links a {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* =======================================
   FAQ / SSS PAGE ACCORDION
======================================= */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(1);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(345deg);
    /* Rough attempt to tint arrow, but standard arrow is fine too */
}


/* Slider Hover Effect: Diagonal Sweep In */
.btn-style503 {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transition: all 0.5s;
}

.btn-style503::before,
.btn-style503::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: skewX(45deg);
    width: 100%;
    background-color: #8c642e;
    /* Koyu tonda hover rengi */
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.btn-style503::before {
    right: -120%;
}

.btn-style503::after {
    left: -120%;
}

.btn-style503:hover::before,
.btn-style503:hover::after {
    width: 175%;
}

.btn-style503:hover {
    color: #fff !important;
    border-color: #8c642e;
}

/* Light Button Version */
.btn-style503-light {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #fff;
    background-color: #fff !important;
    color: var(--primary-color) !important;
    transition: all 0.5s;
}

.btn-style503-light::before,
.btn-style503-light::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: skewX(45deg);
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.btn-style503-light::before {
    right: -120%;
}

.btn-style503-light::after {
    left: -120%;
}

.btn-style503-light:hover::before,
.btn-style503-light:hover::after {
    width: 175%;
}

.btn-style503-light:hover {
    color: #fff !important;
    border-color: var(--primary-color);
}


/* Outline Button Version for Header */
.btn-style503-outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--primary-color);
    background-color: transparent !important;
    color: var(--primary-color) !important;
    transition: all 0.5s;
}

.btn-style503-outline::before,
.btn-style503-outline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: skewX(45deg);
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.btn-style503-outline::before {
    right: -120%;
}

.btn-style503-outline::after {
    left: -120%;
}

.btn-style503-outline:hover::before,
.btn-style503-outline:hover::after {
    width: 175%;
}

.btn-style503-outline:hover {
    color: #fff !important;
    border-color: var(--primary-color);
}

/* Header TEKLİF AL Butonu - siyah varsayılan */
.header-area .btn-style503-outline {
    border-color: #000;
    color: #000 !important;
    font-family: 'Jost', sans-serif !important;
}

.header-area .btn-style503-outline:hover {
    color: #fff !important;
    border-color: var(--primary-color);
}

/* Salonlar - Devamını Oku Butonu (diagonal hover) */
.btn-custom-outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0 !important;
    background-color: transparent !important;
    color: #333 !important;
    transition: all 0.5s;
    border-top: 2px solid transparent;
}

.btn-custom-outline::before,
.btn-custom-outline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: skewX(45deg);
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.btn-custom-outline::before {
    right: -120%;
}

.btn-custom-outline::after {
    left: -120%;
}

.btn-custom-outline:hover::before,
.btn-custom-outline:hover::after {
    width: 175%;
}

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

/* =======================================
   CONTACT PAGE STYLES
======================================= */
.contact-clean-input {
    border: none;
    border-bottom: 1px solid #EBEBEB;
    border-radius: 0;
    padding: 12px 0;
    background-color: transparent;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
    font-size: 14px;
}

.contact-clean-input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: var(--primary-color);
}

.contact-info-list i {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
}

.contact-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #EBEBEB;
    color: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.contact-info-list,
.contact-clean-input,
.contact-form-labels,
.section-iletisim p,
#contactForm button[type="submit"] {
    font-family: 'Jost', sans-serif !important;
}

.contact-page-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 28px;
}

.contact-page-desc {
    line-height: 1.8;
    font-size: 16px;
}

.contact-form-labels {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 2px !important;
}

/* KVKK Checkbox Label */
.kvkk-label,
.kvkk-label a {
    font-family: 'Jost', sans-serif !important;
}

/* Cookie Banner Customizations */
.cookie-title {
    font-size: 16px !important;
}

.cookie-desc {
    font-size: 13px !important;
}

.cookie-link {
    color: #333 !important;
    text-decoration: underline !important;
    font-size: 14px !important;
}

/* Salon Card Styles */
.salon-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.salon-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    /* 16:10 Aspect Ratio roughly */
    overflow: hidden;
}

.salon-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.salon-card:hover .salon-card-img {
    transform: scale(1.08);
}

.salon-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.salon-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.salon-card:hover .salon-card-title {
    color: var(--primary-color, #d4af37);
}

.salon-card-summary {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.salon-card-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color, #d4af37);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: center;
}

.salon-card-btn:hover {
    background-color: #2c3e50;
    color: #fff;
    transform: translateX(5px);
}

/* Salon Detay Sayfası - Typography & Gallery */
.salon-icerik-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.icerik-html h1,
.icerik-html h2,
.icerik-html h3,
.icerik-html h4 {
    font-family: var(--font-heading);
    color: #111;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.icerik-html p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.icerik-html ul,
.icerik-html ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.icerik-html li {
    margin-bottom: 0.5rem;
}

.icerik-html img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

/* Galeri Animasyonları */
.galeri-item {
    cursor: zoom-in;
    transition: all 0.4s ease;
}

.galeri-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.galeri-item img {
    transition: transform 0.6s ease;
}

.galeri-item:hover img {
    transform: scale(1.08);
}

.galeri-item .galeri-overlay {
    backdrop-filter: blur(2px);
}

.galeri-item:hover .galeri-overlay {
    opacity: 1 !important;
}

.galeri-item:hover .galeri-overlay i {
    transform: scale(1) !important;
}

/* İkiye Bölünmüş Şablon (Split Layout) */
.salon-split-section {
    background-color: #fff;
}

.salon-collage-wrapper {
    position: sticky;
    top: 100px;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 15px;
}

.collage-item img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.collage-small-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.collage-small-bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.salon-split-header {
    text-align: left;
}

.salon-split-subtitle {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color, #d4af37);
    margin-bottom: 0.5rem;
}

.salon-split-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #111;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.salon-split-divider {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 2rem;
}

.salon-split-divider .line-lg {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color, #d4af37);
}

.salon-split-divider .line-sm {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color, #d4af37);
}

.salon-split-ozet {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
    font-family: 'Jost', sans-serif !important;
}

.btn-split-cta {
    border-radius: 50px;
    letter-spacing: 1px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.icerik-html {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.icerik-html p {
    font-family: 'Jost', sans-serif !important;
    font-size: 17px;
}

.icerik-html h1,
.icerik-html h2,
.icerik-html h3 {
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.icerik-html img {
    border-radius: 12px;
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
}

/* Mobil Menü Teklif Al Butonu */
.mobile-teklif-btn {
    font-size: 0.95rem !important;
    padding: 10px 20px !important;
    letter-spacing: 1px;
}

/* =======================================
   KURUMSAL SAYFALAR (HAKKIMIZDA VB.) 
======================================= */
.sayfa-detay-section {
    background-color: #fff;
}

.sayfa-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.sayfa-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.sayfa-image-frame img {
    min-height: 400px;
    object-fit: cover;
}

.sayfa-image-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(212, 175, 55, 0.08);
    /* Lüks altın rengi çok hafif tonaj */
    border: 2px solid rgba(212, 175, 55, 0.3);
    z-index: 1;
    border-radius: 15px;
    transform: translate(15px, 15px);
}

.sayfa-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #111;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.sayfa-divider {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sayfa-divider .line-lg {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color, #d4af37);
}

.sayfa-divider .line-sm {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color, #d4af37);
}

.sayfa-ozet {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 20px;
}

.btn-sayfa-cta {
    border-radius: 50px;
    letter-spacing: 1px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* Minimalist Luxury Features */
.sayfa-features-section {
    background-color: #fafafa;
}

.premium-feature-item {
    padding: 0 20px;
    position: relative;
}

@media (min-width: 992px) {
    .premium-feature-item:not(.border-0)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    }
}

.premium-icon {
    font-size: 45px;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
    transition: transform 0.4s ease;
}

.premium-feature-item:hover .premium-icon {
    transform: scale(1.1) translateY(-5px);
}

.premium-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #111;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.premium-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Minimalist Luxury Stats */
.premium-stat-item {
    position: relative;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .premium-stat-item:not(.border-0)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.06);
    }
}

.stat-number-wrapper {
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number-wrapper .stat-number {
    font-size: 4.5rem;
    font-weight: 700;
}

.stat-number-wrapper .stat-plus {
    font-size: 2.5rem;
    font-weight: 600;
    vertical-align: super;
}

.premium-stat-item .stat-text {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

/* İletişim Sayfası Açıklama Metni */
.iletisim-desc-text {
    font-size: 17px;
    font-family: 'Jost', sans-serif !important;
}

/* Hizmet Detay CSS */
.hizmet-detay-title {
    font-family: var(--font-heading);
    color: #111;
    font-size: 1.8rem;
    font-weight: 700;
}

.hizmet-detay-ozet {
    font-family: 'Jost', sans-serif !important;
    font-size: 17px;
	line-height: 1.8;
	color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.premium-detail-container {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-detail-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.premium-sidebar-box {
    border-left: 4px solid transparent !important;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.premium-sidebar-item:hover .premium-sidebar-box {
    background-color: #fff !important;
    border-left: 4px solid var(--primary-color) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.premium-sidebar-item.active .premium-sidebar-box {
    background-color: #fff !important;
    border-left: 4px solid var(--primary-color) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.premium-sidebar-item.active h6 {
    color: var(--primary-color) !important;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #fff;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

/* Anasayfa Galeri Section Başlıkları Mobil Uyumu */
@media (max-width: 991.98px) {
    .galeri-subtitle {
        text-align: center !important;
        font-size: 1.1rem !important;
    }

    .galeri-title {
        text-align: center !important;
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

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

/* Anasayfa Galeri - Tüm Galeri Butonu Mobil */
@media (max-width: 767.98px) {
    .galeri-btn {
        padding: 0.6rem 1.8rem !important;
        font-size: 0.85rem !important;
    }

    .section-video p {
        font-size: 15px !important;
    }

    .section-cta h2 {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }

    .section-cta p {
        font-size: 0.9rem !important;
    }

    .mega-footer {
        padding-top: 20px;
    }
}

