:root {
    --bg-cream: #ffffff; 
    --text-dark: #212529;
    --text-light: #6c757d;
    --gold-accent: #c4a77d;
    --gold-accent2: #dc3545;
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --smooth-ease: cubic-bezier(0.4, 0.0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    padding-top: 140px; 
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    background-image: url("https://www.tarimorman.gov.tr/_catalogs/masterpage/tob/images/bnnr2.svg");
    background-repeat: no-repeat;
    background-position: center top; 
    background-size: cover; 
    will-change: transform; 
    pointer-events: none;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { display: block; width: 100%; height: auto; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.main-header {
    position: absolute; top: 0; left: 0; width: 100%;
    background-color: #fcfbf8; 
    background-image: url("https://www.tarimorman.gov.tr/_catalogs/masterpage/tob/images/banner3.svg") !important;
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover; 
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 101;
    will-change: transform;
}

.main-header .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 60px;
}

.header-top-flex {
    display: flex; align-items: center; width: 100%; justify-content: space-between; 
}

.header-brand {
    display: flex; align-items: center; gap: 15px; margin-right: auto; 
}

.ministry-logo { height: 90px; width: auto; }

.header-text h1 {
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    color: var(--text-dark); margin: 0; line-height: 1.2;
}
.header-text h2 {
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    color: var(--text-light); margin: 0; line-height: 1.2;
}

.header-right-elements {
    display: flex; align-items: center; gap: 20px;
}
.header-right-elements img { height: 50px; width: auto; margin: 0; }

.navbar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    z-index: 10000;
    transition: background-color 0.3s ease, 
                backdrop-filter 0.3s ease, 
                box-shadow 0.3s ease,
                padding 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    border-top: none;
    background: rgb(255 255 255 / 88%);
    padding: 15px 0;
    border-bottom: 1px solid rgba(196, 167, 125, 0.5);
    animation: slideDown 0.4s ease forwards;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
.bilgilendirme {
    color: var(--gold-accent2);
    max-width: 60%;
}

.nav-flex { display: flex; justify-content: center; align-items: center; position: relative; }

.logo.mobile-only {
    display: none; 
    position: absolute; 
    left: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 1002;
}

.logo.mobile-only img {
    height: 50px; 
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.navbar.scrolled .logo.mobile-only { display: block; }
.navbar.scrolled .nav-flex { justify-content: flex-end; }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links > li { position: relative; } 

.nav-links a { 
    font-size: 0.85rem; letter-spacing: 0.5px; 
    text-transform: uppercase; position: relative; font-weight: 600; 
    padding: 10px 0;
}
.nav-links > li > a::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 0; height: 1px;
    background: var(--gold-accent2); transition: width 0.3s var(--smooth-ease);
}
.nav-links > li > a:hover::after { width: 100%; }
.hamburger { display: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

.dropdown-menu {
    position: absolute; 
    top: 100%; 
    left: 0;
    width: 360px !important; 
    max-height: 60vh; 
    overflow-y: auto; 
    pointer-events: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--gold-accent2); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    padding: 15px 0;
    opacity: 0; 
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10001;
    display: flex; 
    flex-direction: column;
}

.dropdown:hover .dropdown-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.dropdown-menu li { list-style: none; width: 100%; }

.dropdown-menu li span.static-item,
.dropdown-menu li a {
    display: block; 
    padding: 10px 30px;
    font-size: 0.85rem; 
    color: var(--text-dark); 
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-transform: none; 
    letter-spacing: 0;
    text-decoration: none;
    transition: none;
}

.dropdown-menu li a::after { display: none; } 
.dropdown-menu li a:hover {
    background-color: rgba(220, 53, 69, 0.04); 
    color: var(--gold-accent2);
    padding-left: 35px;
    border-left: 3px solid var(--gold-accent2);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--gold-accent2); 
    border-radius: 3px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #a71d2a; 
}
.menu-category {
    font-size: 0.75rem;
    color: var(--gold-accent2);
    font-weight: 800;
    letter-spacing: 2px;
    padding: 15px 25px 8px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(220, 53, 69, 0.15); 
    display: block;
}
.menu-category:first-child { margin-top: 0; }

.hero { padding: 60px 0 100px; min-height: 70vh; display: flex; align-items: center; }
.hero-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.pre-title { display: block; font-size: 0.9rem; color: var(--gold-accent); letter-spacing: 3px; margin-bottom: 20px; }
.hero-text h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 40px; color: var(--text-dark); }
.hero-text h1 i { font-family: var(--font-heading); color: var(--gold-accent); }
.hero-text p { font-size: 1.1rem; color: var(--text-light); max-width: 500px; margin-bottom: 50px; font-weight: 300; }

