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

:root {
    /* Trust & Warmth Palette - Professional + Warm */
    --primary-color: #1E90FF;        /* Dodger Blue - Profesyonel, güven */
    --primary-dark: #1976D2;         /* Koyu mavi */
    --primary-light: #42A5F5;        /* Açık mavi */
    --secondary-color: #FF7F50;      /* Coral - Sıcak, samimi */
    --secondary-dark: #FF6347;       /* Koyu coral (tomato) */
    --secondary-light: #FFA07A;      /* Açık coral (light salmon) */
    --accent-color: #FFD166;         /* Pastel sarı - Vurgu */
    --accent-dark: #FFC14D;          /* Koyu sarı */
    --success-color: #4CAF50;        /* Yeşil - Başarı */
    --warning-color: #FF9800;        /* Turuncu - Uyarı */
    --danger-color: #F44336;         /* Kırmızı - Hata */
    --dark-color: #2C2C2C;           /* Koyu gri - Metin */
    --light-color: #F7F9FC;          /* Açık mavi-beyaz - Arka plan */
    --cream-color: #FAFBFD;          /* Krem beyaz */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6B7280;
    --border-radius: 16px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --box-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #D1ECFF;
}

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

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

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

ul {
    list-style: none;
}

/* ============================================
   Header & Navigation
============================================ */
.header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-title {
    color: var(--primary-dark);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
    margin: 0;
    margin-top: 2px;
    font-style: italic;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.btn-secondary {
    background-color: var(--gray-200);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--gray-300);
}

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

.btn-success:hover {
    background-color: #20b558;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn i {
    margin-right: 0.5rem;
}

/* ============================================
   Hero Section
============================================ */
.hero {
    background: linear-gradient(135deg, #004E89 0%, #1A659E 50%, #06D6A0 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-title .blue-text {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card:nth-child(1) {
    grid-column: 1 / -1;
}

.hero-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   Section Styles
============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ============================================
   Features Section
============================================ */
.features {
    padding: 5rem 0;
    background-color: var(--cream-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ============================================
   Lessons Preview
============================================ */
.lessons-preview {
    padding: 5rem 0;
}

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

.lesson-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

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

.lesson-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 182, 39, 0.05) 100%);
}

.lesson-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lesson-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.lesson-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lesson-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.lesson-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lesson-features i {
    color: var(--primary-color);
}

