/* Hero Section — full-bleed project slider */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0) 32%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.45) 0%, rgba(2, 6, 23, 0) 22%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0) 20%),
        linear-gradient(270deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0) 20%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Slider Controls */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 4;
    transition: background 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-nav-btn.prev {
    left: 24px;
}

.hero-nav-btn.next {
    right: 24px;
}

.hero-project-card {
    position: absolute;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    border: none;
    border-radius: 12px;
    padding: 0.55rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    text-align: center;
    max-width: min(90%, 360px);
    transition: transform 0.3s ease;
}

.hero-project-card:hover {
    transform: translateX(-50%) translateY(-3px);
}

.hero-project-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    line-height: 1.25;
}

.hero-project-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    /* Saydam zemin + backdrop-filter: arkadaki içerik bulanıklaşır, yazılar net kalır */
    background-color: rgba(142, 171, 201, 0.35);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* backdrop-filter desteklemeyen tarayıcılarda okunabilirlik için opak zemine dön */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.94);
    }
}

/* Nav links turn dark when scrolled */
.navbar.scrolled .nav-links a {
    color: var(--color-primary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-accent-hover);
}

.navbar.scrolled .nav-links a.nav-active {
    color: var(--color-accent);
}

.navbar.scrolled .nav-links a.nav-active::after {
    background: var(--color-accent);
}

.navbar.scrolled .mobile-toggle {
    color: var(--color-primary);
}

.navbar.scrolled .lang-toggle {
    border-color: rgba(15, 23, 42, 0.2);
    color: var(--color-primary);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo img {
    height: 140px;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    color: white;
}

.nav-links a {
    color: white;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.nav-links a.nav-active {
    color: white;
    font-weight: 600;
    position: relative;
}

.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent-hover);
    border-radius: 2px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Language Toggle */
.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    margin-left: 1rem;
}

.lang-toggle:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

/* About Section */
.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.stats {
    margin-top: var(--spacing-md);
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
}

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

.glass-effect {
    background: var(--color-bg-light);
    border: 1px solid var(--color-glass-border);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--color-primary);
}

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

/* Activities / Service Cards */
.bg-darker {
    /* Yarı saydam: alttaki arka plan dokusu görünsün */
    background-color: rgba(241, 245, 249, 0.72);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    color: var(--color-primary);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px -8px rgba(36, 63, 139, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(36, 63, 139, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

/* Project Carousel */
.project-carousel {
    position: relative;
    overflow: hidden;
}

/* Project Cards */
.project-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--color-bg-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-glass-border);
}

.project-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 63, 139, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.project-image .overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0);
    transition: var(--transition-fast);
}

.project-card:hover .project-image .overlay {
    opacity: 1;
}

.project-card:hover .project-image .overlay i {
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(36, 63, 139, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.project-info {
    padding: 1.25rem 1.5rem 1.5rem;
    height: 90px;
    overflow: hidden;
}

.project-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.project-info span {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Contact */
.contact-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info h4 {
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.contact-info>h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.contact-info>p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--color-bg-light);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    border-color: rgba(36, 63, 139, 0.3);
    box-shadow: 0 4px 20px rgba(36, 63, 139, 0.1);
}

.info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(36, 63, 139, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon i {
    font-size: 1.1rem;
    color: var(--color-accent);
}

.info-item-text h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
}

.info-item-text p {
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-item {
    margin-bottom: 1rem;
}

#contact-map {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: 1px solid var(--color-glass-border);
    overflow: hidden;
    z-index: 1;
}

.map-address {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.map-address i {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.contact-form {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-secondary);
    color: var(--color-primary);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-bg-light);
    box-shadow: 0 0 0 3px rgba(36, 63, 139, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(100, 116, 139, 0.5);
}

.bg-accent {
    background-color: var(--color-accent);
}

.text-dark {
    color: white;
}

.text-dark h2 {
    color: white;
}

.flex-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.catalog-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

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

    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }

    .section-header.flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .logo img {
        height: 90px;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--color-secondary);
        gap: 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .about-cards {
        display: none;
    }

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

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

    .project-filters {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .modal-content {
        width: 95%;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .modal-body h2 {
        font-size: 1.2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 480px) {
    .project-card {
        flex: 0 0 calc(100% - 0rem);
    }

    .project-image {
        height: 220px;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .spec-label {
        min-width: unset;
    }
}

/* Project Filters */
.project-filters {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-text-muted);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.filter-btn:hover:not(.active) {
    background: var(--color-accent-hover);
    color: white;
    border-color: var(--color-accent-hover);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background-color: var(--color-bg-light);
    width: 90%;
    max-width: 800px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-glass-border);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: white;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.close-modal:hover {
    background: var(--color-accent);
}

.modal-header-image {
    position: relative;
    width: 100%;
    height: 55vh;
    max-height: 550px;
    flex-shrink: 0;
    margin-top: 0.5rem;
    background: #0f172a;
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
}

.modal-body h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.modal-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--color-secondary);
    padding-top: 1rem;
    margin-top: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 0.5rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.spec-label {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.spec-value {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: right;
    flex: 1;
}

@media (max-width: 600px) {
    .spec-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .spec-value {
        text-align: left;
    }
}

/* Mobile modal close button */
.close-modal-bottom {
    display: none;
}

@media (max-width: 768px) {
    .close-modal-bottom {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        /* Overrides the absolute positioning inherited from .close-modal */
        position: static;
        width: auto;
        height: auto;
        margin-top: 0.75rem;
        padding: 0.6rem 1.25rem;
        background: var(--color-accent);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 600;
        font-family: var(--font-body);
        cursor: pointer;
        letter-spacing: 0.5px;
    }
}

/* Carousel Styles */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Project photos range from 0.47 to 2.14 aspect ratio. Cropping to fill would
   slice most of a portrait shot out of frame, so each photo is shown whole and
   the leftover space is filled with a blurred copy of itself instead of bars. */
.modal-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.modal-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.6);
    /* scaled up so the blur doesn't bleed transparent edges into the frame */
    transform: scale(1.2);
}

.modal-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slider-nav {
    position: static;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--color-accent);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(36, 63, 139, 0.4);
}

/* Nav Buttons */
.project-nav {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    background: var(--color-bg-light);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 16px -4px rgba(36, 63, 139, 0.4);
}

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

@media (max-width: 768px) {
    .logo img {
        height: 72px;
    }

    .hero-nav-btn {
        display: none;
    }

    .hero-project-card {
        bottom: 46px;
        padding: 0.5rem 1rem;
        max-width: 88%;
    }

    .hero-project-title {
        font-size: 0.82rem;
    }

    .hero-project-subtitle {
        font-size: 0.7rem;
    }

    .hero-dots {
        bottom: 16px;
    }
}

/* Footer */
footer {
    padding: 2rem 0;
    /* Yarı saydam: alttaki arka plan dokusu görünsün */
    background: rgba(255, 255, 255, 0.72);
    border-top: 1px solid var(--color-secondary);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 0;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 16px -4px rgba(36, 63, 139, 0.4);
}