.btn-premium {
    display: inline-block; padding: 15px 40px;
    border: 1px solid var(--gold-accent);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    transition: all 0.4s var(--smooth-ease);
}
.btn-premium:hover { color: var(--gold-accent2); border-color: var(--gold-accent2); }

.hero-image-frame { position: relative; height: 100%; }
.hero-image-frame img {
    width: 105%; height: 100%; object-fit: cover;
    border-radius: 4px;
}
/*.hero-image-frame::before {
    content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
    border: 1px solid var(--gold-accent); z-index: -1; opacity: 0.5;
}*/

.corporate-section { padding: 150px 0 100px; min-height: 80vh; animation: fadeIn 0.5s ease; }
.btn-back {
    background: none; border: none; font-family: var(--font-body);
    font-weight: 600; color: var(--text-light); cursor: pointer; margin-bottom: 40px;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.btn-back:hover { color: var(--gold-accent2); transform: translateX(-5px); }

.corporate-content { display: grid; grid-template-columns: 490px 1fr; gap: 60px; align-items: start; }
.corp-img-box {
    position: relative; border-radius: 4px; overflow: hidden;
    box-shadow: 20px 20px 0px rgba(196, 167, 125, 0.2);
}
.corp-img-box img { width: 100%; height: auto; object-fit: cover; }
.corp-role {
    font-size: 0.9rem; letter-spacing: 2px; color: var(--gold-accent2); 
    text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 10px;
}
#cp-name { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; }
.corp-bio { color: var(--text-dark); font-size: 1rem; line-height: 1.9; }
.corp-bio p { margin-bottom: 20px; text-align: justify; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.collection-section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3rem; margin-bottom: 40px; }

.filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important; 
        justify-content: flex-start !important; 
        gap: 10px !important;
        width: 100% !important;
        padding-bottom: 5px !important;
        -ms-overflow-style: none;  
        scrollbar-width: none; 
    }
    .filters::-webkit-scrollbar {
        display: none;
    }
.filter-btn {
    background: none; border: none; font-family: var(--font-body);
    font-size: 0.95rem; cursor: pointer; color: var(--text-light);
    padding: 5px 0; position: relative; transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover { color: var(--text-dark); }
.filter-btn::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
    background: var(--gold-accent2); transition: 0.3s var(--smooth-ease); transform: translateX(-50%);
}
.filter-btn.active::after { width: 100%; }

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 60px; 
}

