
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --lighter-blue: #93c5fd;
    --white: #ffffff;
    --cream: #f8f9fa;
    --text-dark: #1e293b;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: clip; /* clip yerine hidden - sticky ile uyumlu */
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-blue);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-height: 44px;
    min-width: 44px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    gap: 6px;
}

.btn-sm i {
    font-size: 14px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: background 0.3s ease, top 0.3s ease;
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-block;
}

.logo-text span {
    color: var(--light-blue);
    font-size: 1.15rem;
    display: inline;
}

/* ===== NAVIGATION ===== */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 5px 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-menu a i {
    font-size: 15px;
    color: var(--light-blue);
    transition: transform 0.3s ease;
}

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

.nav-menu a:hover i,
.nav-menu a.active i {
    transform: scale(1.2);
    color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    list-style: none;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-menu a i {
    font-size: 18px;
    color: var(--light-blue);
    min-width: 20px;
}

.dropdown-menu a:hover i {
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-intro-image {
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* Mobil için profil resmi */
@media (max-width: 768px) {
    .profile-img {
        max-width: 100%;
    }
}

.about-intro-text h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-intro-video {
    position: relative;
    width: 100%;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-video-content {
    width: 100%;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    background: #000;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 15px;
}

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

/* Mobil için video boyutu */
@media (max-width: 768px) {
    .video-wrapper video {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .video-wrapper video {
        min-height: 200px;
    }
}

/* Neden Ben Section */
.why-me-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.why-me-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-me-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.why-me-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.why-me-content h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-me-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* Hover Card Effect */
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15) !important;
}

/* OLD TOAST CSS REMOVED - LINE 995-1153 */
        font-size: 0.9rem;
    }
    
    .toast-message {
        font-size: 0.8rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 15px;
        flex-direction: row;
        align-items: flex-start;
    }
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.15);
}

.contact-info-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

@media (max-width: 767px) {
    .contact-info-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
}

.contact-info-card-content {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-info-card-content h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-card-content p,
.contact-info-card-content a {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    .contact-info-card-content h3 {
        font-size: 0.95rem;
    }
    
    .contact-info-card-content p,
    .contact-info-card-content a {
        font-size: 0.85rem;
    }
}

.contact-info-card-content a:hover {
    color: var(--primary-blue);
}

/* Working Hours List */
.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 6px;
    transition: all 0.2s ease;
    gap: 10px;
}

.working-day:hover {
    background: rgba(46, 125, 50, 0.1);
    transform: translateX(2px);
}

.working-day.closed {
    background: rgba(255, 107, 107, 0.05);
}

.working-day.closed:hover {
    background: rgba(255, 107, 107, 0.1);
}

.working-day .day-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.working-day .day-hours {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: right;
}

.working-day.closed .day-hours {
    color: #ff6b6b;
}

@media (max-width: 767px) {
    .working-day {
        padding: 6px 10px;
        gap: 8px;
    }
    
    .working-day .day-name,
    .working-day .day-hours {
        font-size: 0.8rem;
    }
}

/* Footer Working Hours */
.footer-working-hours {
    margin-left: 28px;
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
}

.footer-working-hours > div {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
}

.footer-working-hours > div:last-child {
    border-bottom: none;
}

.footer-working-hours span:first-child {
    opacity: 0.9;
    white-space: nowrap;
}

.footer-working-hours span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 20px;
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-form-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.social-media-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-media-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.social-media-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-media-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn i {
    font-size: 1.3rem;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.alert p {
    margin: 0;
    font-size: 0.9rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-error i {
    color: #dc3545;
}

/* ===== CTA CARDS ===== */
.cta-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15);
}

.cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cta-action {
    flex-shrink: 0;
}

.cta-action .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 6px;
}

.pagination a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.pagination span.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.pagination a i {
    font-size: 0.75rem;
}

.intro-lead {
    font-size: 1.3rem;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--cream);
    border-radius: 25px;
    color: var(--primary-blue);
    font-weight: 600;
}

.highlight-item i {
    font-size: 20px;
    color: var(--light-blue);
}

/* Animasyonlar - Scroll-based */
.fade-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

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

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

/* Staggered animation for cards */
.grid .fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.grid .fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.grid .fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.grid .fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.grid .fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.grid .fade-in-up:nth-child(6) { transition-delay: 0.6s; }

