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

:root {
    --primary-color: #0ABAB5;
    --primary-light: #B8E6E3;
    --primary-dark: #089A95;
    --secondary-color: #E8F5F3;
    --accent-color: #0ABAB5;
    --text-dark: #3A3A3A;
    --text-light: #6B6B6B;
    --bg-light: #F0F9F8;
    --bg-white: #FFFFFF;
    --bg-pink: #F0F9F8;
    --border-color: #D0E8E6;
    --shadow: 0 2px 8px rgba(10, 186, 181, 0.1);
    --shadow-lg: 0 8px 24px rgba(10, 186, 181, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(10, 186, 181, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(10, 186, 181, 0.15);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 249, 248, 0.95) 0%, rgba(232, 245, 243, 0.95) 100%);
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(10,186,181,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.call-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #9b1f0f, #ef6338);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.call-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}


/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* About Preview */
.about-preview {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.image-placeholder,
.image-placeholder-large,
.image-placeholder-medium,
.image-placeholder-small {
    width: 100%;
    background: var(--bg-pink);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}


.image-placeholder:hover,
.image-placeholder-large:hover,
.image-placeholder-medium:hover,
.image-placeholder-small:hover {
    transform: scale(1.02);
}
.nav-social a {
    display: flex;
    align-items: center;
}
.instagram-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;            /* sade */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: transform .2s ease;
}
@media (max-width: 768px) {
    .hover-description {
        display: none;
    }
}
/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* LINK WRAPPER */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* CARD */
.service-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

/* IMAGE */
.service-image {
    height: 220px;
    overflow: hidden;
}

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

/* CONTENT */
.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* LINK STYLE */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* HOVER DESCRIPTION */
.hover-description {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hover-description h3 {
    margin-bottom: 1rem;
}

.hover-description p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HOVER EFFECTS */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.service-card:hover .hover-description {
    opacity: 1;
    transform: translateY(0);
}


.instagram-btn svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #E1306C;              /* Instagram pembesi */
    stroke-width: 2;
}

.instagram-btn:hover {
    transform: scale(1.1);
}


.nav-social svg {
    width: 20px;
    height: 20px;
    fill: #E1306C;
    transition: transform .3s ease, fill .3s ease;
}

.nav-social a:hover svg {
    transform: scale(1.15);
    fill: #E1306C;
}


.image-placeholder {
    height: 400px;
}

.image-placeholder-large {
    height: 500px;
}

.image-placeholder-medium {
    height: 350px;
}

.image-placeholder-small {
    height: 250px;
}

/* Benefits Section */
.benefits {
    background: var(--bg-pink);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 186, 181, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefit Card Hover Description */
.benefit-card .hover-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    border-radius: 15px;
    text-align: center;
}

.benefit-card:hover .hover-description {
    opacity: 1;
    transform: scale(1);
}

.hover-description p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Info Cards Section */
.info-cards {
    background: var(--bg-white);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card-item {
    background: var(--bg-pink);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.info-card-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card-item p {
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: var(--bg-white);
}

/* Services Detail */
.services-detail {
    background: var(--bg-white);
    padding: 5rem 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

.service-detail-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-features,
.service-process {
    margin-bottom: 2rem;
}

.service-features h3,
.service-process h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-process p {
    line-height: 1.8;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-pink);
    position: relative;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* Service Card Hover Description */
.service-card .hover-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    text-align: center;
    z-index: 10;
}

.service-card:hover .hover-description {
    opacity: 1;
    transform: scale(1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Meridyen terapi sayfası: başlık altı boşluğu kontrol et */
.meridyen-intro {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .meridyen-intro {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .meridyen-intro + section.services-detail {
        padding-top: 0rem;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('görseller/main_img.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

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

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews-section {
    background: var(--bg-pink);
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.review-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-info .review-service {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.review-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* About Section */
.about-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

/* Hakkımızda: sol görsel yazıya göre biraz aşağı dursun */
.about-page .about-image-large {
    margin-top: 10rem;
}

@media (max-width: 968px) {
    .about-page .about-image-large {
        margin-top: 0;
    }
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text-large h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}
/* Varsayılan siyah liste işaretini TAMAMEN kaldır */
.about-text-large ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Safari / mobil için marker temizleme */
.about-text-large ul li::marker {
    content: "";
}

/* Yeşil tik */
.about-text-large ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.7rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text-large ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--primary-color);
    font-weight: bold;
}



.about-text-large p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    background: var(--bg-pink);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.mission-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.mission-card p {
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.step-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.step-item p {
    line-height: 1.7;
}

/* Meridian Info */
.meridian-info {
    background: var(--bg-pink);
}

.meridian-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.meridian-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.meridian-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.meridian-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.meridian-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Pricing Info */
.pricing-info {
    background: var(--bg-pink);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card p {
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-pink);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    display: block;
}

/* Map Section */
.map-section {
    background: var(--bg-pink);
    padding: 3rem 0;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--bg-pink);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* WhatsApp & Price Buttons */
.whatsapp-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.whatsapp-btn,
.price-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

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



.whatsapp-btn:hover,
.price-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn svg,
.price-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-btn span,
.price-btn span {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Logo in Navbar */
.logo {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .about-main,
    .service-detail-card,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main .about-image-large img {
        max-height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .steps-grid,
    .meridian-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Ana sayfa: 3936547 görseli mobilde kırpılmasın, yazılar tam görünsün */
    .about-preview-3936547 {
        height: auto !important;
        max-height: 75vh;
        object-fit: contain !important;
        background: var(--bg-pink);
    }
    
    .whatsapp-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn,
    .price-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg,
    .price-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* TAM GENİŞLİK KART */
.full-width-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    min-height: 320px;
}

/* Görseli büyüt */
.full-width-card .service-image {
    height: 100%;
}

.full-width-card .service-image img {
    height: 100%;
    object-fit: cover;
}

/* İçerik */
.full-width-card .subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 1rem;
}

/* Listeyi kart stiline uydur */
.full-width-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.full-width-card ul li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #555;
}

/* Hover uyumu */
.full-width-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* MOBİL */
@media (max-width: 768px) {
    .full-width-card {
        grid-template-columns: 1fr;
    }
    .info-card ul li::before {
        content: "✓";
   
    }
}

.full-width-text {
    display: block;
}

.full-width-text .service-detail-content {
    width: 100%;
    max-width: 100%;
}

.full-width-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.full-width-text .service-intro {
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
}
.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.info-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-content .btn {
        width: 100%;
        max-width: 320px;
        margin-bottom: 1rem; /* buton arası boşluk */
        
    }

    .cta-content .btn:last-child {
        margin-bottom: 0;
    }
}
/* Galeri video */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.gallery-item:hover video {
    transform: scale(1.05);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    /* Navbar (1000) üstünde kalsın ki modal tam ekran düzgün ortalansın */
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}
.modal-content {
    position: relative;
    width: 85%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.35s ease;
}
.modal-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Kapatma butonu */
.close {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 768px) {
    .modal-content {
        width: 94%;
        max-height: 85vh;
        margin-top: 0;
        border-radius: 12px;
    }

    .modal-content video {
        width: 100%;
        height: auto;
        max-height: 75vh;
        object-fit: contain;
        border-radius: 12px;
    }

    .close {
        position: fixed;
        top: 12px;
        right: 12px;
        font-size: 34px;
        z-index: 5000;
        background: rgba(0,0,0,0.6);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Customer Satisfaction Section */
.customer-satisfaction-section {
    background: var(--bg-pink);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.customer-satisfaction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.03) 0%, rgba(232, 245, 243, 0.05) 100%);
    z-index: 0;
}

.customer-satisfaction-section .container {
    position: relative;
    z-index: 1;
}

.satisfaction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.satisfaction-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    /* Memnuniyet videoları genelde dikey olduğu için portrait oran */
    aspect-ratio: 9 / 16;
}

.satisfaction-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.satisfaction-item .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.satisfaction-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.satisfaction-item:hover video {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.satisfaction-item:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.play-overlay svg {
    width: 80px;
    height: 80px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.satisfaction-item:hover .play-overlay svg {
    transform: scale(1);
}

/* Responsive for Customer Satisfaction */
@media (max-width: 968px) {
    .satisfaction-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .customer-satisfaction-section {
        padding: 3rem 0;
    }
    
    .satisfaction-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .satisfaction-item {
        border-radius: 15px;
    }
    
    .play-overlay svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .customer-satisfaction-section {
        padding: 2.5rem 0;
    }
    
    .satisfaction-grid {
        gap: 1.25rem;
    }
}