.gallery-item { cursor: pointer; position: relative; }
.item-img-wrap {
    position: relative; overflow: hidden; border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); aspect-ratio: 4/5;
}
.item-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--smooth-ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.item-info { text-align: center; padding-top: 25px; }
.item-cat { display: block; font-size: 0.75rem; color: var(--gold-accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.item-title { font-size: 1.5rem; color: var(--text-dark); transition: color 0.3s; }
.gallery-item:hover .item-title { color: var(--gold-accent2); }

.footer { 
    padding: 40px 0; 
    border-top: 1px solid rgba(0,0,0,0.05); 
    margin-top: 100px; 
    background-color: #ffffff; 
}
.footer-flex { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand p { color: var(--text-light); margin-top: 15px; }
.footer-info { text-align: right; color: var(--text-light); }
.footer-mail {         margin: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.6;
        color: var(--text-dark);
        width: 100%; }
.footer-mail:hover { color: var(--gold-accent2); }
.footer-copyright {
    flex-basis: 100% !important;
    width: 100% !important;
    margin-top: 40px !important; 
    order: 3; 
}
.footer-copyright strong {
    color: var(--text-dark);
}
.mobile-break {
    display: none; 
}

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); z-index: 1000;
    opacity: 0; visibility: hidden; transition: opacity 0.2s ease-out;
    display: flex; justify-content: center; align-items: center;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--bg-cream); width: 90%; max-width: 1000px;
    border-radius: 4px; overflow: hidden; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.95); opacity: 0; transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 600px;
}
.modal-overlay.active .modal-content { transform: scale(1); opacity: 1; }
.close-modal {
    position: absolute; top: 15px; right: 15px; background: none; border: none;
    font-size: 2rem; color: var(--text-dark); cursor: pointer; z-index: 10;
    transition: 0.2s; line-height: 1;
}
.close-modal:hover { color: var(--gold-accent2); }
.modal-flex { display: flex; }
.modal-img-wrapper { flex: 1.2; height: 600px; background: #f0f0f0; }
.modal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { 
    flex: 1; 
    padding: 50px; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    overflow-y: auto; 
    max-height: 100%; 
}
.modal-cat { color: var(--gold-accent2); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
#m-title { font-size: 2.5rem; margin: 10px 0 20px; }
.gold-divider { width: 40px; height: 2px; background: var(--gold-accent2); margin-bottom: 30px; }
#m-desc { color: var(--text-light); font-size: 1.05rem; }
.modal-meta { 
    margin-top: auto; 
    border-top: 1px solid rgba(0,0,0,0.05); 
    padding-top: 20px; 
    display: flex; 
    gap: 20px; 
    color: var(--text-light); 
    font-size: 0.9rem; 
    align-items: center; 
    flex-wrap: wrap;
}
.modal-meta b { 
    display: inline-block; 
    color: var(--text-dark); 
    font-size: 1.5rem; 
    font-weight: 600; 
    margin-top: 0; 
}

#m-desc {
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .header-top-flex { flex-direction: column; gap: 20px; text-align: center; }
    .header-brand { margin-right: 0; justify-content: center; }
    .header-right-elements { align-self: center; justify-content: center; }
    body { padding-top: 180px; }
    .navbar { top: 150px; }
}

.mobile-nav-overlay {
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh;
        background: rgba(252, 251, 248, 0.98); 
        backdrop-filter: blur(10px);
        z-index: 20000;
        
        display: flex; 
        flex-direction: column; 
        justify-content: flex-start; 
        align-items: center;
        
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        pointer-events: auto;
        
        overflow-y: auto; 
        padding-top: 90px; 
        padding-bottom: 40px; 
    }

.mobile-nav-overlay.active { right: 0; }

.close-mobile-menu {
    position: absolute; top: 20px; right: 25px;
    background: none; border: none; font-size: 2.5rem; color: var(--text-dark);
    cursor: pointer;
}

.mobile-links {
        width: 100%;
        max-width: 300px;
        padding: 0 20px;
        text-align: center;
        display: flex; 
        flex-direction: column; 
        gap: 5px;
        margin: 0 auto;
    }

.mobile-links a {
    font-size: 1.5rem; font-family: var(--font-heading); color: var(--text-dark);
    display: block; transition: 0.3s;
}
.mobile-links a:hover { color: var(--gold-accent2); letter-spacing: 2px; }

.mobile-dropdown-title {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: var(--gold-accent);
        letter-spacing: 3px;
        font-weight: 700;
        margin-top: 25px;
        margin-bottom: 10px;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }
.mobile-dropdown-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--gold-accent);
        margin: 5px auto 0;
        opacity: 0.5;
    }
.mobile-links .sub-link {
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--text-light); 
        font-weight: 500;
        padding: 8px 0;
        text-decoration: none;
        display: block;
        transition: 0.2s;
    }
