/* --- CSS VARIABLES & DESIGN SYSTEM --- */
:root {
    /* Soft Pastel Palette - Vibe Guidelines */
    --color-mint-green: #A8E6CF;
    --color-mint-green-dark: #81cbb1;
    --color-pale-yellow: #FDFFB6;
    --color-warm-peach: #FFD3B6;
    --color-peach-dark: #ffa970;
    --color-sky-blue: #A0C4FF;
    --color-sky-blue-dark: #7a9ce0;
    --color-gray-light: #EDF2F7;
    
    /* Neutrals for body and text */
    --color-text-main: #2D3748; /* Soft dark gray for readability */
    --color-text-muted: #718096;
    --color-bg-light: #F7FAFC;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.1);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.08);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --border-radius-pill: 999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* --- RESET & GLOBAL STYLE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

/* --- TYPOGRAPHY UTILS --- */
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(168, 230, 207, 0.3);
    color: #4a9e7d;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-center {
    display: block;
    width: fit-content;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--color-warm-peach);
    color: #8c4c1a;
    box-shadow: 0 8px 20px rgba(255, 211, 182, 0.6);
}

.btn-primary:hover {
    background-color: var(--color-peach-dark);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(255, 211, 182, 0.8);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text-main);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-video {
    background-color: rgba(255,255,255,0.9);
    color: var(--color-text-main);
    box-shadow: var(--shadow-soft);
    gap: 8px;
}

.btn-video i {
    width: 20px;
    height: 20px;
    color: #e74c3c;
}

.btn-video:hover {
    background-color: #fff;
    box-shadow: var(--shadow-hover);
}

.btn-block {
    width: 100%;
}

.compact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.logo-icon {
    color: #F6A035;
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mint-green-dark);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 20px;
    height: calc(100vh - 80px);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.05) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: #4a9e7d;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #3a4555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- VIDEO MODAL --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.video-close-btn:hover {
    transform: scale(1.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- ABOUT US --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.experience-badge i {
    color: var(--color-mint-green-dark);
    width: 32px;
    height: 32px;
}

/* Decorative shapes */
.decorative-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-pale-yellow);
    top: -30px;
    left: -30px;
    z-index: 1;
}

.decorative-pill {
    position: absolute;
    width: 100px;
    height: 200px;
    border-radius: 50px;
    background-color: var(--color-sky-blue);
    opacity: 0.4;
    bottom: 50px;
    left: -50px;
    z-index: 1;
    transform: rotate(25deg);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--color-mint-green-dark);
}

