/* ==========================================================================
   Selcan Güzellik Merkezi - Core Styles
   ========================================================================== */

:root {
    /* Color Palette */
    --cream: #FAF7F2;
    --warm-white: #F5F0E8;
    --blush: #E8C4B0;
    --rose: #C4927A;
    --accent: #A67C6D;
    --dark: #3D2B1F;
    --text: #5C4033;
    --text-light: #9E7E72;

    --bg-color: var(--cream);
    --surface-color: #FFFFFF;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-py: 100px;
    --container-px: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(92, 64, 51, 0.05);
    --shadow-md: 0 8px 24px rgba(92, 64, 51, 0.08);
    --shadow-lg: 0 12px 32px rgba(92, 64, 51, 0.12);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 500;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.container-fluid {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 8px;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

/* WhatsApp Button styling (used in header & sticky) */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-buttons.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--accent);
    color: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
    transition: var(--transition-normal);
    padding: 20px 0;
    box-shadow: none;
}

.site-header.scrolled {
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.brand-logo {
    max-height: 80px;
    transition: var(--transition-normal);
}

.site-header.scrolled .brand-logo {
    max-height: 60px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
}

.site-nav {
    display: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-randevu {
    background-color: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-randevu:hover {
    background-color: var(--dark);
    color: #fff;
}

#btn-randevu-header {
    display: none;
}

.hamburger-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    left: 0;
    transition: var(--transition-normal);
}

.hamburger-btn span:nth-child(1) {
    top: 0;
}

.hamburger-btn span:nth-child(2) {
    top: 9px;
}

.hamburger-btn span:nth-child(3) {
    top: 18px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 999;
    transition: transform var(--transition-slow);
    display: flex;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    padding-top: 60px;
    justify-content: center;
    transform: translateX(100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Menü açıkken arka plan karartma — tıklamayı engeller */
body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    cursor: pointer;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    height: calc(100vh - 130px);
    margin-top: 130px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250, 247, 242, 0.4), rgba(250, 247, 242, 0.9));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.mobile-br {
    display: none;
}

@media (max-width: 767px) {
    .mobile-br {
        display: block;
        height: 0;
        margin: 0;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: stretch;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    /* Minimum height for mobile */
}

@media (min-width: 768px) {
    .about-img-wrapper {
        min-height: 0;
    }
}

.about-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.stat-item {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--accent);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* ==========================================================================
   Services Section — Swiper Card Layout
   ========================================================================== */
.services-section {
    background-color: var(--warm-white);
    overflow: visible;
}

.services-swiper-wrapper {
    position: relative;
    padding-bottom: 60px;
    /* Kartların her iki taraftan da taşması için overflow: visible */
    overflow: visible;
    margin-left: calc(var(--container-px) * -1);
    margin-right: calc(var(--container-px) * -1);
}

.services-swiper .swiper-slide {
    height: auto;
    /* Mobilde kart genişliği - peek için */
    width: 85%;
}

@media (min-width: 768px) {
    .services-swiper .swiper-slide {
        width: auto;
    }
}

.services-swiper {
    padding: 20px 0 !important;
    overflow: visible !important;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    background: transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 64, 51, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(166, 124, 109, 0.85);
    /* Accent color with opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.service-card:hover .service-overlay h3 {
    transform: translateY(0);
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.service-card:hover .service-overlay p {
    transform: translateY(0);
}

.service-overlay .btn-sm {
    background: #fff;
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.service-card:hover .service-overlay .btn-sm {
    transform: translateY(0);
}

.service-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.service-content {
    display: none;
    /* Hidden because we use overlay */
}

.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    letter-spacing: 0.3px;
}

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

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

/* Swiper nav custom */
.services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.srv-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1.5px solid var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--accent);
    font-size: 1rem;
}

.srv-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.srv-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.srv-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--blush);
    opacity: 1;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.srv-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 24px;
}

/* (Removed duplicate sticky-buttons) */

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background-color: var(--warm-white);
}

.services-section {
    padding-bottom: 20px;
}

.before-after-section {
    background-color: var(--cream);
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ba-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#hakkimizda {
    background-color: var(--warm-white);
}

.features-section {
    padding: 40px 0;
    background-color: var(--cream);
}

#iletisim {
    background-color: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(166, 124, 109, 0.15);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(166, 124, 109, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 8px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
    color: var(--accent);
    font-size: 0.85rem;
}

.faq-item.open .faq-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 8px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* Service Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 43, 31, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-normal);
    opacity: 0;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

.modal-body {
    display: flex;
    flex-direction: row;
    height: 100%;
    max-height: 85vh;
}

.modal-header-img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.modal-text {
    width: 50%;
    padding: 30px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-header-img {
        width: 100%;
        height: 250px;
    }

    .modal-text {
        width: 100%;
    }
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-desc {
    color: var(--text);
    margin-bottom: 20px;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.modal-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* ==========================================================================
   Before / After Section
   ========================================================================== */
.before-after-section {
    overflow: visible;
}

.ba-slider {
    padding-bottom: 50px;
}

.ba-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background-color: #fff;
}

.ba-images.single-image {
    grid-template-columns: 1fr;
}

.ba-img {
    position: relative;
    aspect-ratio: 1 / 1;
}

.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ba-content {
    padding: 20px;
    text-align: center;
}

.ba-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.ba-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
}

/* ==========================================================================
   Features Section (Neden Biz)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: var(--blush);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cream);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0dcd5;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #faf9f7;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #fff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--dark);
    color: #fff;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i {
    margin-top: 5px;
}

.footer-links a i {
    margin-top: 0;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

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

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 767px) {
    .site-header {
        padding: 15px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }

    .site-header.scrolled .brand-logo {
        max-height: 52px;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
    }

    /* Mobil: logo ortada, hamburger sağda — 3 sütunlu grid */
    .header-inner {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
    }

    .site-brand {
        grid-column: 2;
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .brand-logo {
        max-height: 62px;
        width: auto;
        object-fit: contain;
    }

    .brand-text {
        font-size: 1.2rem;
        text-align: center;
    }

    #btn-randevu-header {
        display: none !important;
    }

    .header-actions {
        grid-column: 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hamburger-btn {
        display: block !important;
        flex-shrink: 0;
        z-index: 1002;
    }
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }

    .hamburger-btn {
        display: none;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .site-brand {
        display: flex;
        justify-content: center;
    }

    .header-actions {
        display: flex;
        justify-content: flex-end;
    }

    #btn-randevu-header {
        display: inline-flex;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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