/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* Header Styles */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    margin-left: 70px;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* Navigation Styles */
.nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-list li a:hover {
    color: #FFD700;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -120px;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
    padding: 120px 0 80px 0;
}

/* Hero Text */
.hero-text {
    flex: 1;
    max-width: 800px;
    position: relative;
    left: 45px;
    z-index: 2;
}

.hero-title {
    font-size: 45px;
    font-family: 'bahnschrift';
    font-weight: normal;
    color: #ffffff;
    white-space: nowrap;
}

.hero-title .highlight {
    display: block;
    font-family: 'Bebas Neue', Courier, monospace;
    font-size: 80px;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    top: -10px;
}

/* Button Styles */
.btn-discover {
    display: inline-block;
    padding: 3px 50px;
    background-color: #ffffff;
    color: #C8102E;
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-discover:hover {
    background-color: #FFD700;
    color: #C8102E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    animation: floatUpDown 3s ease-in-out infinite;
}

/* Float Up Down Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 80px;
}

/* About Text */
.about-text {
    flex: 1;
    max-width: 1100px;
    z-index: 2;
    position: relative;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1;
}

.about-description {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* About Image Card */
.about-image-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-card-inner {
    width: 100%;
    max-width: 550px;
    height: 450px;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .logo img {
        height: 60px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-list li a {
        font-size: 18px;
    }

    .hero-title {
        font-size: 38px;
        white-space: normal;
    }

    .hero-title .highlight {
        font-size: 60px;
    }

    .hero-content {
        gap: 30px;
    }

    /* About Section Tablet */
    .about-content {
        gap: 50px;
    }

    .about-title {
        font-size: 60px;
    }

    .about-description {
        font-size: 20px;
    }

    .about-card-inner {
        max-width: 450px;
        height: 380px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 70px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        margin-right: 0;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: block;
        font-size: 22px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        margin-top: -105px;
    }

    .hero-content {
        flex-direction: column;
        padding: 120px 0 40px 0;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        left: 0;
    }

    .hero-title {
        font-size: 24px;
        white-space: normal;
    }

    .hero-title .highlight {
        font-size: 42px;
        margin-top: 10px;
    }

    .btn-discover {
        padding: 12px 40px;
        font-size: 20px;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 90%;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-title {
        font-size: 50px;
        margin-bottom: 25px;
        text-align: center;
    }

    .about-description {
        font-size: 18px;
        line-height: 1.7;
        text-align: center;
    }

    .about-image-card {
        width: 100%;
    }

    .about-card-inner {
        max-width: 100%;
        height: 350px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 60px;
    }

    .hero-text {
        left: 0;
    }

    .hero-title {
        font-size: 20px;
        white-space: normal;
        letter-spacing: 1px;
    }

    .hero-title .highlight {
        font-size: 36px;
        margin-top: 8px;
    }

    .btn-discover {
        padding: 10px 35px;
        font-size: 18px;
    }

    .nav {
        width: 250px;
    }

    .nav-list li a {
        font-size: 20px;
    }

    /* About Section Small Mobile */
    .about-title {
        font-size: 38px;
        text-align: center;
    }

    .about-description {
        font-size: 16px;
        text-align: center;
    }

    .about-card-inner {
        height: 280px;
        border-radius: 30px;
    }
}

/* ========================================
   LEZZET ANLAYIŞIMIZ SECTION
   ======================================== */

.lezzet {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 50%, #8B0000 100%);
}

.lezzet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.lezzet-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(200, 16, 46, 0.9) 100%);
    z-index: 1;
}

.lezzet .container {
    position: relative;
    z-index: 2;
}

.lezzet-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.lezzet-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.lezzet-description {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
}

.lezzet-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .lezzet {
        padding: 80px 0;
    }

    .lezzet-title {
        font-size: 65px;
        margin-bottom: 40px;
    }

    .lezzet-description {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .lezzet {
        padding: 60px 0;
        min-height: 60vh;
    }

    .lezzet-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .lezzet-description {
        font-size: 19px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .lezzet {
        padding: 50px 0;
    }

    .lezzet-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .lezzet-description {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

/* ========================================
   MİSYON & VİZYON SECTION
   ======================================== */

.misyon-vizyon {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background-color: #f5f5f5;
}

.misyon-vizyon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.misyon-vizyon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    z-index: 1;
}

.misyon-vizyon .container {
    position: relative;
    z-index: 2;
}

.misyon-vizyon-content {
    max-width: 1200px;
    margin: 0 auto;
}

.misyon-vizyon-main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #C8102E;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Misyon Box */
.misyon-box {
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 100%);
    padding: 50px 60px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    border: 3px solid #FFD700;
}

.misyon-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.misyon-description {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.9;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.misyon-description:last-child {
    margin-bottom: 0;
}

/* Vizyon Box */
.vizyon-box {
    background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
    padding: 50px 60px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.3);
    border: 3px solid #FFD700;
}

.vizyon-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.vizyon-description {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.9;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.vizyon-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .misyon-vizyon {
        padding: 80px 0;
    }

    .misyon-vizyon-main-title {
        font-size: 65px;
        margin-bottom: 50px;
    }

    .misyon-box,
    .vizyon-box {
        padding: 40px 50px;
        border-radius: 25px;
    }

    .misyon-title,
    .vizyon-title {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .misyon-description,
    .vizyon-description {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .misyon-vizyon {
        padding: 60px 0;
        min-height: 70vh;
    }

    .misyon-vizyon-main-title {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .misyon-box,
    .vizyon-box {
        padding: 35px 30px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .misyon-title,
    .vizyon-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: center;
    }

    .misyon-description,
    .vizyon-description {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: center;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .misyon-vizyon {
        padding: 50px 0;
    }

    .misyon-vizyon-main-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .misyon-box,
    .vizyon-box {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 25px;
        border-width: 2px;
    }

    .misyon-title,
    .vizyon-title {
        font-size: 30px;
        margin-bottom: 18px;
        text-align: center;
    }

    .misyon-description,
    .vizyon-description {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* ========================================
   BLOG SECTION
   ======================================== */

.blog {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 50%, #8B0000 100%);
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.blog-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(200, 16, 46, 0.8) 100%);
    z-index: 1;
}

.blog .container {
    position: relative;
    z-index: 2;
}

.blog-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Blog Slider Wrapper */
.blog-slider-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 30px;
    width: 100%;
}

/* Blog Slider */
.blog-slider {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.blog-cards-container {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    width: fit-content;
}

/* Blog Card */
.blog-card {
    flex: 0 0 auto;
    width: 320px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background-color: #C8102E;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 120px;
}

.blog-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #C8102E;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #C8102E;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #8B0000;
}

.blog-read-more-small {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: #C8102E;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more-small:hover {
    color: #8B0000;
    text-decoration: underline;
}

/* Navigation Buttons */
.blog-nav-btn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.blog-nav-btn:hover {
    background-color: #FFD700;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.blog-nav-btn:active {
    transform: scale(0.95);
}

.blog-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-nav-btn svg {
    width: 30px;
    height: 30px;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .blog-title {
        font-size: 60px;
        margin-bottom: 50px;
    }

    .blog-card {
        width: 280px;
    }

    .blog-image {
        height: 300px;
    }

    .blog-card-title {
        font-size: 22px;
    }

    .blog-read-more {
        font-size: 24px;
    }

    .blog-read-more-small {
        font-size: 15px;
    }

    .blog-nav-btn {
        width: 50px;
        height: 50px;
    }

    .blog-nav-btn svg {
        width: 25px;
        height: 25px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .blog {
        padding: 60px 0;
        overflow: hidden;
    }

    .blog .container {
        overflow: hidden;
        padding: 0 15px;
    }

    .blog-title {
        font-size: 45px;
        margin-bottom: 30px;
        text-align: center;
    }

    .blog-slider-wrapper {
        gap: 10px;
        overflow: hidden;
    }

    .blog-slider {
        overflow: hidden;
    }

    .blog-card {
        width: 280px;
    }

    .blog-image {
        height: 300px;
    }

    .blog-content {
        padding: 15px;
        min-height: 110px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .blog-read-more {
        font-size: 22px;
    }

    .blog-read-more-small {
        font-size: 14px;
    }

    .blog-nav-btn {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .blog-nav-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .blog {
        overflow: hidden;
    }

    .blog .container {
        padding: 0 10px;
        overflow: hidden;
    }

    .blog-title {
        font-size: 36px;
        margin-bottom: 25px;
        text-align: center;
    }

    .blog-slider-wrapper {
        gap: 8px;
        overflow: hidden;
    }

    .blog-slider {
        overflow: hidden;
    }

    .blog-card {
        width: 260px;
    }

    .blog-image {
        height: 280px;
    }

    .blog-content {
        padding: 12px;
        min-height: 100px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-read-more {
        font-size: 20px;
    }

    .blog-read-more-small {
        font-size: 13px;
    }

    .blog-nav-btn {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .blog-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background-color: #f5f5f5;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #C8102E;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gallery Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 40px;
    width: 100%;
}

/* Gallery Slider */
.gallery-slider {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.gallery-items-container {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 60px 0;
    width: fit-content;
}

/* Gallery Item */
.gallery-item {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

/* Gallery Card */
.gallery-card {
    width: 350px;
    height: 420px;
    background-color: #C8102E;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Center item scaling */
.gallery-item.center .gallery-card {
    transform: scale(1.2);
    box-shadow: 0 25px 60px rgba(200, 16, 46, 0.4);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item.center .gallery-card:hover {
    transform: scale(1.2) translateY(-10px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Navigation Buttons */
.gallery-nav-btn {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #C8102E;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
    z-index: 20;
}

.gallery-nav-btn:hover {
    background-color: #8B0000;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.5);
}

.gallery-nav-btn:active {
    transform: scale(1);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-nav-btn svg {
    width: 35px;
    height: 35px;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .gallery-title {
        font-size: 60px;
        margin-bottom: 60px;
    }

    .gallery-card {
        width: 280px;
        height: 350px;
        border-radius: 30px;
    }

    .gallery-item.center {
        transform: scale(1.15);
    }

    .gallery-nav-btn {
        width: 60px;
        height: 60px;
    }

    .gallery-nav-btn svg {
        width: 30px;
        height: 30px;
    }

    .gallery-slider-wrapper {
        gap: 30px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .gallery {
        padding: 60px 0;
        overflow: hidden;
    }

    .gallery .container {
        overflow: hidden;
        padding: 0 15px;
    }

    .gallery-title {
        font-size: 45px;
        margin-bottom: 30px;
        text-align: center;
    }

    .gallery-slider-wrapper {
        gap: 12px;
        overflow: hidden;
        justify-content: center;
    }

    .gallery-slider {
        overflow: visible;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .gallery-card {
        width: 280px;
        height: 350px;
        border-radius: 25px;
    }

    .gallery-item.center {
        display: block;
    }

    .gallery-item.center .gallery-card {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(200, 16, 46, 0.5);
    }

    .gallery-item:not(.center) {
        display: none;
    }

    .gallery-item.side {
        display: none;
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .gallery-nav-btn svg {
        width: 28px;
        height: 28px;
    }

    .gallery-items-container {
        gap: 0;
        padding: 40px 0;
        justify-content: center;
    }

    .gallery-item {
        margin: 0;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .gallery {
        overflow: hidden;
        padding: 50px 0;
    }

    .gallery .container {
        padding: 0 10px;
        overflow: hidden;
    }

    .gallery-title {
        font-size: 36px;
        margin-bottom: 25px;
        text-align: center;
    }

    .gallery-slider-wrapper {
        gap: 10px;
        overflow: hidden;
        justify-content: center;
    }

    .gallery-slider {
        overflow: visible;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .gallery-card {
        width: 260px;
        height: 320px;
        border-radius: 20px;
    }

    .gallery-item.center {
        display: block;
    }

    .gallery-item.center .gallery-card {
        transform: scale(1);
        box-shadow: 0 18px 45px rgba(200, 16, 46, 0.4);
    }

    .gallery-item:not(.center) {
        display: none;
    }

    .gallery-item.side {
        display: none;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        border-width: 2px;
        flex-shrink: 0;
    }

    .gallery-nav-btn svg {
        width: 24px;
        height: 24px;
    }

    .gallery-items-container {
        gap: 0;
        padding: 30px 0;
        justify-content: center;
    }

    .gallery-item {
        margin: 0;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/contact-us_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.contact .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #C8102E;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    flex: 1;
    max-width: 850px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: #C8102E;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background-color: #8B0000;
    border: none;
    border-radius: 5px;
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #C8102E;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Input validation styles */
.form-group input.error,
.form-group textarea.error {
    border: 2px solid #ff4444;
    animation: shake 0.3s;
}

.form-group input.success,
.form-group textarea.success {
    border: 2px solid #4CAF50;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Submit Button */
.btn-submit {
    padding: 15px 60px;
    background-color: #C8102E;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    align-self: flex-start;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #666;
    cursor: not-allowed;
    transform: none;
}

/* Contact Map Wrapper */
.contact-map-wrapper {
    flex: 0 0 420px;
    display: flex;
    align-items: flex-start;
}

.contact-map {
    width: 100%;
    height: 460px;
    background-color: #8B0000;
    border: 8px solid #8B0000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    display: block;
}

/* Form Success/Error Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    text-align: center;
}

.form-message.success {
    background-color: #4CAF50;
    color: #ffffff;
}

.form-message.error {
    background-color: #ff4444;
    color: #ffffff;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .contact-title {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-map-wrapper {
        flex: 0 0 350px;
    }

    .contact-map {
        height: 400px;
    }

    .form-group label {
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 18px;
        font-size: 15px;
    }

    .btn-submit {
        font-size: 28px;
        padding: 12px 50px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-map-wrapper {
        width: 100%;
        flex: 1;
    }

    .contact-map {
        height: 350px;
        border-width: 6px;
    }

    .form-group label {
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .btn-submit {
        width: 100%;
        font-size: 24px;
        padding: 12px 40px;
        display: block;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 36px;
        margin-bottom: 25px;
        text-align: center;
    }

    .contact-map {
        height: 280px;
        border-width: 5px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit {
        font-size: 22px;
        padding: 10px 30px;
        display: block;
        margin: 0 auto;
    }
}

/* ========================================
   ESKİŞEHİR LOKMA HİZMETİ SECTION (SEO)
   ======================================== */

.eskisehir-lokma {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 50%, #8B0000 100%);
}

.eskisehir-lokma::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, 
        #8B6914 0%, 
        #B8860B 15%, 
        #D4AF37 30%, 
        #FFD700 50%, 
        #D4AF37 70%, 
        #B8860B 85%, 
        #8B6914 100%);
    z-index: 10;
}

.eskisehir-lokma-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(200, 16, 46, 0.9) 100%);
    z-index: 1;
}

.eskisehir-lokma .container {
    position: relative;
    z-index: 2;
}

.eskisehir-lokma-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.eskisehir-lokma-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.eskisehir-lokma-section {
    margin-bottom: 50px;
}

.eskisehir-lokma-section:last-child {
    margin-bottom: 0;
}

.eskisehir-lokma-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.eskisehir-lokma-text {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
}

.eskisehir-lokma-text:last-child {
    margin-bottom: 0;
}

.eskisehir-lokma-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
}

.eskisehir-lokma-list li {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 0;
    text-align: center;
}

.eskisehir-lokma-highlight {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.eskisehir-lokma-highlight .eskisehir-lokma-subtitle {
    font-size: 48px;
    margin-bottom: 30px;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .eskisehir-lokma {
        padding: 80px 0;
    }

    .eskisehir-lokma-title {
        font-size: 60px;
        margin-bottom: 50px;
    }

    .eskisehir-lokma-subtitle {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .eskisehir-lokma-text,
    .eskisehir-lokma-list li {
        font-size: 20px;
        line-height: 1.8;
    }

    .eskisehir-lokma-highlight {
        padding: 30px;
        margin: 30px 0;
    }

    .eskisehir-lokma-highlight .eskisehir-lokma-subtitle {
        font-size: 40px;
    }
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .eskisehir-lokma {
        padding: 60px 0;
        min-height: auto;
    }

    .eskisehir-lokma-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .eskisehir-lokma-subtitle {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .eskisehir-lokma-text,
    .eskisehir-lokma-list li {
        font-size: 18px;
        line-height: 1.7;
    }

    .eskisehir-lokma-section {
        margin-bottom: 40px;
    }

    .eskisehir-lokma-highlight {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .eskisehir-lokma-highlight .eskisehir-lokma-subtitle {
        font-size: 32px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .eskisehir-lokma {
        padding: 50px 0;
    }

    .eskisehir-lokma-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .eskisehir-lokma-subtitle {
        font-size: 24px;
    }

    .eskisehir-lokma-text,
    .eskisehir-lokma-list li {
        font-size: 16px;
    }

    .eskisehir-lokma-highlight {
        padding: 20px 15px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer {
    position: relative;
    padding: 80px 0 40px 0;
    background-color: #8B0000;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/footer_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.footer-social a:hover {
    color: #FFD700;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FFD700;
}

.footer-contact-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #FFD700;
}

.footer-contact-list li span {
    line-height: 1.5;
}

/* Footer Copyright */
.footer-copyright {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright p {
    font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-copyright a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.footer-copyright a img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-copyright a:hover img {
    filter: brightness(1) invert(0);
    transform: scale(1.1) translateY(-2px);
}

.footer-copyright a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-copyright a:hover::after {
    width: 100%;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .footer {
        padding: 60px 0 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-heading {
        font-size: 28px;
    }

    .footer-links li a,
    .footer-contact-list li {
        font-size: 16px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-social svg {
        width: 24px;
        height: 24px;
    }

    .footer-copyright {
        margin-top: 50px;
        padding-top: 25px;
    }

    .footer-copyright p {
        font-size: 15px;
    }

    .footer-copyright a img {
        height: 22px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo-section {
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        width: 120px;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-heading {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
        align-items: center;
    }

    .footer-links li a,
    .footer-contact-list li {
        font-size: 16px;
    }

    .footer-contact-list {
        gap: 15px;
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-copyright {
        margin-top: 40px;
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 14px;
    }

    .footer-copyright a img {
        height: 20px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 0 25px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-heading {
        font-size: 24px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links li a,
    .footer-contact-list li {
        font-size: 15px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-social svg {
        width: 22px;
        height: 22px;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .footer-copyright {
        margin-top: 35px;
        padding-top: 18px;
    }

    .footer-copyright p {
        font-size: 13px;
        gap: 6px;
    }

    .footer-copyright a img {
        height: 18px;
    }
}