/* Fallback keyframes */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Desktop görünüm */
@media (min-width: 768px) {
    .about-intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .about-intro-text h2 {
        font-size: 3rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .why-me-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-info-card {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-info-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
    
    .working-hours-list {
        gap: 6px;
        margin-top: 10px;
    }
    
    .working-day {
        padding: 6px 10px;
    }
    
    .working-day .day-name,
    .working-day .day-hours {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .about-intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .why-me-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
}

@media (max-width: 767px) {
    .why-me-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-me-icon {
        margin: 0 auto;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .social-media-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-action .btn {
        width: 100%;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
        padding: 0 8px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    filter: brightness(0.70);
    transform: scale(1.1);
}

/* Mobilde hero background ortalama */
@media (max-width: 991px) {
    .hero-bg {
        object-position: center center;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        object-position: center 40%;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        object-position: center 35%;
    }
}

/* Hero için animasyon */
@media (prefers-reduced-motion: no-preference) {
    .hero-bg {
        animation: subtle-zoom 20s ease-in-out infinite alternate;
    }
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-content {
    max-width: 700px;
    padding: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

/* ===== CARD ===== */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-blue);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

input[type="datetime-local"].form-control {
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
}

input[type="datetime-local"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
}

/* ===== CONTACT PREVIEW SECTION ===== */
.contact-preview-section {
    background: var(--cream);
    overflow: hidden;
}

.contact-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
    max-width: 100%;
}

.contact-info-wrapper,
.contact-map-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.contact-info-header h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.3rem;
    word-break: break-word;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--cream);
    border-radius: 10px;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-item-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-info-item-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.15);
}

.contact-info-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.location-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.phone-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.email-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.time-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.contact-info-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

.btn-contact-full {
    width: 100%;
    justify-content: center;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 350px;
    max-width: 100%;
}

.contact-map-box {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-map-box iframe {
    max-width: 100%;
}

/* Tablet (768px+) için contact preview */
@media (min-width: 768px) {
    .contact-preview-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-info-box {
        padding: 30px;
        border-radius: 20px;
    }
    
    .contact-info-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 15px;
    }
    
    .contact-info-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-info-items {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .contact-info-item {
        padding: 18px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .contact-info-item-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .contact-info-label {
        font-size: 13px;
    }
    
    .contact-info-value {
        font-size: 16px;
    }
    
    .contact-map-wrapper {
        min-height: 450px;
    }
    
    .contact-map-box {
        border-radius: 20px;
    }
}

/* Desktop (992px+) için contact preview */
@media (min-width: 992px) {
    .contact-preview-wrapper {
        gap: 40px;
    }
    
    .contact-info-box {
        padding: 40px;
    }
    
    .contact-info-header {
        margin-bottom: 30px;
    }
    
    .contact-info-items {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-map-wrapper {
        min-height: 550px;
    }
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

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

.appointment-info-card {
    text-align: center;
    padding: 20px;
}

.appointment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.appointment-icon i {
    font-size: 40px;
    color: var(--white);
}

.appointment-info-card h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.appointment-highlight {
    font-size: 1.2rem;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.appointment-features {
    margin-top: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.15);
}

.feature-item i {
    color: var(--light-blue);
    font-size: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 24px;
    color: var(--white) !important;
    line-height: 1;
}

.phone-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.phone-icon i {
    color: var(--white) !important;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-icon i {
    color: var(--white) !important;
}

.location-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.location-icon i {
    color: var(--white) !important;
}

/* WhatsApp kartı için beyaz yazı */
.contact-card:has(.whatsapp-icon) .contact-label,
.contact-card:has(.whatsapp-icon) .contact-value {
    color: var(--white) !important;
}

/* WhatsApp arka plan için kart düzenlemesi */
a[href*="wa.me"].contact-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

a[href*="wa.me"].contact-card:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0a6e5f 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.appointment-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.appointment-form .form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.appointment-form .form-header i {
    font-size: 40px;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.appointment-form .form-header h2 {
    color: var(--primary-blue);
    margin: 0;
}

@media (min-width: 768px) {
    .appointment-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0 20px;
    overflow: hidden;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 30px;
}

.footer-col {
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-col:first-child {
    padding-top: 0;
}

.footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-col h3 {
    color: #b7e4c7;
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 15px;
}

.footer-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 18px;
    background: #74c69d;
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d8f3dc;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #74c69d;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #74c69d;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-contact i {
    font-size: 16px;
    min-width: 20px;
    color: #74c69d;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #74c69d;
}

.footer-contact span {
    color: white;
}

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

.footer-map {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

@media (min-width: 768px) {
    .footer-map {
        margin-bottom: 15px;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .footer-map iframe {
        height: 220px;
    }
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #74c69d;
    color: #1e3a8a;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.map-link:hover {
    background: #52b788;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin: 10px 0;
    color: #d8f3dc;
}

.developer-credit a {
    color: #74c69d;
    text-decoration: none;
}

.developer-credit a:hover {
    color: white;
}

/* Mobil için footer extra optimizasyon */
@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 20px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .main-footer .container {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .footer-content {
        gap: 0;
        grid-template-columns: 1fr !important;
        width: 100%;
    }
    
    .footer-col {
        padding: 30px 0;
        width: 100% !important;
        max-width: 100%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:first-child {
        padding-top: 0;
    }
    
    .footer-col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-col h3::before {
        height: 18px;
    }
    
    .footer-col p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .footer-social {
        gap: 12px;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .footer-links {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-links li {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
        display: inline-block;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .footer-contact {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-contact li {
        font-size: 14px;
        gap: 12px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-contact i {
        font-size: 16px;
        min-width: 20px;
        flex-shrink: 0;
    }
    
    .footer-contact a,
    .footer-contact span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 32px);
    }
    
    .footer-map {
        margin-bottom: 18px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        width: 100%;
        max-width: 100%;
    }
    
    .footer-map iframe {
        height: 200px;
        width: 100% !important;
        max-width: 100%;
        display: block;
    }
    
    .map-link {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-block;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    .footer-bottom {
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
    }
    
    .footer-bottom p {
        font-size: 13px;
        padding: 0;
        line-height: 1.8;
        margin: 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .footer-bottom a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* 430px ve altı için ekstra optimizasyon */
@media (max-width: 430px) {
    .main-footer {
        padding: 30px 0 15px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .main-footer .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .footer-content {
        gap: 0 !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        display: grid !important;
    }
    
    .footer-col {
        padding: 22px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .footer-col h3 {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
        display: flex !important;
        width: 100% !important;
    }
    
    .footer-col p {
        font-size: 13px !important;
        line-height: 1.7 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .footer-links,
    .footer-contact {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .footer-links li,
    .footer-contact li {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }
    
    .footer-links a {
        font-size: 13px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .footer-contact li {
        font-size: 13px !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .footer-map {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
    }
    
    .footer-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px !important;
    }
    
    .map-link {
        font-size: 13px !important;
        padding: 10px 16px !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .footer-social {
        gap: 10px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
    
    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
    }
    
    .footer-bottom {
        padding-top: 25px !important;
        margin-top: 25px !important;
        width: 100% !important;
    }
    
    .footer-bottom p {
        font-size: 12px !important;
        line-height: 1.7 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Çok küçük mobil cihazlar için */
@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 15px;
        width: 100%;
        max-width: 100vw;
    }
    
    .main-footer .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        gap: 0;
        grid-template-columns: 1fr !important;
        width: 100%;
    }
    
    .footer-col {
        padding: 25px 0;
        width: 100% !important;
        max-width: 100%;
    }
    
    .footer-col:first-child {
        padding-top: 0;
    }
    
    .footer-col h3 {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }
    
    .footer-col h3::before {
        height: 16px;
        width: 2.5px;
    }
    
    .footer-col p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .footer-social {
        gap: 10px;
        margin-top: 15px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .footer-links li {
        margin-bottom: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-contact li {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .footer-contact i {
        font-size: 15px;
    }
    
    .footer-map iframe {
        height: 180px;
    }
    
    .map-link {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        margin-top: 25px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        padding: 0;
        margin: 8px 0;
    }
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
}

.pagination a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.pagination .active {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--light-blue);
}

.modal-body {
    padding: 40px 20px 20px;
}

/* ===== RESPONSIVE - MOBILE FIXES ===== */
@media (max-width: 767px) {
    * {
        max-width: 100vw;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .grid, .grid-2, .grid-3 {
        width: 100%;
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 20px !important;
    }
    
    .card {
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-working-hours {
        margin-left: 20px;
        font-size: 13px;
    }
    
    .contact-info-card .working-hours-list {
        gap: 5px;
        margin-top: 8px;
    }
    
    .contact-info-card .working-day {
        padding: 5px 8px;
        flex-wrap: nowrap;
    }
    
    .contact-info-card .working-day .day-name {
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .contact-info-card .working-day .day-hours {
        font-size: 0.75rem;
        text-align: right;
    }
}

/* Dropdown Mobile */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--cream);
        margin: 5px 0;
        padding: 5px 0;
        border-radius: 5px;
    }
    
    .dropdown-menu a {
        padding: 10px 15px 10px 30px;
        font-size: 15px;
    }
    
    .dropdown-arrow {
        margin-left: 5px;
    }
}

/* ===== RESPONSIVE - TABLET (768px+) ===== */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
        row-gap: 35px;
        display: grid !important;
    }
    
    .footer-col {
        max-width: 100%;
        width: auto;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .footer-col:first-child {
        padding-top: 0;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .map-link {
        width: auto;
        display: inline-flex;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .whatsapp-float {
        bottom: 40px;
        right: 40px;
    }
}

/* ===== RESPONSIVE - DESKTOP (992px+) ===== */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-nav {
        position: static;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 5px;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 8px 12px;
    }
    
    .dropdown-toggle:hover,
    .dropdown.active .dropdown-toggle {
        background: var(--cream);
        color: var(--primary-blue);
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px;
        display: grid !important;
    }
    
    .footer-col {
        padding: 0 !important;
        border-bottom: none !important;
        width: auto;
    }
    
    .footer-col h3 {
        font-size: 1.15rem;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

/* ===== VKI CALCULATOR ===== */
.vki-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
    padding: 40px 0 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-blue);
}

.vki-hero-content h1 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.vki-hero-content h1 i {
    margin-right: 8px;
    font-size: 1.6rem;
    color: var(--primary-blue);
}

.vki-hero-content p {
    font-size: 1rem;
    opacity: 0.85;
    padding: 0 15px;
    color: #495057;
}

.vki-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.vki-calculator-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.vki-info-card {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.vki-calculator-card h2,
.vki-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.vki-calculator-card h2 i,
.vki-info-card h3 i {
    font-size: 1.3rem;
}

.vki-info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.vki-info-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vki-info-card h4 i {
    color: var(--light-blue);
}

.vki-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.vki-form .form-label i {
    color: var(--light-blue);
}

.vki-calc-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
}

.vki-result {
    margin-top: 25px;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.vki-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vki-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.vki-unit {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.vki-category {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vki-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* VKI Categories */
.vki-result.vki-underweight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.vki-result.vki-normal {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.vki-result.vki-overweight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

.vki-result.vki-obese1 {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffcccb 100%);
    color: #c62828;
}

.vki-result.vki-obese2 {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #ad1457;
}

.vki-result.vki-obese3 {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #6a1b9a;
}

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

.vki-formula {
    background: rgba(255, 255, 255, 0.5);
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.vki-formula h4 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.formula-box {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    overflow-x: auto;
}

.formula-box span {
    color: var(--primary-blue);
    font-weight: 700;
}

.vki-table {
    margin-top: 15px;
}

.vki-table-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.vki-table-row:hover {
    transform: translateX(3px);
}

.vki-table-row .range {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
}

.vki-table-row .label {
    font-size: 13px;
}

.vki-table-row.vki-underweight { background: #e3f2fd; color: #1565c0; }
.vki-table-row.vki-normal { background: #e8f5e9; color: #2e7d32; }
.vki-table-row.vki-overweight { background: #fff3e0; color: #e65100; }
.vki-table-row.vki-obese1 { background: #ffebee; color: #c62828; }
.vki-table-row.vki-obese2 { background: #fce4ec; color: #ad1457; }
.vki-table-row.vki-obese3 { background: #f3e5f5; color: #6a1b9a; }

/* Tablet ve üzeri için VKI responsiveness */
@media (min-width: 768px) {
    .vki-hero {
        padding: 60px 0 40px;
    }
    
    .vki-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .vki-hero-content h1 i {
        font-size: 2.3rem;
    }
    
    .vki-hero-content p {
        font-size: 1.2rem;
        padding: 0;
    }
    
    .vki-wrapper {
        gap: 30px;
    }
    
    .vki-calculator-card {
        padding: 30px;
    }
    
    .vki-info-card {
        padding: 30px;
    }
    
    .vki-calculator-card h2,
    .vki-info-card h3 {
        font-size: 1.8rem;
    }
    
    .vki-info-card h4 {
        font-size: 1.2rem;
    }
    
    .vki-calc-btn {
        padding: 15px;
        font-size: 18px;
    }
    
    .vki-result {
        padding: 30px;
        margin-top: 30px;
    }
    
    .vki-number {
        font-size: 4rem;
    }
    
    .vki-unit {
        font-size: 1.5rem;
    }
    
    .vki-category {
        font-size: 1.8rem;
    }
    
    .vki-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .vki-formula {
        padding: 20px;
    }
    
    .vki-formula h4 {
        font-size: 1.3rem;
    }
    
    .formula-box {
        font-size: 1.3rem;
        padding: 15px;
    }
    
    .vki-table-row {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .vki-table-row .range {
        font-size: 15px;
    }
    
    .vki-table-row .label {
        font-size: 15px;
    }
}

.vki-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.vki-warning i {
    color: #ff9800;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.vki-warning p {
    margin: 0;
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.hero-buttons-top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.hero-vki-btn {
    width: auto;
    padding: 12px 35px;
}

/* Responsive VKI warning for tablet */
@media (min-width: 768px) {
    .vki-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .vki-hero-content h1 {
        font-size: 3rem;
    }
    
    .vki-warning {
        padding: 15px;
        gap: 12px;
    }
    
    .vki-warning i {
        font-size: 20px;
    }
    
    .vki-warning p {
        font-size: 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: all;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.toast.success::before {
    background: #10b981;
}

.toast.error::before {
    background: #ef4444;
}

.toast.warning::before {
    background: #f59e0b;
}

.toast.info::before {
    background: #3b82f6;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast.warning .toast-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.toast.info .toast-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.toast-close {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 18px;
    padding: 0;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.toast.removing {
    animation: slideOutRight 0.3s ease-out forwards;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: toastProgress linear forwards;
}

.toast.success .toast-progress {
    color: #10b981;
}

.toast.error .toast-progress {
    color: #ef4444;
}

.toast.warning .toast-progress {
    color: #f59e0b;
}

.toast.info .toast-progress {
    color: #3b82f6;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Mobile Toast */
@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
        padding: 14px 16px;
    }
    
    .toast-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .toast-title {
        font-size: 14px;
    }
    
    .toast-message {
        font-size: 12px;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 991px) ===== */
@media (max-width: 991px) {
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    body, html {
        overflow-x: clip; /* clip - sticky ile uyumlu */
        max-width: 100%;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any elements that might overflow */
    .section, .hero, .main-content {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Mobile Menu Toggle görünür yap */
    .mobile-menu-toggle {
        display: flex !important;
        cursor: pointer;
        z-index: 1002 !important;
        position: relative;
    }
    
    /* Nav menüyü gizle, aktif olunca göster */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: static;
        padding: 80px 20px 20px;
        box-shadow: none;
        background: white;
    }
    
    .nav-menu li {
        margin: 8px 0;
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Dropdown mobilde */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(30, 58, 138, 0.05);
        margin-top: 8px;
        border-radius: 8px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 12px 16px 12px 32px;
        font-size: 15px;
    }
    
    /* Overlay için */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
        pointer-events: none;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Header ve logo ayarları - MOBİLDE FİXED */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1001 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Header için body padding - içerik header altından başlasın */
    body {
        padding-top: 70px; /* Header yüksekliği kadar */
    }
    
    .header-content {
        justify-content: space-between;
        position: relative;
    }
    
    .logo {
        z-index: 1003;
        position: relative;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 1.05rem;
    }
    
    /* Hero section */
    .hero {
        min-height: 500px;
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Success stories */
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    /* Container padding */
    .container {
        padding: 0 20px;
    }
    
    /* Section padding */
    .section {
        padding: 40px 0;
    }
}

/* ===== TABLET RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Main header */
    .main-header {
        padding: 12px 0;
    }
    
    /* Hero */
    .hero {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Service cards */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    /* Tools dropdown grid */
    .tools-dropdown-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Appointment form */
    .appointment-grid {
        grid-template-columns: 1fr !important;
    }
    
    .appointment-info {
        order: -1;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* Mobile menu daha dar */
    .main-nav {
        width: 280px;
    }
    
    .nav-menu {
        padding: 70px 15px 15px;
    }
    
    .nav-menu a {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    /* Logo */
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.95rem;
    }
    
    /* Hero */
    .hero {
        min-height: 400px;
        padding: 40px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Section */
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* About highlights */
    .about-highlights {
        grid-template-columns: 1fr !important;
    }
    
    /* Service card */
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 12px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    /* Footer */
    .main-footer {
        padding: 30px 0 20px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .copyright {
        font-size: 13px;
        padding: 15px 0;
    }
}

/* ===== FIX FOR MOBILE MENU TOGGLE ===== */
@media (min-width: 992px) {
    /* Desktop: menü her zaman görünür */
    .main-nav {
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        overflow-y: visible !important;
    }
    
    .main-nav::before {
        display: none !important;
    }
}

