/* Root Variables */
:root {
    --primary: #874a9c;
    --primary-light: #b985c5;
    --secondary: #e9e9e9;
    --light: #ffffff;
    --dark: #333333;
    --gray: #4a4a4a;
    --border: #dee2e6;
    --shadow: rgba(135, 74, 156, 0.1);
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 72px; /* Navbar yüksekliği kadar padding */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Navbar Styles */
.navbar {
    background-color: var(--light);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
    height: 72px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobil Menü Arkaplan */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--light);
        padding: 1rem;
        margin: 0 -1rem;
        box-shadow: 0 4px 10px var(--shadow);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(var(--primary-rgb), 0.1);
    }

    .navbar-nav .nav-item.ms-lg-2 {
        margin: 1rem 0 0 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    position: relative;
    height: 600px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Owl Carousel Navigation */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.hero-slider .owl-nav button:hover {
    background: var(--primary) !important;
}

.hero-slider .owl-nav button i {
    font-size: 24px;
    color: var(--light);
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-slider .owl-dots .owl-dot.active span {
    background: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-slider .owl-nav {
        display: none;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23874a9c' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    padding: 80px 0;
}

.service-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(135, 74, 156, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(135, 74, 156, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    padding-top: 70%;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(135,74,156,0.03) 100%);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.service-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23874a9c' fill-opacity='0.08'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    padding: 80px 0;
}

.blog-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(135, 74, 156, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(135, 74, 156, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(135,74,156,0.03) 100%);
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-meta .date {
    color: var(--dark);
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-meta .read-more {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-meta .read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-meta .read-more:hover {
    color: var(--primary-light);
}

.blog-meta .read-more:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, 
        var(--primary) 0%,
        rgba(135, 74, 156, 0.9) 50%,
        rgba(135, 74, 156, 0.8) 100%
    );
    color: var(--light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
}

.footer-about {
    position: relative;
}

.footer h5 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    position: relative;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    margin-right: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
}

.footer-bottom hr {
    opacity: 0.1;
}

.footer-bottom p {
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--dark);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(135, 74, 156, 0.9), rgba(135, 74, 156, 0.9)), 
                url('uploads/massage-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.cta-content {
    padding: 4rem 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    color: var(--light);
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary);
}

/* Whatsapp Button Animation */
.whatsapp-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Navbar Scrolled */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .feature-card {
        padding: 1.5rem;
    }

    .cta-content {
        padding: 3rem 0;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

.text-muted {
    color: var(--dark) !important;
    opacity: 0.8;
}

/* CTA Section */
.cta-section .text-white-50 {
    color: var(--light) !important;
    opacity: 0.9;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-fixed-buttons .btn {
    width: 48%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-fixed-buttons .btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.mobile-fixed-buttons .btn-call {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border: none;
    color: var(--light);
    animation: pulse 2s infinite;
}

.mobile-fixed-buttons .btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    color: var(--light);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.mobile-fixed-buttons .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-fixed-buttons .btn:active {
    transform: translateY(0) scale(0.98);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(135, 74, 156, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(135, 74, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(135, 74, 156, 0);
    }
}

/* Adjust back to top button for mobile fixed buttons */
@media (max-width: 767.98px) {
    .mobile-fixed-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .back-to-top {
        bottom: 80px;
    }

    .back-to-top.active {
        bottom: 80px;
    }
}

/* Hizmetler Sayfası Stilleri */
.services-list .service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.services-list .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services-list .service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.services-list .service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-list .service-card:hover .service-image img {
    transform: scale(1.05);
}

.services-list .service-content {
    padding: 2rem;
}

.services-list .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.services-list .service-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-list .service-content .btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.services-list .service-content .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary) 0%, rgba(135, 74, 156, 0.9) 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .services-list .service-card {
        margin-bottom: 2rem;
    }
    
    .services-list .service-image img {
        height: 200px;
    }
    
    .services-list .service-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
}

/* Hizmet Detay Sayfası */
.service-detail .service-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-detail .service-image {
    position: relative;
    overflow: hidden;
}

.service-detail .service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-detail .service-text {
    padding: 2rem;
}

.service-detail .service-text h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail .service-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-detail .share-buttons {
    padding: 1.5rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 10px;
}

.service-detail .share-buttons h5 {
    color: var(--primary);
    font-weight: 600;
}

/* Yan Bar */
.service-sidebar .sidebar-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-sidebar .sidebar-title {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.service-sidebar .sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.service-sidebar .appointment-box {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 74, 156, 0.9) 100%);
    color: #fff;
}

.service-sidebar .appointment-box .sidebar-title {
    color: #fff;
}

.service-sidebar .appointment-box .sidebar-title::after {
    background: rgba(255,255,255,0.3);
}

.service-sidebar .appointment-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.service-sidebar .service-list .service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(var(--primary-rgb), 0.05);
}

.service-sidebar .service-list .service-item:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.service-sidebar .service-list .service-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
}

.service-sidebar .service-list .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-sidebar .service-list .service-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-sidebar .service-list .service-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-sidebar .service-list .service-item:hover .service-info h5 {
    color: #fff;
}

.service-sidebar .service-list .service-info i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-sidebar .service-list .service-item:hover .service-info i {
    color: #fff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .service-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-detail .service-text {
        padding: 1.5rem;
    }
    
    .service-detail .share-buttons {
        padding: 1rem;
    }
    
    .service-sidebar .sidebar-box {
        padding: 1.5rem;
    }
}

