/* PetKuaför CSS Dosyası */

/* Reset ve Genel Stiller */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #34495E;
    --accent-color: #2ECC71;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --dark-gray: #666666;
    --white: #FFFFFF;
    --header-height: 70px;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 20px;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn,
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.contact-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.contact-btn i,
.whatsapp-btn i {
    font-size: 1.1rem;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    color: var(--text-color);
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 4px;
}

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Responsive Dropdown */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: 100%;
        background: rgba(74, 144, 226, 0.05);
        margin-top: 5px;
        padding: 5px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        padding: 12px 20px;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        min-width: auto;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        transform: none;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 300px;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transition: all 0.3s ease;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(74, 144, 226, 0.05);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 5px 0;
        background: transparent;
    }

    .dropdown-menu a {
        padding: 12px 25px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

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

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(26, 32, 44, 0.95);
    }

    .nav-link {
        color: var(--white);
    }

    .dropdown-menu {
        background: rgba(26, 32, 44, 0.95);
        backdrop-filter: blur(10px);
    }

    .dropdown-menu a {
        color: var(--white);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .hamburger span {
        background: var(--white);
    }

    @media (max-width: 768px) {
        .nav-links {
            background: rgba(26, 32, 44, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.05);
        }
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.03) 0%,
        rgba(46, 204, 113, 0.03) 100%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

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

.service-content {
    padding: 25px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.service-card:hover .service-content h3::after {
    width: 100px;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: auto;
    transition: var(--transition);
}

.btn-text i {
    transition: transform 0.3s ease;
}

.service-card:hover .btn-text {
    color: var(--accent-color);
}

.service-card:hover .btn-text i {
    transform: translateX(5px);
}

/* Service Card Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* Services Responsive */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
}

/* Services Dark Mode */
@media (prefers-color-scheme: dark) {
    .services {
        background: var(--secondary-color);
    }

    .service-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .service-content {
        background: transparent;
    }

    .service-content h3 {
        color: var(--white);
    }

    .service-content p {
        color: rgba(255, 255, 255, 0.7);
    }

    .service-badge {
        background: rgba(0, 0, 0, 0.6);
        color: var(--white);
    }
}

/* Service Card Loading Animation */
@keyframes serviceCardLoad {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: serviceCardLoad 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, 
        rgba(74, 144, 226, 0.1) 0%,
        rgba(46, 204, 113, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    margin-bottom: 60px;
    position: relative;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 60px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.slide {
    display: none;
    animation: fadeSlide 0.6s ease forwards;
}

.slide.active {
    display: block;
}

.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 120px;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: translateY(-50%);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-info span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Slider Navigation */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide {
    left: -30px;
}

.next-slide {
    right: -30px;
}

.prev-slide i,
.next-slide i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.prev-slide:hover i,
.next-slide:hover i {
    color: var(--white);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    width: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-slider {
        padding: 20px 40px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card::before {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    .testimonial-author {
        gap: 15px;
    }

    .testimonial-author::before {
        display: none;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .prev-slide,
    .next-slide {
        width: 45px;
        height: 45px;
    }

    .prev-slide {
        left: -10px;
    }

    .next-slide {
        right: -10px;
    }
}

/* Testimonials Dark Mode */
@media (prefers-color-scheme: dark) {
    .testimonials {
        background: linear-gradient(135deg, 
            rgba(52, 73, 94, 0.95) 0%,
            rgba(44, 62, 80, 0.95) 100%);
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
    }

    .testimonial-content p {
        color: rgba(255, 255, 255, 0.9);
    }

    .author-info span {
        color: rgba(255, 255, 255, 0.7);
    }

    .prev-slide,
    .next-slide {
        background: rgba(255, 255, 255, 0.1);
    }

    .prev-slide i,
    .next-slide i {
        color: var(--white);
    }

    .prev-slide:hover,
    .next-slide:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    }

    .dot {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(74, 144, 226, 0.1) 0%,
        rgba(46, 204, 113, 0.1) 50%,
        transparent 100%);
    pointer-events: none;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-block;
    max-width: 150px;
    transition: transform 0.3s ease;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

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

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

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Footer Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(to bottom,
            var(--secondary-color) 0%,
            rgba(26, 32, 44, 1) 100%);
    }

    .footer::before {
        opacity: 0.05;
    }

    .social-links a {
        background: rgba(255, 255, 255, 0.05);
    }

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

    .footer-column h3::after {
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 100%, 
        rgba(74, 144, 226, 0.08) 0%,
        rgba(46, 204, 113, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.faq-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.faq-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-title p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 30px;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.faq-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.faq-item:hover .faq-content h3::after {
    width: 100px;
}

.faq-content p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Dark Mode */
@media (prefers-color-scheme: dark) {
    .faq {
        background: var(--secondary-color);
    }

    .faq-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .faq-content h3 {
        color: var(--white);
    }

    .faq-content p {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-title h2 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-content h3 {
        font-size: 1.1rem;
        padding-bottom: 12px;
    }

    .faq-content p {
        font-size: 0.95rem;
    }
}

/* Animasyon Güncellemeleri */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Galeri Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

/* Özellikler Bölümü */
.features {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Özellikler Animasyonları */
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Özellikler Responsive */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Özellikler Dark Mode */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .feature-card h3 {
        color: var(--white);
    }

    .feature-card p {
        color: rgba(255, 255, 255, 0.7);
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Neden Biz Bölümü */
.why-us {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.05) 0%,
        rgba(46, 204, 113, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
}

.why-us .container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.why-us-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

.why-us-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.why-us-title:hover::after {
    width: 120px;
}

.why-us-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
    z-index: 0;
}

.why-us-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.why-us-item:hover::before {
    opacity: 0.05;
}

.why-us-item i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.why-us-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.why-us-item-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.why-us-item-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.why-us-item-content p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.why-us-stats {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--box-shadow);
}

.why-us-stat {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    min-width: 200px;
}

.why-us-stat:hover {
    transform: translateY(-5px);
}

.why-us-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.why-us-stat-label {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Neden Biz Animasyonları */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-us-item:nth-child(1) { animation: slideInLeft 0.6s ease forwards 0.2s; }
.why-us-item:nth-child(2) { animation: slideInLeft 0.6s ease forwards 0.4s; }
.why-us-item:nth-child(3) { animation: slideInLeft 0.6s ease forwards 0.6s; }

/* Neden Biz Responsive */
@media (max-width: 992px) {
    .why-us-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .why-us-content,
    .why-us-items {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }

    .why-us-title {
        font-size: 2rem;
    }

    .why-us-description {
        font-size: 1rem;
    }

    .why-us-item {
        padding: 20px;
    }

    .why-us-item i {
        font-size: 1.8rem;
    }

    .why-us-item-content h3 {
        font-size: 1.2rem;
    }

    .why-us-stats {
        padding: 20px;
        border-radius: 30px;
    }

    .why-us-stat {
        padding: 15px;
        min-width: 150px;
    }

    .why-us-stat-number {
        font-size: 2rem;
    }
}

/* Neden Biz Dark Mode */
@media (prefers-color-scheme: dark) {
    .why-us {
        background: var(--secondary-color);
    }

    .why-us-title {
        color: var(--white);
    }

    .why-us-description {
        color: rgba(255, 255, 255, 0.7);
    }

    .why-us-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .why-us-item:hover::before {
        opacity: 0.1;
    }

    .why-us-item-content h3 {
        color: var(--white);
    }

    .why-us-item-content p {
        color: rgba(255, 255, 255, 0.7);
    }

    .why-us-stats {
        background: rgba(255, 255, 255, 0.05);
    }

    .why-us-stat-label {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, 
        rgba(74, 144, 226, 0.1) 0%,
        rgba(46, 204, 113, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

.contact-info {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info > p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.03);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(74, 144, 226, 0.06);
}

.info-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

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

.info-content p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content p a:hover {
    color: var(--accent-color);
}

.contact-map {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0);
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .info-item {
        padding: 15px;
        gap: 15px;
    }

    .info-item i {
        font-size: 1.5rem;
        padding: 12px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .contact-map {
        min-height: 300px;
    }
}

/* Contact Dark Mode */
@media (prefers-color-scheme: dark) {
    .contact {
        background: linear-gradient(135deg, 
            rgba(52, 73, 94, 0.95) 0%,
            rgba(44, 62, 80, 0.95) 100%);
    }

    .contact-info {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
    }

    .contact-info h2 {
        color: var(--white);
    }

    .contact-info > p {
        color: rgba(255, 255, 255, 0.7);
    }

    .info-item {
        background: rgba(255, 255, 255, 0.05);
    }

    .info-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .info-content h3 {
        color: var(--white);
    }

    .info-content p {
        color: rgba(255, 255, 255, 0.7);
    }

    .info-content p a {
        color: var(--accent-color);
    }

    .info-content p a:hover {
        color: var(--primary-color);
    }

    .contact-map::before {
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 100%);
    }
}

/* Mega Menu Styles */
.mega-dropdown {
    position: relative;
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mega-dropdown:hover .has-dropdown i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 600px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mega-menu-item {
    position: relative;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.02);
}

.mega-menu-link:hover {
    background: rgba(74, 144, 226, 0.05);
    transform: translateX(5px);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mega-menu-link:hover .mega-menu-icon {
    transform: scale(1.1) rotate(5deg);
}

.mega-menu-content {
    flex: 1;
}

.mega-menu-content h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0 0 5px;
    font-weight: 500;
}

.mega-menu-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Mega Menu */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 10px;
        background: rgba(74, 144, 226, 0.03);
        margin-top: 10px;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-menu-link {
        padding: 12px;
    }

    .mega-menu-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .mega-menu-content h3 {
        font-size: 1rem;
    }

    .mega-menu-content p {
        font-size: 0.85rem;
    }
}

/* Dark Mode Mega Menu */
@media (prefers-color-scheme: dark) {
    .mega-menu {
        background: rgba(26, 32, 44, 0.95);
        backdrop-filter: blur(10px);
    }

    .mega-menu-link {
        background: rgba(255, 255, 255, 0.03);
    }

    .mega-menu-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .mega-menu-content h3 {
        color: var(--white);
    }

    .mega-menu-content p {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Galeri Sayfası Stilleri */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Galeri Filtreleme */
.gallery-filters {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
}

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

/* Galeri Grid */
.gallery {
    padding: 60px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    font-weight: 500;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Galeri Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Galeri */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

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

/* Dark Mode Galeri */
@media (prefers-color-scheme: dark) {
    .gallery-filters {
        background: var(--secondary-color);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .filter-btn {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .filter-btn:hover {
        background: rgba(74, 144, 226, 0.2);
    }

    .gallery {
        background: var(--secondary-color);
    }

    .gallery-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}