/* ============================================
   Testimonials
============================================ */
.testimonials-preview {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CTA Section
============================================ */
.cta {
    background: linear-gradient(135deg, #004E89 0%, #1A659E 50%, #06D6A0 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-simple {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--cream-color);
}

.cta-simple h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-simple p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   Footer
============================================ */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-light) !important;
    margin-bottom: 0.25rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-by {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-job {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--gray-300);
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact a {
    color: var(--gray-300);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

/* ============================================
   WhatsApp Float Button
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--box-shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

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

/* ============================================
   Messages
============================================ */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.alert {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-color);
    animation: slideIn 0.3s ease;
}

.alert-success {
    border-left-color: var(--success-color);
}

.alert-error {
    border-left-color: var(--danger-color);
}

.close-alert {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    margin-left: 1rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   Page Header
============================================ */
.page-header {
    background: linear-gradient(135deg, #004E89 0%, #1A659E 50%, #06D6A0 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Text Center Utility
============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   About Page Styles
============================================ */
.about-section {
    padding: 4rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-image .profile-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--white);
    margin: 0 auto;
}

.about-image .profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-image .profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(30, 144, 255, 0.3);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text .description {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.why-section,
.collaboration-section,
.coaching-section {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

.values-section {
    padding: 4rem 0;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.content-box.dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.content-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-box.dark h2 {
    color: var(--white);
}

.content-box blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote-box {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
}

.methods-section {
    padding: 4rem 0;
}

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

.method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.method-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.content-box.dark .value-item i {
    color: var(--accent-color);
}

/* ============================================
   Lessons Page Styles
============================================ */
.lessons-detail {
    padding: 4rem 0;
}

.lesson-detail-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 2rem;
    align-items: start;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.lesson-detail-card:hover {
    border-color: var(--primary-color);
}

.lesson-detail-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 182, 39, 0.05) 100%);
}

.lesson-detail-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.lesson-detail-icon {
    font-size: 5rem;
    min-width: 100px;
    text-align: center;
}

.lesson-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lesson-intro {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lesson-goal {
    background-color: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.lesson-content-section,
.final-note {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

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

.highlight-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

/* ============================================
   FAQ Section
============================================ */
.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: var(--primary-color);
}

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

/* ============================================
   FAQ Accordion (Homepage)
============================================ */
.faq-section-home {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

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

.faq-accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.faq-accordion-item:hover {
    box-shadow: var(--box-shadow-lg);
}

.faq-accordion-header {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: inherit;
}

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

.faq-accordion-header span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-accordion-header i.fa-clock,
.faq-accordion-header i.fa-laptop,
.faq-accordion-header i.fa-gift,
.faq-accordion-header i.fa-graduation-cap,
.faq-accordion-header i.fa-book-open,
.faq-accordion-header i.fa-calendar-alt,
.faq-accordion-header i.fa-chart-line,
.faq-accordion-header i.fa-exclamation-triangle,
.faq-accordion-header i.fa-bullseye {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-accordion-header {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Varsayılan: tüm içerikleri gizle (tüm cihazlarda) */
.faq-accordion-content {
    display: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block !important; /* Aktifken kesinlikle görünür */
    max-height: 1000px; /* Yeterli yükseklik ver */
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobil görünümde sızıntıyı kesin olarak engelle */
/* Mobil için özel ek kurala gerek kalmadı; yukarıdaki kurallar tüm cihazlarda çalışır */

.faq-accordion-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Testimonials Page
============================================ */
.testimonials-page {
    padding: 4rem 0;
}

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

.testimonial-full-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   Reservation & Contact Forms
============================================ */
.reservation-section,
.contact-section {
    padding: 4rem 0;
}

.reservation-wrapper,
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.reservation-info,
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.info-steps {
    margin: 2rem 0;
}

.info-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
}

.info-box {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.info-box h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.contact-alternative {
    margin-top: 2rem;
}

.contact-alternative h3 {
    margin-bottom: 1rem;
}

.reservation-form-wrapper,
.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.reservation-form-wrapper h3,
.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reservation-form-wrapper > p,
.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-error {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-intro blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-detail-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.quick-contact {
    margin-top: 2rem;
}

/* ============================================
   Blog Styles
============================================ */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image.placeholder {
    background: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Blog Detail */
.blog-detail {
    padding: 4rem 0;
}

.blog-detail-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.blog-detail-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Blog İçeriği - Zengin Metin Stilleri */
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.blog-detail-content h1 { font-size: 2.5rem; }
.blog-detail-content h2 { font-size: 2rem; }
.blog-detail-content h3 { font-size: 1.75rem; }
.blog-detail-content h4 { font-size: 1.5rem; }
.blog-detail-content h5 { font-size: 1.25rem; }
.blog-detail-content h6 { font-size: 1.1rem; }

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content strong {
    font-weight: 700;
    color: var(--dark-color);
}

.blog-detail-content em {
    font-style: italic;
}

.blog-detail-content u {
    text-decoration: underline;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-detail-content ul {
    list-style-type: disc;
}

.blog-detail-content ol {
    list-style-type: decimal;
}

.blog-detail-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-content a:hover {
    color: var(--primary-dark);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-detail-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--gray-700);
}

.blog-detail-content code {
    background: #f4f4f4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #c7254e;
}

.blog-detail-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-detail-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.blog-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-detail-content table thead {
    background: var(--primary-color);
    color: white;
}

.blog-detail-content table th,
.blog-detail-content table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.blog-detail-content table th {
    font-weight: 700;
}

.blog-detail-content table tbody tr:hover {
    background: var(--light-color);
}

.blog-detail-content hr {
    margin: 3rem 0;
    border: none;
    border-top: 2px solid var(--gray-200);
}

.blog-detail-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   Comments Section
============================================ */
.comments-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.comment-count {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.comment-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.comment-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

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

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

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

.comment-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.comment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

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

.alert-success {
    padding: 1rem 1.5rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success i {
    font-size: 1.25rem;
}

/* Comments List */
.comments-list {
    margin-top: 3rem;
}

.comments-list h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.comment-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.comment-avatar {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
}

.comment-info {
    flex: 1;
}

.comment-author {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.comment-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.comment-date i {
    font-size: 0.85rem;
}

.comment-body {
    color: var(--text-dark);
    line-height: 1.7;
}

.comment-body p {
    margin: 0;
}

.no-comments {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    color: var(--gray-600);
}

.no-comments i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    display: block;
}

.no-comments p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row-comment {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comment-form-wrapper {
        padding: 1.5rem;
    }
    
    .comment-item {
        padding: 1.5rem;
    }
    
    .comment-avatar {
        font-size: 2.5rem;
    }
}

.related-posts {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

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

.blog-card-small {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

.blog-image-small {
    height: 150px;
    overflow: hidden;
}

.blog-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-small.placeholder {
    background: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-content-small {
    padding: 1.5rem;
}

.blog-content-small h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

.read-more {
    color: var(--primary-color);
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* ============================================
   Pagination
============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.page-link {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-info {
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   No Content
============================================ */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.no-content i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    display: block;
}

.no-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   Responsive Design - Mobile First
============================================ */

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--box-shadow-lg);
        transition: var(--transition);
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .profile-photo {
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Features & Services */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Lesson Cards */
    .lesson-detail-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .lesson-detail-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    /* Reservation & Contact */
    .reservation-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-info,
    .contact-info-wrapper {
        position: static;
        order: 2;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* CALENDAR - MOBILE RESPONSIVE */
    .calendar-container {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .calendar-header h3 {
        font-size: 1.2rem;
    }
    
    .calendar-nav {
        width: 100%;
        justify-content: space-between;
    }
    
    .calendar-nav button {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .calendar-grid {
        gap: 0.3rem;
    }
    
    .calendar-day-header {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .calendar-day {
        min-height: 50px;
        padding: 0.3rem;
    }
    
    .calendar-day-number {
        font-size: 0.9rem;
    }
    
    .calendar-day-indicator {
        width: 4px;
        height: 4px;
        bottom: 3px;
    }
    
    /* Time Slots - Mobile */
    .time-slots-container {
        margin-top: 1.5rem;
    }
    
    .time-slots-header h4 {
        font-size: 1.1rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .time-slot {
        padding: 0.75rem 0.5rem;
    }
    
    .time-slot-time {
        font-size: 1rem;
    }
    
    .time-slot-type {
        font-size: 0.75rem;
    }
    
    /* Reservation Form */
    .reservation-form-section {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .selected-info {
        padding: 1rem;
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-accordion-content {
        padding: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Messages */
    .messages-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Page Headers */
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    /* Step Cards */
    .info-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    /* Contact Details */
    .contact-detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 0.5rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Calendar - Extra Small */
    .calendar-container {
        padding: 0.75rem;
    }
    
    .calendar-header h3 {
        font-size: 1rem;
    }
    
    .calendar-nav button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .calendar-nav button i {
        display: none;
    }
    
    .calendar-day {
        min-height: 40px;
    }
    
    .calendar-day-number {
        font-size: 0.8rem;
    }
    
    .calendar-day-header {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
    
    /* Time Slots - Extra Small */
    .time-slots-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 1rem;
    }
    
    /* Forms */
    .reservation-form-section,
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* Logo */
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
}

/* Landscape Mode (Mobile Landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .calendar-grid {
        gap: 0.4rem;
    }
    
    .calendar-day {
        min-height: 45px;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem;
    }
}

