:root {
    --primary-color: #a0978d;
    --secondary-color: #A0937D;
    --accent-color: #C4B49A;
    --dark-color: #4A4A4A;
    --light-bg: #F5F0EB;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.top-bar {
    background-color: #A0978D;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

    .top-bar a {
        color: #faf7f2;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: #faf7f2;
        }

    .top-bar i {
        color: #faf7f2;
        margin-right: 5px;
    }

.navbar-main {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937 !important;
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s;
}

    .dropdown-item:hover {
        background-color: var(--light-bg);
        color: var(--primary-color);
    }

/* Randevu Al Butonu - Düzeltilmiş */
.randevu-dropdown .btn-randevu {
    background-color: #a0978d;
    color: var(--white) !important;
    border-radius: 25px;
    padding: 8px 25px !important;
    font-size: 13px;
    border: 2px solid #a0978d;
    transition: all 0.3s;
}

    .randevu-dropdown .btn-randevu:hover,
    .randevu-dropdown .btn-randevu:focus,
    .randevu-dropdown .btn-randevu:active,
    .randevu-dropdown.show .btn-randevu {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
        border-color: var(--primary-color) !important;
        box-shadow: none !important;
    }

.randevu-dropdown .dropdown-menu {
    min-width: 200px;
    margin-top: 10px !important;
}

.randevu-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Mega Menu */
.mega-menu {
    position: static !important;
}

    .mega-menu .dropdown-toggle::after {
        display: inline-block;
    }

.mega-menu-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    padding: 30px 0;
    margin-top: 0 !important;
    background: var(--white);
}

.mega-col {
    margin-bottom: 15px;
}

.mega-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-bg);
}

.mega-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

    .mega-item:last-child {
        border-bottom: none;
    }

    .mega-item:hover {
        color: var(--primary-color);
        padding-left: 8px;
    }

    .mega-item i {
        color: var(--primary-color);
        font-size: 13px;
    }

@media (max-width: 991px) {
    .mega-menu-dropdown {
        padding: 15px;
    }

    .mega-title {
        font-size: 12px;
    }

    .mega-item {
        font-size: 13px;
        padding: 6px 0;
    }
}

.randevu-dropdown .dropdown-item i {
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, #F5F0EB 0%, #E8E0D5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-content h1 span {
        color: var(--primary-color);
    }

.hero-content p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-incele {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

    .btn-incele:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(139, 125, 107, 0.3);
    }

.hero-image {
    position: relative;
}

    .hero-image img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        max-height: 500px;
        object-fit: cover;
        width: 100%;
    }

.logo-section {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.logo-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

    .logo-item:hover {
        opacity: 1;
    }

    .logo-item h4 {
        font-family: 'Playfair Display', serif;
        color: var(--primary-color);
        font-size: 20px;
    }

    .logo-item p {
        font-size: 14px;
        color: var(--secondary-color);
        margin: 0;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        color: var(--dark-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
        font-weight: bold;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

.uzmanlik-section {
    padding: 80px 0;
    background-color: var(--white);
}

.uzmanlik-card {
    background-color: #4a454b;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    height: 100%;
}

    .uzmanlik-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .uzmanlik-card .card-img {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

        .uzmanlik-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

    .uzmanlik-card:hover .card-img img {
        transform: scale(1.1);
    }

    .uzmanlik-card .card-body {
        padding: 25px;
        text-align: center;
    }

    .uzmanlik-card h5 {
        font-size: 19px;
        color: #faf7f2;
        margin-bottom: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.btn-devam {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-devam:hover {
        background-color: var(--secondary-color);
        color: var(--white);
    }

.blog-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .blog-card .card-img {
        height: 200px;
        overflow: hidden;
    }

        .blog-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

    .blog-card:hover .card-img img {
        transform: scale(1.1);
    }

    .blog-card .card-body {
        padding: 25px;
        text-align: center;
    }

    .blog-card h5 {
        font-size: 16px;
        color: var(--dark-color);
        margin-bottom: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-card .blog-meta {
        font-size: 12px;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

.galeri-section {
    padding: 80px 0;
    background-color: var(--white);
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    display: block;
}

    .galeri-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .galeri-item:hover img {
        transform: scale(1.1);
    }

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 125, 107, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay i {
    color: var(--white);
    font-size: 30px;
}

.yorumlar-section {
    padding: 80px 0;
    background-color: #a0978d;
}

.yorum-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
}

    .yorum-card .stars {
        color: #FFD700;
        margin-bottom: 15px;
    }

    .yorum-card p {
        font-style: italic;
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    .yorum-card h6 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 0;
    }

    .yorum-card .yorum-tarih {
        font-size: 12px;
        color: #aaa;
        margin-top: 5px;
    }

.iletisim-section {
    padding: 80px 0;
    background-color: var(--white);
}

.iletisim-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

    .iletisim-info h4 {
        color: #4a454b;
        margin-bottom: 25px;
        font-size: 20px;
    }

    .iletisim-info p {
        color: #4a454b;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .iletisim-info i {
        color: #4a454b;
        margin-right: 10px;
        width: 20px;
    }

.btn-randevu-online {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

    .btn-randevu-online:hover {
        background-color: var(--secondary-color);
        color: var(--white);
    }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

    .map-container iframe {
        width: 100%;
        height: 200px;
        border: none;
    }

.footer-main {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

    .footer-main h5 {
        color: var(--accent-color);
        margin-bottom: 25px;
        font-size: 16px;
    }

    .footer-main ul {
        list-style: none;
        padding: 0;
    }

        .footer-main ul li {
            margin-bottom: 12px;
        }

            .footer-main ul li a {
                color: #aaa;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s;
            }

                .footer-main ul li a:hover {
                    color: var(--accent-color);
                }

    .footer-main .social-links a {
        color: var(--white);
        margin-right: 15px;
        font-size: 18px;
        transition: color 0.3s;
    }

        .footer-main .social-links a:hover {
            color: var(--accent-color);
        }

.contact-form-footer input,
.contact-form-footer textarea {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    margin-bottom: 15px;
}

    .contact-form-footer input::placeholder,
    .contact-form-footer textarea::placeholder {
        color: #aaa;
    }

    .contact-form-footer input:focus,
    .contact-form-footer textarea:focus {
        background-color: rgba(255,255,255,0.15);
        border-color: var(--accent-color);
        color: var(--white);
        box-shadow: none;
    }

.btn-gonder {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

    .btn-gonder:hover {
        background-color: var(--secondary-color);
    }

.footer-bottom {
    background-color: #3a3a3a;
    padding: 20px 0;
    text-align: center;
    color: #aaa;
    font-size: 13px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .galeri-item img {
        height: 200px;
    }
}



.page-header {
    background: linear-gradient(135deg, #F5F0EB 0%, #E8E0D5 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}



    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 42px;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .page-header .breadcrumb {
        background: none;
        padding: 0;
        margin: 0;
    }

    .page-header .breadcrumb-item a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .page-header .breadcrumb-item.active {
        color: var(--secondary-color);
    }