/* İletişim Sayfası */
.contact-info .info-box {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-info .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info .info-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info .info-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-info .info-box h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info .info-box p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-info .info-box a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info .info-box a:hover {
    color: var(--primary);
}

/* Harita */
.map-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* İletişim Formu */
.contact-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.contact-form .form-control {
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    padding: 0.8rem 1rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-form .form-floating label {
    color: var(--gray);
}

.contact-form .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Çalışma Saatleri */
.working-hours-box {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 74, 156, 0.9) 100%);
    border-radius: 15px;
    padding: 3rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.working-hours-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.working-hours-box h3 {
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.working-hours-box .hours-content {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 991px) {
    .map-container iframe {
        height: 350px;
    }
    
    .contact-form-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info .info-box {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .working-hours-box {
        padding: 2rem;
    }
}

/* Sayfa İçeriği Stilleri */
.content-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-image {
    margin: -2.5rem -2.5rem 2.5rem -2.5rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.rich-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.rich-text h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin: 1.8rem 0 1rem;
    font-weight: 600;
}

.rich-text h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.rich-text p {
    margin-bottom: 1.5rem;
}

.rich-text ul,
.rich-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.rich-text li {
    margin-bottom: 0.5rem;
}

.rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.rich-text blockquote {
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.rich-text blockquote p:last-child {
    margin-bottom: 0;
}

.share-section .card {
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.02) 100%);
}

.share-section .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.share-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .featured-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }
    
    .rich-text h2 {
        font-size: 1.75rem;
    }
    
    .rich-text h3 {
        font-size: 1.5rem;
    }
    
    .rich-text h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 1.25rem;
    }
    
    .featured-image {
        margin: -1.25rem -1.25rem 1.25rem -1.25rem;
    }
    
    .content-body {
        font-size: 1rem;
    }
    
    .share-section .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* 404 Sayfası */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.02) 100%);
}

.error-404 .error-content {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.error-404 .error-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(135, 74, 156, 0.8) 100%);
}

