* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier Prime', monospace;
    font-weight: 400;
}

:root {
    --primary-color: #0f4c75;
    --secondary-color: #3282b8;
    --accent-color: #bbe1fa;
    --text-color: #1b262c;
    --light-color: #fff;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .hamburger-btn i {
    color: var(--primary-color);
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-right: 5%;
}

.nav-link {
    margin: 0 0.5rem;
    text-decoration: none;
    color: var(--light-color);
    font-weight: 700;
    font-size: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-divider {
    color: var(--light-color);
    margin: 0 0.2rem;
    font-weight: 300;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.hamburger-btn i {
    font-size: 1.5rem;
    color: inherit;
}

/* Pop-up Menu Styles */
.popup-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-menu.active {
    display: flex;
}

.popup-content {
    background-color: var(--light-color);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.menu-item {
    margin: 0.5rem 0;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s;
}

.menu-item:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    background-color: transparent;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-flex;
}

.social-link {
    margin: 0 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(15, 76, 117, 0.4);
    color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Slider Styles */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s ease;
    transform: scale(1.05);
    z-index: 1;
    will-change: transform, opacity;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide.prev {
    transform: scale(0.95);
    opacity: 0;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-counter {
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: white;
    font-size: 1.2rem;
    z-index: 15;
    font-weight: 700;
}

.slide-separator {
    opacity: 0.7;
}

.slider-social {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    gap: 15px;
    z-index: 15;
}

.slider-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slider-social .social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.slider-social .social-icon:hover img {
    transform: scale(1.3);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    display: flex;
    flex-direction: row;
    height: 130px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-image {
    width: 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card-content {
    width: 60%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.card-content h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-content p {
    color: var(--light-color);
    font-size: 0.9rem;
}

/* Info Section Styles */
.info-section {
    padding: 8rem 0;
    background-color: var(--light-color);
    min-height: 600px;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
}

.info-text {
    flex: 1;
    padding: 2rem;
}

.info-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.info-text p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Footer Styles */
.footer {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 22, 48, 0.95);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links-column {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links-section {
    margin-bottom: 10px;
}

.footer-contact-column {
    flex: 0 0 70%;
}

.footer-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact-left, 
.footer-contact-right {
    flex: 1;
    min-width: 250px;
}

.footer-column {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    padding: 0 0.5rem;
}

.footer-column h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-links li i {
    margin-right: 0.5rem;
    color: var(--light-color);
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-column p {
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: inline-flex;
    background-color: transparent;
    padding: 12px 30px;
    border-radius: 30px;
    position: relative;
    top: -15px;
    box-shadow: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Footer ikonları için stil */
.footer-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    display: inline-block;
    width: 25px;
    text-align: center;
    vertical-align: top;
    margin-top: 3px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-content {
    flex: 1;
}

/* İletişim sayfasındaki ikonlar için stil */
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.contact-info-container {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(50% - 1rem);
    min-width: 250px;
    max-width: 350px;
    min-height: 350px;
}

.contact-info-card.center-content {
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--light-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 320px;
        height: 110px;
    }
    
    .nav-links {
        margin-right: 0;
    }
    
    .nav-link {
        display: none !important;
    }
    
    .language-flags {
        margin-right: 15px;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    .contact-info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-card {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    /* Mobil Hero Section Ayarları */
    .slider-navigation {
        top: auto;
        bottom: 20%;
        transform: none;
        padding: 0 20px;
    }
    
    .slider-counter {
        right: 20px;
        bottom: 20px;
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-social {
        display: none;
    }
    
    .slider-social .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .slider-social .social-icon img {
        width: 16px;
        height: 16px;
    }
}

/* Vurgu stilleri */
.contact-info-card .highlight {
    color: var(--light-color);
    font-weight: bold;
    opacity: 0.9;
}

.contact-info-card .phone-number {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-info-card .person-in-charge {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 5px;
    line-height: 1.4;
}

.contact-info-card .email-address {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Faaliyet Alanları Sayfası Yeni Stiller */
.faaliyet-wrapper {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faaliyet-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.faaliyet-header h2 {
    color: var(--light-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.faaliyet-header p {
    color: var(--light-color);
    font-size: 1.3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.faaliyet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.faaliyet-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faaliyet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faaliyet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faaliyet-item:hover img {
    transform: scale(1.05);
}

.faaliyet-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.faaliyet-item-overlay h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Responsive için medya sorguları */
@media (max-width: 992px) {
    .faaliyet-header h2 {
        font-size: 2.5rem;
    }
    
    .faaliyet-header p {
        font-size: 1.1rem;
    }
    
    .faaliyet-item {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .faaliyet-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }
    
    .faaliyet-header h2 {
        font-size: 2rem;
    }
    
    .faaliyet-header p {
        font-size: 1rem;
    }
    
    .faaliyet-item {
        height: 220px;
    }
    
    .faaliyet-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .faaliyet-item {
        height: 200px;
    }
    
    .faaliyet-header h2 {
        font-size: 1.8rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.hero-section.about-section {
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 40px;
}

.about-wrapper {    
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-gallery-full {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow: hidden;
}

.about-gallery-full .gallery-row {
    display: flex;
    gap: 15px;
    height: 220px;
}

.about-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.about-header h2 {
    color: var(--light-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-header p {
    color: var(--light-color);
    font-size: 1.3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-grid-item:hover img {
    transform: scale(1.05);
}

/* Responsive için medya sorguları */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-grid-item {
        height: 220px;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-grid-item {
        height: 200px;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-wrapper {
        gap: 2rem;
    }
}

/* Language Flags Styles */
.language-flags {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.flag-link {
    margin: 0 3px;
    transition: transform 0.2s ease;
}

.flag-link:hover {
    transform: scale(1.1);
}

.flag-img {
    width: 25px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.popup-language-flags {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-language-flags .flag-link {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.popup-language-flags .flag-img {
    margin-right: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }
    
    .card {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-links {
        margin-right: 0;
    }
    
    .nav-link {
        margin: 0 0.3rem;
    }
    
    .nav-divider {
        margin: 0 0.1rem;
    }
    
    .nav-divider:nth-child(2),
    .nav-link:last-child {
        display: none;
    }
    
    .info-content {
        flex-direction: column;
    }
    
    .info-text, .info-image {
        width: 100%;
    }
    
    .info-text {
        margin-bottom: 2rem;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .hamburger-btn {
        display: block;
    }
    
    /* Hide language flags in navbar on mobile */
    .language-flags {
        display: none;
    }
    
    .nav-links {
        display: flex;
        justify-content: flex-end;
    }
    
    /* Mobil Hero Section Ayarları */
    .slider-navigation {
        top: auto;
        bottom: 20%;
        transform: none;
        padding: 0 20px;
    }
    
    .slider-counter {
        right: 20px;
        bottom: 20px;
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-social {
        display: none;
    }
    
    .slider-social .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .slider-social .social-icon img {
        width: 16px;
        height: 16px;
    }
    
    /* Genel mobil görünüm düzeltmeleri */
    .hero-section, .about-section {
        height: auto;
        min-height: 100vh;
        padding-top: 90px;
        padding-bottom: 2rem;
    }
    
    .service-content {
        padding-bottom: 3rem;
    }
    
    .service-image {
        height: 250px;
        max-height: 250px;
        aspect-ratio: 16/9;
        margin-bottom: 2rem;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-text {
        padding: 1.5rem 0.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer öncesi boşluk */
    .footer {
        margin-top: 0;
    }
    
    .about-section {
        padding-top: 90px;
    }
}

/* About Section Styles - Vertical Layout */
.about-content-vertical {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0;
    gap: 3rem;
}

.about-text-full {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text-full h2 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-text-full p {
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 100%;
}

.about-gallery-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-gallery-full .gallery-row {
    display: flex;
    gap: 15px;
    height: 250px;
    width: 100%;
}

.about-gallery-full .gallery-item {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.about-gallery-full .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-gallery-full .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery-full .gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive styles for vertical layout */
@media (max-width: 992px) {
    .about-content-vertical {
        padding: 1rem 0 3rem;
    }
    
    .about-text-full {
        width: 100%;
        padding: 1rem;
    }
    
    .about-gallery-full .gallery-row {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .about-gallery-full .gallery-row {
        height: auto;
        flex-direction: column;
    }
    
    .about-gallery-full .gallery-item {
        height: 200px;
        width: 100%;
    }
    
    .about-text-full {
        padding: 1rem 0;
    }
    
    .about-text-full h2 {
        font-size: 2rem;
    }
    
    .about-text-full p {
        font-size: 1rem;
    }
}

.footer-contact-content {
    flex: 1;
}

.footer-contact-content p {
    margin-bottom: 4px;
}

.footer-highlight {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px !important;
}

.port-info-link {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(187, 225, 250, 0.1);
    transition: all 0.3s ease;
}

.port-info-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.port-info-link:hover {
    background-color: rgba(187, 225, 250, 0.2);
    transform: translateY(-2px);
}

.featured-cards-group {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.featured-cards-group.active {
    opacity: 1;
    visibility: visible;
}

.featured-card {
    flex: 1;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    opacity: 0.3;
    z-index: 0;
}

.featured-card:hover .featured-card-bg {
    transform: scale(1.1);
    opacity: 0.4;
}

.featured-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    text-align: center;
}

.featured-card-content h3 {
    color: var(--light-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

.featured-card-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.featured-card-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Slider Navigation Buttons */
.slider-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 15;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .featured-cards-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        top: 40%;
    }
    
    .featured-card {
        width: 85%;
        max-width: 300px;
        height: 160px;
    }
    
    .featured-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        max-width: 95%;
    }
    
    .featured-card-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .slider-navigation {
        top: auto;
        bottom: 15%;
        transform: none;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-counter {
        right: 15px;
        bottom: 15px;
        font-size: 0.9rem;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 4px 8px;
        border-radius: 15px;
    }
    
    .slider-social {
        display: none;
    }
    
    .slider-social .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .slider-social .social-icon img {
        width: 16px;
        height: 16px;
    }
}

/* Genel Türkçe sayfaları için düzeltmeler */

/* Sayfalar için section düzeltmesi */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* About section düzeltmesi */
.about-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-gallery-item {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 220px;
    margin-bottom: 15px;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-gallery-item:hover img {
    transform: scale(1.05);
}

/* Faaliyet sayfası düzeltmesi */
.activities-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.activities-section .container {
    position: relative;
    z-index: 2;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 40px;
}

.activity-card {
    height: 300px;
    perspective: 1000px;
}

.activity-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.activity-card:hover .activity-card-inner {
    transform: rotateY(180deg);
}

.activity-card-front, .activity-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.activity-card-front {
    background-color: var(--secondary-color);
}

.activity-card-back {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity-card-image {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
}

.activity-card-title {
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(15, 76, 117, 0.9);
}

.activity-card-title h3 {
    color: var(--light-color);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.activity-card-back h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.activity-card-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.activity-card-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-end;
}

.activity-card-btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

/* Galeri sayfası düzeltmesi */
.gallery-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--accent-color);
    padding: 8px 20px;
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--light-color);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* İletişim sayfası düzeltmesi */
.contact-section {
    padding-top: 160px;
    padding-bottom: 60px;
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--light-color);
    font-size: 1.1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.contact-details {
    padding: 15px;
}

.contact-details h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.phone-number {
    color: var(--light-color);
    font-weight: 600;
}

.person-in-charge {
    color: var(--light-color);
    font-style: italic;
    margin-top: 10px;
}

.email-address {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-container h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: var(--light-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.contact-form .submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .activity-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .activity-card {
        height: 270px;
    }
    
    .nav-link {
        color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .activity-cards {
        grid-template-columns: 1fr;
    }
}

/* Navbar renk düzeltmesi */
.navbar.scrolled .nav-link,
.navbar.scrolled .hamburger-btn i {
    color: var(--primary-color);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .hamburger-btn i {
    color: #ffffff !important;
}

/* Faaliyet Sayfaları için Service Content Stili */
.about-content.service-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
    padding: 1.5rem;
}

.about-text h2 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.service-image {
    flex: 1;
    max-width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

@media (max-width: 992px) {
    .about-content.service-content {
        padding: 2rem 1.5rem;
    }
    
    .service-image {
        max-width: 400px;
        height: 400px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-content.service-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text {
        order: 1;
        width: 100%;
        padding: 1rem 0.5rem;
    }
    
    .service-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin-top: 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
}

/* Dil bayrakları için media query düzeltmesi */
@media (max-width: 768px) {
    .language-flags {
        display: none !important;
    }
    
    .popup-language-flags {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .language-flags {
        display: flex !important;
    }
}

/* Logo Slider Styles */
.logo-slider {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    padding: 15px;
    overflow: visible;
    border: none;
}

.logo-slide {
    position: absolute;
    width: 500px;
    height: 400px;
    transition: transform 0 ease-out;
}

.logo-slide.active {
    opacity: 1;
    /* animation: logo-pulse 3s infinite ease-in-out; */
}

@keyframes logo-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.logo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.5));
    opacity: 0.3 !important;
    animation: none !important;
}

@media (max-width: 992px) {
    .logo-slider {
        width: 400px;
        height: 400px;
    }
    
    .logo-slide {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .logo-slider {
        width: 300px;
        height: 300px;
    }
    
    .logo-slide {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .logo-slider {
        width: 200px;
        height: 200px;
    }
    
    .logo-slide {
        width: 160px;
        height: 160px;
    }
}

/* Mobil uyumluluk */
@media (max-width: 992px) {
    .footer-links-column,
    .footer-contact-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-contact-grid {
        flex-direction: column;
    }
    
    .footer-contact-left, 
    .footer-contact-right {
        width: 100%;
    }
}

/* Facility Info Card Grid ve Kartları */
.facility-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin: 2rem 0 3rem 0;
}

.facility-card {
    background: rgba(15, 76, 117, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    padding: 1.2rem 1rem 1.2rem 1rem;
    min-width: 200px;
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.facility-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.facility-card-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.facility-card-title {
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.facility-card-info {
    color: #eaf6fb;
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
    text-align: center;
    word-break: break-word;
}

.facility-title {
    color: var(--light-color);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .facility-card-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .facility-card {
        min-width: 0;
        max-width: 98vw;
        padding: 1rem 0.5rem;
    }
}

/* Navigation Styles */
.nav-links .nav-link,
.nav-links .hamburger-btn i {
    color: inherit;
} 