.mobile-links .sub-link:hover {
        color: var(--text-dark);
        transform: translateX(5px); 
    }
.mobile-links > a:not(.sub-link) {
        font-family: var(--font-body); 
        font-weight: 600; 
        font-size: 1.1rem;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: 0.3s;
    }
    
    .mobile-links > a:not(.sub-link):hover {
        color: var(--text-dark);
        letter-spacing: 2px;
    }

@media (max-width: 1024px) {
    .container { padding: 0 30px; width: 100%; }
    .hero-text h1 { font-size: 3.5rem; }
    .corporate-content { grid-template-columns: 1fr; gap: 40px; }
    .corp-img-box { max-width: 400px; margin: 0 auto; width: 100%; }
    .corp-text-box { text-align: center; }
}

@media (max-width: 900px) {
    body { padding-top: 85px; } 
    .container { padding: 0 20px; }

.main-header {
        position: fixed; top: 0; height: 80px; padding: 0 15px;
        display: flex; align-items: center; justify-content: center;
        background-color: #fcfbf8;
        background-image: url("https://www.tarimorman.gov.tr/_catalogs/masterpage/tob/images/banner3.svg") !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .main-header .container { padding: 0; display: flex; align-items: center; }
    
    .header-brand { 
        width: 100%; 
        justify-content: center; 
        align-items: center; 
        position: relative; 
    }
.header-text {
        width: auto !important;
        margin-left: 60px !important; 
        margin-right: 60px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
    }
    .header-text h1 {
        font-size: 10px !important; 
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: normal !important; 
    }
    
    .header-text h2 {
        font-size: 9px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin-top: 3px !important;
        white-space: normal !important;
    }

    .ministry-logo {
        position: fixed !important; 
        left: 15px !important;
        top: 20px !important;
        height: 40px !important;
        width: auto !important;
        margin: 0 !important;
        z-index: 2005 !important;
    }
    
    .header-right-elements { display: none; }
    .navbar {
        position: fixed; top: 0; left: 0; width: 100%; height: 80px;
        background: transparent; padding: 0 20px;
        pointer-events: none;
        display: flex; align-items: center; justify-content: center;
        z-index: 1001;
    }
    .navbar.scrolled {
    position: fixed;
    top: 0;
    border-top: none;
    background: rgba(255, 255, 255, 0.98);
    
    padding: 15px 0;
    border-bottom: 1px solid rgba(196, 167, 125, 0.5);
    animation: slideDown 0.4s ease forwards;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    will-change: transform; 
}
    
    .nav-flex { width: 100%; justify-content: flex-end; }
    .nav-links, .logo.mobile-only { display: none; } 
    
    .hamburger {
        display: block; pointer-events: auto;
        font-size: 1.8rem; color: var(--text-dark);
        border-radius: 4px;
    }
    .hamburger {
        position: fixed !important;
        right: 15px !important;
        top: 10px !important; 
        margin: 0 !important;
        z-index: 2005 !important;
        padding: 5px !important;
        background: transparent !important; 
    }

    .hero { text-align: center; padding: 40px 0; }
    .hero-flex { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-image-frame { height: 280px; }

    .corporate-content { grid-template-columns: 1fr; }
    .corp-img-box { max-width: 100%; }

    .gallery-grid { 
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px; 
    }
    .item-img-wrap { aspect-ratio: 4/3; }

    .footer-flex { flex-direction: column; text-align: center; gap: 30px; }
    .footer-info { text-align: center; }
    .modal-overlay {
        z-index: 50000 !important; 
    }

    .modal-content {
        flex-direction: column;
        width: 90%; 
        max-height: 85vh;
        overflow-y: auto;
        position: relative;
    }
    
    .modal-flex { flex-direction: column; }

    .modal-img-wrapper {
        height: 220px;
        flex: none;
        width: 100%;
    }
    .modal-img-wrapper img { object-fit: cover; height: 100%; width: 100%; }

    .modal-details {
        padding: 25px 20px;
        text-align: left;
    }

    #m-title { 
        font-size: 1.6rem !important; 
        line-height: 1.3;
        margin: 10px 0 15px; 
    }
    
    .modal-cat { font-size: 0.7rem; letter-spacing: 1px; }
    #m-desc { font-size: 0.95rem; margin-bottom: 20px; }
    
    .modal-meta { padding-top: 15px; margin-top: 0; }
    .modal-meta b { font-size: 1.4rem !important; }

    .close-modal {
        position: absolute; 
        top: 15px; 
        right: 15px;
        z-index: 999; 
        
        background-color: var(--text-dark);
        color: #fff; 
        
        border-radius: 50%; 
        width: 40px; 
        height: 40px;
        font-size: 1.5rem;
        
        display: flex; 
        align-items: center; 
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
        cursor: pointer;
    }
    
    .corporate-section {
        padding: 100px 0 60px;
    }

    .corporate-content {
        display: flex;
        flex-direction: column; 
        gap: 30px;
    }

    .corp-img-box {
        width: 100%;
        max-width: 300px; 
        margin: 0 auto; 
        box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
    }

    .corp-text-box {
        text-align: left; 
        padding: 0 5px;
    }

    .corp-role {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 5px;
        display: block;
    }

    #cp-name {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .corp-bio {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .corp-bio p {
        margin-bottom: 15px; 
    }

    .corp-bio strong {
        color: var(--text-dark);
    }

    .corp-bio ul {
        padding-left: 20px !important; 
        margin: 15px 0 !important;
        list-style-position: outside;
    }

    .corp-bio li {
        margin-bottom: 10px; 
        padding-left: 5px;
    }
    
.footer {
    padding: 40px 0 60px; 
    background-color: #fff;
}

    .footer-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        text-align: center;
    }

    .footer-brand .logo {
        font-family: var(--font-body) !important;
        font-size: 1.1rem !important;
        font-weight: 700;
        line-height: 1.4;
        color: var(--text-dark);
        margin-bottom: 8px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 500;
        margin: 0;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center; 
        gap: 15px; 
        width: 100%;
        max-width: 300px; 
        margin: 0 auto;
    }

    .footer-info p {
        margin: 0 !important; 
        font-size: 0.95rem !important;
        line-height: 1.6;
        color: var(--text-dark);
        width: 100%;
    }

    .footer-mail {
        margin: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.6;
        color: var(--text-dark);
        width: 100%;
    }
    .logo.mobile-only { 
        display: none; 
    }
    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.6;
        padding-bottom: 20px; 
    }
    
    .mobile-break {
        display: block; 
    }
    .info-modal-logo {
        width: 90px; 
        margin-bottom: 20px;
    }
    
    .info-modal-content {
        padding: 30px 20px !important;
    }
}