.error-404 .error-icon {
    width: 100px;
    height: 100px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.error-404 .error-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.error-404 h1 {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 74, 156, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-404 h2 {
    color: var(--primary);
    font-weight: 600;
}

.error-404 p {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .error-actions .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.error-404 .error-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .error-404 {
        min-height: 60vh;
    }
    
    .error-404 .error-content {
        padding: 3rem 1.5rem;
    }
    
    .error-404 h1 {
        font-size: 4rem;
    }
    
    .error-404 .error-actions .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Blog Listesi Sayfası */
.blog-list .page-wrapper {
    background: linear-gradient(135deg, #f8f9ff 0%, #edf1ff 50%, #e8ecff 100%);
    min-height: 100vh;
    position: relative;
}

.blog-list .blog-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.05) !important;
}

.blog-list .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08) !important;
}

.blog-list .card-img-wrapper {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.blog-list .card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-list .blog-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.blog-list .blog-card .card-body {
    padding: 1.5rem;
}

.blog-list .blog-card .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 50rem;
}

.blog-list .blog-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-list .blog-card .card-title a {
    background: linear-gradient(to right, var(--primary), var(--primary));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s;
}

.blog-list .blog-card .card-title a:hover {
    background-size: 100% 2px;
}

.blog-list .blog-card .card-text {
    color: var(--gray);
    line-height: 1.6;
}

.blog-list .meta-info {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-list .meta-info i {
    font-size: 1rem;
    color: var(--primary);
}

.blog-list .empty-state {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    box-shadow: inset 0 0 20px rgba(0,0,0,.03);
}

/* Hizmetler Listesi Sayfası */
.services-list .page-wrapper {
    background: linear-gradient(135deg, #f6f8ff 0%, #f1f4ff 100%);
    min-height: 100vh;
    position: relative;
}

.services-list .blog-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.05) !important;
    border-radius: 15px;
    overflow: hidden;
}

.services-list .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08) !important;
}

.services-list .card-img-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    background: #f8f9fa;
}

.services-list .card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-list .blog-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.services-list .blog-card .card-body {
    padding: 1.5rem;
}

.services-list .blog-card .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 50rem;
}

.services-list .blog-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.services-list .blog-card .card-title a {
    color: var(--dark);
    text-decoration: none;
    background: linear-gradient(to right, var(--primary), var(--primary));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s;
}

.services-list .blog-card .card-title a:hover {
    background-size: 100% 2px;
}

.services-list .blog-card .card-text {
    color: var(--gray);
    line-height: 1.6;
}

.services-list .cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 74, 156, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(135, 74, 156, 0.15);
}

@media (max-width: 768px) {
    .blog-list .blog-card .card-body,
    .services-list .blog-card .card-body {
        padding: 1.25rem;
    }
    
    .blog-list .blog-card .card-title,
    .services-list .blog-card .card-title {
        font-size: 1.1rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(135, 74, 156, 0.9) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding-top: calc(72px + 4rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    opacity: 0.1;
    z-index: 0;
}

.page-header .display-4 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 1);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
        padding-top: calc(72px + 3rem);
    }
    
    .page-header .display-4 {
        font-size: 2rem;
    }
}

.footer-about img {
    filter: brightness(0) invert(1);
    height: 50px;
    width: auto;
}

.footer-about p {
    color: #ffffff !important;
}

/* Blog Detay */
.blog-detail .blog-text p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Hizmet Detay */
.service-detail .service-text p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Sayfa İçeriği */
.page-content .content-body p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Blog Carousel Styles */
.blog-carousel {
    position: relative;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-carousel .carousel-item {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.blog-carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Image Styles */
.blog-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
}

/* Hide Owl Carousel Navigation */
.blog-carousel .owl-nav,
.blog-carousel .owl-dots {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-carousel .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .blog-carousel .carousel-dots {
        gap: 6px;
    }

    .blog-carousel .owl-dot {
        width: 8px;
        height: 8px;
    }
}

/* Pagination Styles */
.pagination {
    gap: 5px;
}

.pagination .page-link {
    border: none;
    color: var(--dark);
    background: var(--light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.pagination .page-link:hover {
    color: var(--primary);
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.15);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--light);
}

.pagination .page-item.disabled .page-link {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--gray);
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .pagination {
        gap: 3px;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
} 