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

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #66BB6A;
    --dark-color: #1B5E20;
    --light-color: #E8F5E8;
    --text-dark: #1B5E20;
    --text-light: #4E7C5E;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(76, 175, 80, 0.08);
    --shadow-md: 0 4px 12px rgba(76, 175, 80, 0.1);
    --shadow-lg: 0 8px 30px rgba(76, 175, 80, 0.12);
    --shadow-xl: 0 15px 50px rgba(76, 175, 80, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===== Header & Navigation ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.8rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar .container > * {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.85; }

/* Image logo styles */
.logo-img {
    height: 64px;
    width: auto;
    display: block;
    transform: scaleX(1.08); /* slightly wider look */
    transform-origin: left center;
}

/* Bring the menu closer to the logo */
.navbar .container { justify-content: flex-start; gap: 1rem; }
.nav-menu { margin-left: 10px; }

.footer-logo-wrapper { margin-bottom: 1.5rem; }
.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    background: transparent;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.2rem;
    white-space: nowrap;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.nav-link.active::after {
    width: 80%;
    background: var(--white);
}

.btn-randevu {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-randevu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-randevu:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
}

.btn-randevu:hover::before {
    left: 100%;
}

.btn-randevu i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-randevu:hover i {
    transform: rotate(15deg);
}

/* ===== Hero Slider Section ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 60px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: slideUp 0.8s ease;
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 3px solid var(--white);
}

.btn-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: var(--white);
    color: var(--primary-color);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* ===== Stats Section ===== */
.stats {
    padding: 5rem 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
}

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

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

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ===== Hakkımızda Section ===== */
.hakkimizda {
    background: var(--light-color);
}

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

.hakkimizda-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.hakkimizda-text h3:first-child {
    margin-top: 0;
}

.hakkimizda-text p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1rem;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.values-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.hakkimizda-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.about-photo:hover img {
    transform: scale(1.06);
}

.about-photo figcaption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ===== Hizmetler Section ===== */
.hizmetler {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ===== Programlar Section ===== */
.programlar {
    background: var(--light-color);
}

.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.program-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.program-card:hover::before {
    opacity: 1;
}

.program-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.program-card:hover .program-header::before {
    transform: rotate(45deg) translate(20px, 20px);
}

.program-header i {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.program-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.program-content {
    padding: 2rem;
}

.program-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.program-table {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(76, 175, 80, 0.05);
    transform: translateX(4px);
}

.table-row span:first-child {
    font-weight: 600;
    color: var(--dark-color);
    padding-right: 1rem;
}

.table-row span:last-child {
    color: var(--text-light);
    font-style: italic;
}

.program-row.full-width {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.full-width-card {
    width: 100%;
}

.full-width-card .program-header {
    padding: 2rem 3rem;
    text-align: center;
}

.full-width-card .program-header h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

.full-width-card .program-content {
    padding: 2.5rem 3rem;
}

.full-width-card .program-table {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== İletişim Section ===== */
.iletisim {
    background: var(--white);
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.iletisim-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.info-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-card h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

.info-card a {
    color: var(--primary-color);
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.iletisim-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.iletisim-form-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Randevu Section ===== */
.randevu {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.randevu-content {
    max-width: 800px;
    margin: 0 auto;
}

.randevu-content h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.randevu-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.appointment-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--light-color);
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.appointment-form textarea {
    resize: vertical;
}

.appointment-form button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== SSS Section ===== */
.sss {
    background: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--light-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #2c3e50;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.3) 50%, transparent 100%);
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: #1B5E20;
    font-weight: 700;
    position: relative;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 2px;
}

.footer-col h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: #495057;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-radius: 4px;
    position: relative;
}

.footer-col ul li a:hover {
    color: #1B5E20;
    transform: translateX(8px);
    background: rgba(76, 175, 80, 0.05);
    padding-left: 0.5rem;
}

.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #4CAF50;
    font-weight: bold;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

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

.footer-col ul li i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(2px);
}

.contact-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.2);
}

.contact-details h5 {
    color: #1B5E20;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-details p {
    color: #495057;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

.contact-details a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.75rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    color: white;
    border: 2px solid transparent;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-links a[aria-label="Instagram"]:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
}

.social-links a[aria-label="Gmail"] {
    background: #ea4335;
    border-color: #ea4335;
}

.social-links a[aria-label="Gmail"]:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
}

.social-links a[aria-label="WhatsApp"] {
    background: #25d366;
    border-color: #25d366;
}

.social-links a[aria-label="WhatsApp"]:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    color: #6c757d;
    font-size: 0.95rem;
    background: rgba(248, 249, 250, 0.5);
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-radius: 8px 8px 0 0;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 50%;
    left: -165px;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 0 50px 50px 0;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease,
                transform 0.3s ease,
                padding 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    animation: whatsappIntro 3.5s ease 1s;
}

.whatsapp-float i {
    font-size: 2.2rem;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float .whatsapp-text {
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.whatsapp-float:hover {
    left: 0 !important;
    padding-right: 2.5rem;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    transform: translateY(50%) scale(1.08);
}

.whatsapp-float::after {
    content: '→';
    position: absolute;
    right: 1rem;
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
    right: 1.2rem;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Giriş animasyonu: Aç-kapa-hafif aç */
@keyframes whatsappIntro {
    0% {
        left: -250px;
        opacity: 0;
    }
    30% {
        left: 0;
        opacity: 1;
    }
    50% {
        left: 0;
    }
    100% {
        left: -165px;
        opacity: 1;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .logo-img { height: 54px; }
}

@media (max-width: 768px) {
    /* Logo ortada, menü sağda */
    .navbar .container {
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 0.8rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: scale(1.05);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        gap: 0.5rem;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 15px;
    }

    .btn-randevu {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.7rem 0;
    }
    
    .logo-img { height: 48px; }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .hakkimizda-content {
        grid-template-columns: 1fr;
    }

    .program-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-header {
        padding: 1.2rem 1.5rem;
    }
    
    .program-header h3 {
        font-size: 1.1rem;
    }
    
    .program-header i {
        font-size: 2rem;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .table-header {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .table-row {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* İletişim bilgileri mobilde daha kompakt */
    .iletisim-info {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    /* Form mobilde daha dar */
    .iletisim-form-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .iletisim-form-container h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .appointment-form {
        padding: 2rem;
    }

    .randevu-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .logo span {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 45px;
    }

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

    .stat-item {
        padding: 2rem 1rem;
    }

    .hero-slider {
        margin-top: 55px;
    }
    
    .btn-randevu {
        font-size: 0.8rem;
    }
    
    /* İletişim formu küçük ekranlarda */
    .iletisim-info {
        gap: 0.8rem;
    }
    
    .info-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .info-icon {
        min-width: 40px;
        min-height: 40px;
        font-size: 1.2rem;
    }
    
    .info-card h3 {
        font-size: 0.95rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .iletisim-form-container {
        padding: 1.2rem;
    }
    
    .iletisim-form-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .contact-form .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* WhatsApp buton mobilde */
    .whatsapp-float {
        bottom: 45%;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-float:hover {
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 45%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 0 35px 35px 0;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 0.85rem;
    }
    
    .whatsapp-float:hover {
        padding-right: 1.8rem;
    }
}