.mobile-accordion {
    background-color: transparent;
    color: var(--text-light);
    cursor: pointer;
    padding: 15px 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.mobile-accordion:hover, .mobile-accordion.active {
    color: var(--text-dark); 
    background-color: rgba(0,0,0,0.02);
}

.mobile-accordion i {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.mobile-accordion.active i {
    transform: rotate(180deg); 
}

.mobile-panel {
    padding: 0 15px;
    background-color: #fcfbf8;
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-out; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-panel span {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.mobile-panel span:last-child {
    border-bottom: none;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important; 
    position: relative;
}
.info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); 
    z-index: 99999; 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.info-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-modal-content {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-top: 5px solid var(--gold-accent2); 
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.info-modal-overlay.active .info-modal-content {
    transform: scale(1);
}

.info-icon {
    font-size: 3rem;
    color: var(--gold-accent2); 
    margin-bottom: 20px;
}

.warning-text {
    color: var(--gold-accent2); 
    font-family: var(--font-body);
    font-weight: 600; 
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-info-close {
    background-color: var(--gold-accent2); 
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-info-close:hover {
    background-color: #a71d2a; 
    transform: translateY(-2px);
}
.info-modal-logo {
    display: block; 
    margin: 0 auto 25px auto;
    width: 110px; 
    height: auto; 
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}