/* --- TEAM SECTION --- */
.team {
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 40px 25px 30px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #edf2f7;
    background: var(--color-white);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mint-green), var(--color-sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card .team-role {
    color: #4a9e7d;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.team-card .team-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- FEATURES (NEDEN BİZ?) --- */
.features {
    background-color: var(--color-bg-light);
    border-radius: 40px;
}

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

.feature-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #edf2f7;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    width: 30px;
    height: 30px;
}

.color-mint { background-color: rgba(168, 230, 207, 0.4); color: #2e8b57; }
.color-blue { background-color: rgba(160, 196, 255, 0.4); color: #00509e; }
.color-yellow { background-color: rgba(253, 255, 182, 0.8); color: #d4a017; }
.color-peach { background-color: rgba(255, 211, 182, 0.6); color: #ba5112; }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-muted);
}

/* --- DAILY SCHEDULE TIMELINE --- */
.schedule {
    background: var(--color-white);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-mint-green), var(--color-sky-blue), var(--color-warm-peach));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 0 0 30px 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 3px solid var(--color-mint-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.timeline-dot i {
    width: 16px;
    height: 16px;
    color: var(--color-mint-green-dark);
}

.timeline-content {
    background: var(--color-bg-light);
    padding: 18px 22px;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
}

.timeline-time {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #4a9e7d;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.05rem;
}

/* --- GALLERY --- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.gallery-filter-btn {
    padding: 10px 22px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-pill);
    background: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--color-mint-green-dark);
    color: var(--color-text-main);
    background: rgba(168, 230, 207, 0.1);
}

.gallery-filter-btn.active {
    background: var(--color-mint-green-dark);
    color: white;
    border-color: var(--color-mint-green-dark);
    box-shadow: 0 4px 15px rgba(129, 203, 177, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 220px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- GALLERY LIGHTBOX --- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.gallery-lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 16px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
    letter-spacing: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

/* --- SOCIAL FEED --- */
.social-feed {
    background-color: var(--color-gray-light);
}

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.social-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.social-card-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.social-card-img-wrapper .social-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover .social-card-img-wrapper .social-main-img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.social-card:hover .play-button {
    background: rgba(0,0,0,0.1);
}

.social-platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-badge-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.social-card:hover .social-badge-icon {
    transform: scale(1.1);
}

.social-card-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.social-card-link {
    font-size: 0.8rem;
    color: var(--color-mint-green-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.social-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-pill);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-instagram {
    background-color: var(--color-white);
    color: #e1306c;
    border-color: #e1306c;
}

.btn-instagram:hover {
    background-color: rgba(225, 48, 108, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.btn-youtube {
    background-color: var(--color-white);
    color: #ff0000;
    border-color: #ff0000;
}

.btn-youtube:hover {
    background-color: rgba(255, 0, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: linear-gradient(135deg, #f0faf5 0%, #f0f6ff 100%);
}

.testimonial-wrapper {
    position: relative;
    margin-top: 40px;
    padding-bottom: 80px; /* Buton için alan bırakıyoruz */
}

.testimonial-masonry {
    column-count: 3;
    column-gap: 25px;
}

@media (max-width: 992px) {
    .testimonial-masonry { column-count: 2; }
}

@media (max-width: 768px) {
    .testimonial-masonry { column-count: 1; }
}

.testimonial-card {
    break-inside: avoid;
    margin-bottom: 25px;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-mint-green);
    line-height: 1;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.testimonial-author-name {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text-main);
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.testimonial-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(240,250,245,0) 0%, rgba(240,246,255,1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: opacity 0.5s ease;
}



#showAllTestimonialsBtn {
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* --- FAQ ACCORDION --- */
.faq {
    background-color: var(--color-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #edf2f7;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-mint-green);
}

.faq-item.active {
    border-color: var(--color-mint-green-dark);
    box-shadow: 0 5px 20px rgba(168, 230, 207, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-main);
    transition: var(--transition);
}

.faq-question:hover {
    color: #4a9e7d;
}

.faq-question i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: var(--color-mint-green-dark);
}

.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;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

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

/* --- CONTACT --- */
.contact {
    background-color: var(--color-mint-green);
    border-radius: 40px 40px 0 0;
    padding-bottom: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #2e8b57;
}

.contact-info > p {
    color: #3b5c49;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.info-icon {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e8b57;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.info-item h4 {
    color: #1e5a3a;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: #3b5c49;
}

.info-item a:hover {
    color: #1e5a3a;
    text-decoration: underline;
}

/* Google Maps Embed */
.map-embed {
    margin-top: 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid white;
}

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

/* Form */
.contact-form-card {
    background: white;
    padding: 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
}

.contact-form-card h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text-main);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #edf2f7;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-mint-green-dark);
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.4);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg,
.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-text-main);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    color: white;
}

.footer-brand p {
    color: #a0aec0;
    margin-top: 10px;
    max-width: 300px;
}

.footer-socials-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.social-title {
    font-size: 1.1rem;
    color: #a0aec0;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: var(--transition);
    color: white;
    font-weight: 600;
}

.footer-socials a.social-link:hover {
    background-color: var(--color-mint-green);
    color: var(--color-text-main);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    color: #a0aec0;
    font-size: 0.9rem;
    text-align: center;
}

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

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-card {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .social-feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.65) 100%);
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

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

    .social-actions {
        flex-direction: column;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand p {
        margin: 10px auto;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-dot {
        left: -20px;
        width: 30px;
        height: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 10px;
    }

    .gallery-item-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .lightbox-content img {
        max-width: 95vw;
        border-radius: var(--border-radius-sm);
    }

    .social-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .btn-social {
        width: 100%;
        padding: 10px 20px;
    }
}

/* ================================================
   VISUAL ENHANCEMENTS
   ================================================ */

/* --- HERO FLOATING DECORATIONS --- */
.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
}

.hero-dot.dot-1 {
    width: 20px;
    height: 20px;
    background: var(--color-warm-peach);
    opacity: 0.5;
    top: 20%;
    right: 10%;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-dot.dot-2 {
    width: 14px;
    height: 14px;
    background: var(--color-sky-blue);
    opacity: 0.45;
    top: 60%;
    right: 25%;
    animation: heroFloat 8s ease-in-out infinite 1s;
}

.hero-dot.dot-3 {
    width: 24px;
    height: 24px;
    background: var(--color-pale-yellow);
    opacity: 0.5;
    top: 35%;
    right: 5%;
    animation: heroFloat 7s ease-in-out infinite 2s;
}

.hero-dot.dot-4 {
    width: 16px;
    height: 16px;
    background: var(--color-mint-green);
    opacity: 0.5;
    top: 75%;
    right: 15%;
    animation: heroFloat 9s ease-in-out infinite 0.5s;
}

.hero-dot.dot-5 {
    width: 10px;
    height: 10px;
    background: var(--color-warm-peach);
    opacity: 0.4;
    top: 45%;
    right: 35%;
    animation: heroFloat 5s ease-in-out infinite 3s;
}

.hero-star {
    position: absolute;
    opacity: 0.35;
}

.hero-star::before,
.hero-star::after {
    content: '';
    position: absolute;
    background: var(--color-pale-yellow);
    border-radius: 2px;
}

.hero-star::before {
    width: 20px;
    height: 6px;
    top: 7px;
    left: 0;
}

.hero-star::after {
    width: 6px;
    height: 20px;
    left: 7px;
    top: 0;
}

.hero-star.star-1 {
    top: 15%;
    right: 20%;
    animation: heroTwinkle 4s ease-in-out infinite;
}

.hero-star.star-2 {
    top: 55%;
    right: 8%;
    transform: scale(0.7);
    animation: heroTwinkle 5s ease-in-out infinite 1.5s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes heroTwinkle {
    0%, 100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(20deg); }
}

/* --- HERO WAVE DIVIDER --- */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* --- WAVE DIVIDER (GENERIC) --- */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- FEATURE CARD ICON ANIMATION --- */
.feature-card:hover .icon-wrapper {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(0.95) rotate(3deg); }
    70% { transform: scale(1.1) rotate(-2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* --- TEAM CARD ENHANCEMENTS --- */
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, var(--color-mint-green), var(--color-sky-blue));
    transition: height 0.3s ease;
}

.team-card:hover::before {
    height: 5px;
}

.team-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--color-sky-blue), #b8b5ff);
}

.team-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--color-warm-peach), #ffb3b3);
}

.team-card:nth-child(4)::before {
    background: linear-gradient(135deg, var(--color-pale-yellow), var(--color-warm-peach));
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(168, 230, 207, 0.25);
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 2px solid #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    color: var(--color-text-main);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-mint-green);
    border-color: var(--color-mint-green);
    color: #2e8b57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 230, 207, 0.5);
}

.scroll-to-top i {
    width: 22px;
    height: 22px;
}

/* --- TOAST NOTIFICATION --- */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 3000;
    pointer-events: none;
}

.toast {
    background: linear-gradient(135deg, #2e8b57, #3baa6f);
    color: white;
    padding: 18px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    max-width: 420px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* --- ENRICHED FOOTER --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--color-mint-green);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '\203A';
    font-size: 1.2rem;
    color: var(--color-mint-green-dark);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: translateX(3px);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: #a0aec0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-hours .day {
    color: #cbd5e0;
}

.footer-hours .time {
    color: var(--color-mint-green);
    font-weight: 600;
}

.footer-col .footer-socials {
    flex-direction: column;
}

/* --- RESPONSIVE: NEW ELEMENTS --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-decorations {
        display: none;
    }

    .hero-wave svg {
        height: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }

    .toast {
        max-width: calc(100vw - 60px);
        font-size: 0.9rem;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: auto;
        bottom: 90px;
        right: 15px;
        left: 15px;
    }

    .toast {
        max-width: 100%;
    }

    .hero-wave svg {
        height: 30px;
    }
}
