body{
margin:0;
font-family:Poppins;
background:#0f0f0f;
color:white;
}

.header-cta {
    margin-left: 20px;
}

.btn-teklif {
    background: #c9a227;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-teklif:hover {
    background: #a8841d;
}

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

.whatsapp-button{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-button:hover{
    transform: scale(1.1);
}

/*** top header ***/

.top-header {
    background: #0f0f0f;
    color: #ffffff;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.top-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sol Taraf Linkleri */
.top-left a {
    color: #cccccc;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-left a:hover {
    color: #ff9900; /* Vurgu rengi */
}

/* Sağ Taraf İkonları */
.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.top-right a:hover {
    color: #ff9900;
    transform: translateY(-2px); /* Hafif yükselme efekti */
}

/* --- MOBİL UYUMLULUK (Tablet ve Telefon) --- */
@media (max-width: 768px) {
    .top-container {
        flex-direction: column; /* Üst üste getir */
        gap: 10px;
        text-align: center;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .top-left a {
        margin-right: 0;
    }

    /* Çok küçük ekranlarda (telefon) top-header çok yer kaplamasın istersen gizleyebilirsin:
       .top-header { display: none; } */
}

/*** ***/

/*** mobil menü ***/

.main-header {
    background: #0f0f0f;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
	border-bottom:1px solid #d4af37;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
}

.logo img {
    height:70px;
}

/* --- BİLGİSAYAR GÖRÜNÜMÜ --- */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    transition: 0.3s;
}

.nav-list a:hover { color: #ff9900; }

.mobile-toggle, .mobile-close { display: none; } /* Bilgisayarda gizle */

/* --- TABLET VE TELEFON GÖRÜNÜMÜ (1024px ve altı) --- */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #333;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Menü sağda gizli */
        width: 300px;
        height: 100%;
        background: #0f0f0f;
        z-index: 1001;
        transition: 0.4s ease-in-out;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-wrapper.active {
        right: 0; /* Menü açıldığında içeri girer */
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-list a {
        font-size: 20px;
        display: block;
    }

    .mobile-close {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 40px;
        cursor: pointer;
        color: #333;
    }
}

/* Dropdown Genel Yapısı */
.nav-list li {
    position: relative; /* Alt menünün konumlanması için şart */
}

/* Alt Menü Liste Tasarımı */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111; /* Siyah arka plan */
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid #c5a059; /* Gold çerçeve */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Hizmetler linkine ikon ve hizalama */
.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Hover Durumunda Açılma */
.nav-list li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list li:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Alt Menü Linkleri */
.dropdown-menu li {
    width: 100%;
    text-align: left;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #c5a059; /* Üzerine gelince gold */
    color: #000;
}

/* Mobil Uyumluluk (Kendi @media bloğunun içine ekleyebilirsin) */
@media screen and (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border: none;
        padding-left: 20px;
        display: none; /* Mobilde tıklandığında açılması istenirse JS gerekir */
    }
    
    .nav-list li:hover .dropdown-menu {
        display: block;
    }
}

/*** hizmetlerimiz ***/

:root {
    --gold: #c5a059;
    --dark-bg: #111111;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
}

.catering-section {
    background-color: var(--dark-bg);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    text-align: center;
}

.section-title {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.catering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütunlu yapı */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.catering-item {
    background: var(--card-bg);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.catering-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.image-box {
    flex: 1;
    height: 100%;
    min-height: 200px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.content-box h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.btn-incele {
    display: inline-block;
    padding: 8px 25px;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: opacity 0.3s;
}

.btn-incele:hover {
    opacity: 0.8;
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 992px) {
    .catering-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}

@media (max-width: 600px) {
    .catering-item {
        flex-direction: column; /* Çok küçük ekranlarda resim üste, yazı alta */
    }
    .image-box {
        width: 100%;
        height: 200px;
    }
}

/*** hizmetlerimiz ***/

:root {
    --gold: #c5a059;
    --dark-bg: #111111;
    --text-white: #ffffff;
}

.contact-section {
    background-color: var(--dark-bg);
    padding: 80px 20px;
    color: var(--text-white);
    font-family: 'Segoe UI', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-title {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.contact-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
}

.contact-desc {
    color: #888;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 24px;
    color: var(--gold);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin: 0;
    color: var(--gold);
    font-size: 1rem;
}

.info-item p {
    margin: 5px 0 0;
    color: #ccc;
}

:root {
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
    --form-bg: #151515;
}

.quote-section {
    background-color: var(--dark-bg);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--form-bg);
    padding: 50px;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-header h2 {
    color: var(--gold);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.quote-header p {
    color: #888;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: #000;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
}

.btn-quote {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: #000;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn-quote:hover {
    background: #d4b57e;
    transform: translateY(-2px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .quote-container {
        padding: 30px 20px;
    }
}

/*** hakkimizda ***/

.about-section{
    padding:50px 6%;
    background:#0f0f0f;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:8px;
    box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.about-content h2{
    color:#c9a227;
    font-size:34px;
    margin-bottom:25px;
}

.about-content p{
    color:#ddd;
    line-height:1.7;
    margin-bottom:18px;
}

.about-button{
    display:inline-block;
    margin-top:15px;
    padding:14px 35px;
    background:#c9a227;
    color:#000;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.about-button:hover{
    background:#e5b93c;
}

@media (max-width:768px){

.about-container{
grid-template-columns:1fr;
}

.about-image{
order:1;
}

.about-content{
order:2;
}

}


/*** ***/

/*** ***/

.container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 10%;
}

.logo{
font-size:22px;
font-weight:700;
color:#d4af37;
}

.whatsapp{
background:#25d366;
padding:8px 15px;
border-radius:6px;
}

.hero{
position:relative;
height:90vh;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:48px;
color:#d4af37;
}

.btn{
background:#d4af37;
color:black;
padding:15px 30px;
border-radius:6px;
text-decoration:none;
}

.btn2{
border:2px solid #d4af37;
padding:15px 30px;
border-radius:6px;
color:#d4af37;
text-decoration:none;
}

.services{
padding:40px 10%;
text-align:center;
background:#111;
}

.services h2{
color:#d4af37;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#1a1a1a;
border-radius:10px;
overflow:hidden;
border:1px solid #222;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:#d4af37;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
color:#d4af37;
padding:20px 10px 5px;
}

.card p{
padding:0 20px 20px;
color:#aaa;
}

/*** ***/

.menu-highlight{
    padding:60px 5%;
}

.menu-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.menu-box{
    position:relative;
    height:350px;
    border-radius:8px;
    overflow:hidden;
}

.menu-box video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.daily-menu{
    background-image:url("../img/menesacatering.jpg");
    background-size:cover;
    background-position:center;
}

.menu-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.menu-overlay h2{
    font-size:28px;
    margin-bottom:20px;
}

.daily-food{
    list-style:none;
    padding:0;
}

.daily-food li{
    font-size:18px;
    margin:6px 0;
}

@media (max-width:768px){

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

.menu-box{
height:280px;
}

}

/*** ***/

/*** ***/

.cta-section{
    padding:30px 5%;
    background:#0f0f0f;
    justify-content: center;
}

.cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    justify-content: center;
}

.cta-left,
.cta-right{
    background:#151515;
    padding:25px;
    border-radius:8px;
    border:1px solid rgba(201,162,39,0.2);
    box-shadow:0 10px 35px rgba(0,0,0,0.6);
    color:#fff;
    justify-content: center;
}

/* Başlık */

.cta-left h2,
.cta-right h2{
    color:#c9a227;
    margin-bottom:20px;
}

/* Telefon */

.phone-number{
    font-size:24px;
    font-weight:700;
    margin:10px 0 20px 0;
}

.phone-number a{
    text-decoration:none;
    color:#fff;
}

/* WhatsApp geniş buton */

.whatsapp-wide{
    display:block;
    background:#25D366;
    color:#fff;
    padding:15px;
    text-align:center;
    border-radius:6px;
    text-decoration:none;
    font-size:18px;
    margin-top:10px;
    transition:0.3s;
}

.whatsapp-wide:hover{
    transform:translateY(-3px);
}

/* Teklif butonu */

.btn-offer{
    display:inline-block;
    margin-top:25px;
    padding:15px 35px;
    background:#c9a227;
    color:#000;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.btn-offer:hover{
    background:#e5b93c;
}


@media (max-width:768px){

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

}

/*** ***/

footer{
background:#000;
padding:40px 10%;
border-top:1px solid #d4af37;
text-align:left;
}

footer p{
color:#aaa;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 25%;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #ff9900; /* Menesa markasına uygun turuncu/sarı tonu */
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff9900;
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #ff9900;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff9900;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

@media(max-width:900px){

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

.hero h1{
font-size:32px;
}

}

:root {
    --gold-primary: #d4af37;
    --gold-dark: #aa8a2e;
    --black-deep: #050505;
    --black-card: #121212;
    --text-muted: #888;
}

.premium-quote {
    background-color: var(--black-deep);
    padding: 100px 5%;
    color: #d4af37;
    font-family: 'Poppins', sans-serif;
}

.quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.quote-content .sub-title {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.quote-content h2 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
}

.quote-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
}

.feature-item i {
    color: var(--gold-primary);
}

/* Elegant Form Stilleri */
.quote-card {
    background: var(--black-card);
    padding: 50px;
    border: 1px solid #222;
    position: relative;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid var(--gold-primary);
    z-index: -1;
    opacity: 0.3;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
    flex: 1;
    background: transparent;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    color: #fff;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    background: transparent;
    left: 0;
    top: 10px;
    color: #000000;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold-primary);
    background: transparent;
}

.input-group input:focus, .input-group select:focus {
    border-bottom: 1px solid var(--gold-primary);
    background: transparent;
}

.premium-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold-primary);
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.4s;
}

.premium-btn:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .input-row {
        flex-direction: column;
        gap: 0;
    }
}

.menesa-catering-section {
    background-color: #1a1a1a; /* Koyu siyah/füme zemin */
    padding: 30px 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    line-height: 1.8;
}

.container {
    max-width: 1200px; /* Görsel eklendiği için genişliği artırdık */
    margin: 0 auto;
}

.menesa-flex-wrapper {
    display: flex;
    align-items: center; /* Dikeyde ortala */
    gap: 40px; /* Sütunlar arası boşluk */
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #c5a059; /* İnce altın çerçeve */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 20px; /* İçerik için genel boşluk */
}

/* Sol Sütun: Resim */
.menesa-image-column {
    flex: 1; /* %50 genişlik */
    position: relative;
    overflow: hidden;
    height: 100%; /* Yüksekliği metne göre ayarla */
    min-height: 400px; /* Mobil ve boşluk için minimum yükseklik */
}

.menesa-featured-img {
    width: 80%;
    height: 80%;
    object-fit: cover; /* Resmi sığdır ve kırp */
    display: block;
    border-radius: 20px; /* Hafif yuvarlama */
	padding:10px;
}

/* Sağ Sütun: İçerik */
.menesa-content-column {
    flex: 2; /* %50 genişlik */
    padding: 10px 5px 10px 0; /* Sol resme yakın, sağa boşluk */
}

.menesa-header {
    margin-bottom: 30px;
}

.menesa-header h2 {
    color: #c5a059; /* Altın rengi */
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
}

.gold-line {
    height: 2px;
    width: 60px;
    background-color: #c5a059;
    margin-bottom: 15px;
}

.menesa-header h3 {
    color: #e0e0e0;
    font-weight: 300;
    font-size: 1.1rem;
    margin: 0;
}

.menesa-body p {
    margin-bottom: 20px;
    text-align: justify;
    color: #d1d1d1;
}

.menesa-body strong {
    color: #c5a059;
}

.experience-text {
    border-left: 3px solid #c5a059;
    padding-left: 20px;
    font-style: italic;
    color: #ffffff !important;
    margin-top: 30px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .menesa-flex-wrapper {
        flex-direction: column; /* Sütunları üst üste koy */
        padding: 20px;
    }

    .menesa-image-column {
        width: 100%;
        min-height: 250px;
        margin-bottom: 20px;
    }

    .menesa-content-column {
        width: 100%;
        padding: 0;
    }
    
    .menesa-header h2 {
        font-size: 1.8rem;
    }
}


.yerinde-uretim-section {
    padding: 10px 0;
    background-color: #1a1a1a;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro Bölümü Stilleri */
.intro-content {
    text-align: justify;
    margin-bottom: 10px;
}

.intro-content h1 {
    color: #c5a059; /* Kurumsal Kırmızı */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.intro-description p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px auto;
    width: 50%;
}

/* Grid Bölümü Stilleri */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #efefef;
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #c62828;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Mobil Düzen */
@media (max-width: 768px) {
    .intro-content h1 { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
}


/* Genel Ayarlar */
.breakfast-package-section {
    background-color: #0f0f0f; /* Derin Siyah */
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Sol Görsel Alanı */
.luxury-image-side {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

/* Görselin arkasındaki altın çerçeve dekoru */
.image-border-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37; /* Gold */
    z-index: -1;
}

/* Sağ İçerik Alanı */
.luxury-content-side {
    flex: 1;
    min-width: 400px;
}

.sub-title {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.luxury-content-side h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f1f1f1;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #fcf6ba, #d4af37);
    margin-bottom: 30px;
}

.luxury-content-side p {
    font-size: 17px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Altın Buton */
.gold-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #d4af37, #aa891b);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 1px;
}

.gold-btn:hover {
    background: linear-gradient(45deg, #fcf6ba, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .luxury-row {
        flex-direction: column;
        text-align: center;
    }
    .luxury-image-side, .luxury-content-side {
        min-width: 100%;
    }
    .gold-divider {
        margin: 0 auto 30px;
    }
    .image-border-decoration {
        display: none; /* Mobilde sade görünüm için */
    }
}

/* COVID-19 Siyah-Gold Tasarım Stilleri */
.covid-luxury-section {
    padding: 100px 0;
    background-color: #0c0c0c; /* Çok Derin Siyah */
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
}

.luxury-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.gold-badge {
    background: linear-gradient(90deg, #d4af37, #fcf6ba, #d4af37);
    color: #000;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxury-header h2 {
    font-size: 38px;
    color: #f1f1f1;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #fcf6ba, #d4af37);
    margin: 0 auto 30px;
}

.luxury-header p {
    font-size: 17px;
    color: #b0b0b0;
    line-height: 1.8;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.luxury-card {
    background: #161616; /* Koyu Gri/Siyah Kart Arkaplanı */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    z-index: 1;
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37; /* Gold Çerçeve Vurgusu */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-icon {
    font-size: 45px;
    margin-bottom: 25px;
    display: block;
}

.luxury-card h3 {
    font-size: 20px;
    color: #d4af37; /* Gold Başlık */
    margin-bottom: 15px;
    font-weight: 600;
}

.luxury-card p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0;
}

/* Kartın altındaki dekoratif gold çizgi */
.card-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #fcf6ba, #d4af37);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.luxury-card:hover .card-border {
    width: 60px; /* Hover durumunda çizgi genişler */
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .luxury-header h2 { font-size: 30px; }
    .luxury-grid { grid-template-columns: 1fr; }
}
/* Menesa Hakkımızda - Siyah & Gold Teması */
.menesa-about-section {
    background-color: #0a0a0a; /* Siyah Arkaplan */
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana İçerik Alanı */
.about-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text-content {
    flex: 2;
}

.gold-subtitle {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}

.about-text-content h1 {
    font-size: 45px;
    margin: 10px 0;
    color: #fff;
    font-weight: 800;
}

.gold-divider-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #aa891b);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 20px;
    color: #d4af37;
    font-style: italic;
    margin-bottom: 20px;
}

.main-description p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Tecrübe Halkası Dekorasyonu */
.about-experience-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.exp-circle {
    width: 220px;
    height: 220px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.year-num {
    font-size: 60px;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
}

.year-text {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

/* Misyon & Vizyon Kartları */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #151515;
    padding: 50px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.mv-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gold-divider-center {
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 20px;
}

.mv-card p {
    color: #aaa;
    line-height: 1.7;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-main-row {
        flex-direction: column;
        text-align: center;
    }
    .gold-divider-left { margin: 0 auto 25px; }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Hijyen Bölümü - Siyah & Gold */
.hygiene-luxury-section {
    background-color: #050505; /* En koyu siyah */
    padding: 100px 0;
    color: #ffffff;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-row {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Sol Taraf: Altın Mühür Tasarımı */
.luxury-visual-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 350px;
}

.gold-seal {
    width: 280px;
    height: 280px;
    border: 2px double #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.seal-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1a1a1a 0%, #050505 100%);
}

.seal-icon { font-size: 60px; margin-bottom: 10px; }
.seal-text { 
    color: #d4af37; 
    text-align: center; 
    font-weight: 700; 
    letter-spacing: 3px;
    font-size: 14px;
}

.experience-tag {
    margin-top: 30px;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 5px 20px;
    letter-spacing: 5px;
    font-size: 12px;
}

/* Sağ Taraf: İçerik Tasarımı */
.luxury-content-side { flex: 2; min-width: 450px; }

.gold-label {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.luxury-content-side h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.gold-bar {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-bottom: 30px;
}

.highlight-p {
    font-size: 19px;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 25px;
}

.content-details p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Özellikler (Checkboxlar) */
.safety-features {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.feature {
    background: #111;
    border: 1px solid #222;
    padding: 10px 20px;
    font-size: 14px;
    color: #d4af37;
    border-radius: 4px;
}

.check { margin-right: 8px; font-weight: bold; }

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .luxury-row { flex-direction: column; text-align: center; gap: 40px; }
    .gold-bar { margin: 0 auto 30px; background: #d4af37; }
    .safety-features { justify-content: center; }
    .luxury-content-side { min-width: 100%; }
}


/* Çözüm Ortakları - Siyah & Gold Slider */
.partners-luxury-section {
    background-color: #080808;
    padding: 80px 0;
    overflow: hidden; /* Taşmaları gizle */
    font-family: 'Poppins', sans-serif;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.gold-subtitle {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.partners-header h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.gold-divider-center {
    width: 60px;
    height: 3px;
    margin: 15px auto;
}

.partners-header p {
    color: #888;
    font-size: 16px;
}

/* Slider Mekanizması */
.logo-slider-wrapper {
    width: 100%;
    margin-top: 40px;
    position: relative;
    display: flex;
}

.logo-track {
    display: flex;
    width: calc(250px * 32); /* Logo genişliği * Toplam logo sayısı */
    animation: scroll-left 30s linear infinite;
}

.logo-item {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-item img {
    max-width: 100%;max-height: 120px;
    filter: grayscale(100%) brightness(0.7); /* Logoları başta gri yap */
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1); /* Üstüne gelince orijinal renk */
    transform: scale(1.1);
}

/* Kayma Animasyonu */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 12)); /* Yarısı kadar kaydırınca döngü tamamlanır */
    }
}

/* Kenarlara Yumuşak Geçiş (Fade) Efekti */
.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, transparent);
}

.logo-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, transparent);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .logo-item { width: 180px; }
    .logo-track { width: calc(180px * 24); }
    @keyframes scroll-left {
        100% { transform: translateX(calc(-180px * 12)); }
    }
}

/* PDF Grid Tasarımı */
.pdf-grid-section {
    background-color: #0c0c0c;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.pdf-header {
    text-align: center;
    margin-bottom: 50px;
}

.gold-subtitle {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.pdf-header h2 {
    color: #fff;
    font-size: 32px;
}

.gold-divider-center {
    width: 50px;
    height: 2px;
    background: #d4af37;
    margin: 15px auto;
}

/* Grid Yapısı */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pdf-card {
    background: #151515;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.pdf-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.pdf-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.pdf-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Hover Efekti */
.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-card:hover .pdf-overlay {
    opacity: 1;
}

.pdf-card:hover img {
    opacity: 0.4;
}

.view-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.view-text {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

/* Alt Bilgi */
.pdf-info {
    padding: 20px;
    text-align: center;
}

.pdf-info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.pdf-info p {
    color: #d4af37;
    font-size: 13px;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .pdf-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
}