/* Ana Stiller */
:root {
    --gold: #D4AF37;
    --dark: #1A1A1A;
    --light-gold: #F4E7BE;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Header Stilleri güncelleme */
.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.custom-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Video Section Stilleri */
.video-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-header {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.left-header {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Language dropdown stilleri */
.language-dropdown {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    min-width: 120px;
}

.language-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-item:hover {
    background: rgba(255,255,255,0.1);
}

.lang-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

/* Logo stilleri */
.sender-logo {
    height: 200px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* WhatsApp ve diğer linkler için stil */
.header-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #D4AF37;
}

/* Hero Section */
.hero-section {
    margin: 0;
    padding: 0;
    background-color: #fff;
    width: 100%;
    position: relative;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    padding: 80px 20px 20px 20px;
    background-color: #fff;
}

.hotel-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.hotel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.hotel-bottom {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hotel-info {
    position: relative;
    z-index: 3;
}

.hotel-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3rem;
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.9;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 4px;
}

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hotel-location h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.hotel-location p {
    margin: 5px 0 0;
    font-size: 1rem;
    opacity: 0.9;
}

.hotel-item:hover .hotel-overlay {
    opacity: 1;
}

.hotel-item:hover .hotel-logo {
    opacity: 1;
    transform: translateX(-50%);
    width: 20px;
}

/* Hover efektleri */
.hotel-item:hover {
    z-index: 10;
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hotel-item:hover img {
    transform: scale(1.15);
}

.hotel-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hotel-overlay p {
    font-size: 1.2rem;
    color: #fff;
}

/* Diğer itemların opacity'sini azalt */
.hotel-grid:hover .hotel-item:not(:hover) {
    opacity: 0.8;
    transform: scale(0.98);
}

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

    .hotel-item {
        aspect-ratio: 16/9;
    }

    .hotel-overlay h3 {
        font-size: 1.5rem;
    }

    .hotel-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hotel-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px;
    }

    .hotel-item {
        aspect-ratio: 1/1;
    }

    .hotel-overlay h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hotel-grid {
        grid-template-columns: 1fr;
    }
}

/* Header Stilleri */
.logo {
    height: 60px;
    width: auto;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff0000 !important;
}

/* Dil seçimi için stiller */
.lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    padding: 0;
    aspect-ratio: 1/1;
}

.dropdown-menu {
    background-color: #2B2B2B;
    border: none;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #3B3B3B;
    color: #ff0000;
}

/* Banner stilleri */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.discover-text {
    color: #333;
    font-weight: 600;
}

.and-text {
    color: #B8860B;
    font-weight: 300;
    margin: 0 10px;
}

.return-text {
    color: #B8860B;
    font-weight: 300;
}

.places-text {
    color: #B8860B;
    font-weight: 300;
}

.love-text {
    color: #333;
    font-weight: 600;
    margin-left: 10px;
}

.hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-description p {
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    vertical-align: super;
    margin-left: 5px;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #333;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.travel-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 800px;
}

.travel-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .travel-image {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        padding: 30px;
    }
    
    .travel-image {
        position: relative;
        width: 90%;
        margin: 40px auto;
        transform: none;
    }
    
    .stats-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Tur Kartları Stilleri */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-title {
    color: var(--dark);
    font-weight: 600;
}

.price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, #000, #1a1a1a) !important;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

/* Footer'a şık bir üst çizgi efekti */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Footer container için flex yapısı */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
}

/* Her bir footer section için genişlik ayarı */
.footer-section {
    flex: 1;
    min-width: 0; /* Taşmaları önlemek için */
}

/* Footer başlıkları için stil */
.footer-section h3 {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.legal-links h3 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 15px;
}

/* Contact bilgileri için hover efekti */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

/* Footer'daki sosyal medya ikonları için güncelleme */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Social links container için stil */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

/* Legal links için stil */
.legal-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-links h3 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 15px;
    width: 100%;
}

.legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.legal-links ul li {
    margin: 0;
    text-align: center;
    width: 100%;
}

.legal-links ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
    text-align: center;
    width: auto;
}

.legal-links ul li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(10px);
}

/* Footer bottom kısmı için stil */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 30px;
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Video Hero Section */
.video-hero {
    /* ... tüm video-hero stilleri ... */
}

/* Discover Section Styles */
.discover-section {
    background: linear-gradient(45deg, #000, #1a1a1a) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discover-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.discover-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.discover-text-content {
    flex: 1;
}

.discover-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.discover-description p {
    color: #D4AF37; /* Altın rengi metin */
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* Stats container için stil güncellemesi */
.stats-container {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.stat-label {
    color: #888; /* Gri metin rengi */
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discover-image {
    flex: 1;
    position: relative;
}

.discover-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.discover-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
    z-index: 1;
}

.discover-image:hover img {
    transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .discover-content {
        gap: 40px;
    }
    
    .discover-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .discover-content {
        flex-direction: column;
    }
    
    .discover-text-content {
        text-align: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .discover-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .discover-section {
        padding: 60px 0;
    }
    
    .discover-content h1 {
        font-size: 2.2rem;
    }
    
    .discover-description p {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Neden Bizimle Section */
.why-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Acente Bayilik Sistemi */
.agency-system {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.agency-content {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.agency-text .lead {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.agency-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.agency-feature {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.agency-feature:hover {
    transform: translateY(-10px);
}

.agency-feature .feature-icon {
    font-size: 3rem;
    color: #E31E24; /* Sender Tour kırmızısı */
    margin-bottom: 20px;
}

.agency-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.agency-feature p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Neden Bizimle Section için ikon rengi güncelleme */
.why-us .feature-icon {
    color: #E31E24; /* Sender Tour kırmızısı */
}

/* Responsive */
@media (max-width: 992px) {
    .agency-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .agency-features {
        grid-template-columns: 1fr;
    }
    
    .agency-text .lead {
        font-size: 1.1rem;
    }
}

/* Header Stilleri Güncelleme */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    color: #D4AF37; /* Altın rengi */
    font-size: 1.8rem;
    font-weight: 600;
}

/* İkon rengi güncellemesi */
.feature-icon, 
.agency-feature .feature-icon,
.why-us .feature-icon {
    color: #D4AF37; /* Altın rengi */
}

/* İkon rengi güncellemesi */
.feature-icon, 
.agency-feature .feature-icon,
.why-us .feature-icon {
    color: #D4AF37; /* Altın rengi */
}

/* Footer Stilleri Güncelleme */
.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.contact-item span {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: #D4AF37;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.footer-section h3, .follow-us {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

/* Başlıklar için altın çizgi efekti */
.footer-section h3::after, .follow-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #D4AF37, transparent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Video Overlay Güncelleme */
.video-overlay h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.video-overlay p {
    font-size: 2rem;
    color: white;
    font-weight: 300;
}

/* Menu Dropdown Styles */
.menu-dropdown {
    position: relative;
    margin-right: auto;
    margin-left: 20px;
    transform: translateX(-50px);
}

.menu-btn {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn:hover span {
    background: #D4AF37;
}

.menu-btn:hover span:nth-child(2) {
    width: 70%;
}

/* Menü açıkken ikonun görünümü */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 10px); /* Menü butonu ile dropdown arasında boşluk bırak */
    min-width: 200px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    border-radius: 8px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Dropdown ile menü butonu arasındaki boşluğu dolduran görünmez bir alan oluştur */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px; /* Menü ile dropdown arasındaki boşluk kadar */
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding-left: 30px;
}

/* Hover durumunda dropdown'ı göster */
.menu-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hotel Slider Styles */
.hotel-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

/* Hover durumunda slider kontrollerini göster */
.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 1;
    z-index: 99;
}

.hotel-item:hover .hotel-overlay {
    opacity: 1;
    pointer-events: auto;
}

.hotel-logo {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-bottom: 0.5rem;
}

.hotel-item:hover .hotel-logo {
    opacity: 1;
}

/* Overlay içindeki elemanların düzeni için */
.hotel-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hotel-info {
    text-align: center;
    margin-bottom: 1rem;
}

.hotel-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

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

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Yeni hotel-card yapısı */
.hotel-card {
    position: relative;
    background-color: #fff;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hotel-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

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

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Hotel Logos Section */
.hotel-logos {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.logo-slider-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    background-color: #fff;
    white-space: nowrap;
}

.logo-slider.auto-scroll {
    animation: scrollLogos 30s linear infinite;
    width: max-content; /* Tüm logoları tek satırda göstermek için */
    display: flex; /* Ensure logos are in a row */
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.5rem)); /* Account for gap between items */
    }
}

/* Durdurmak için hover devre dışı bırakılıyor - sürekli akış için */
.logo-slider.auto-scroll:hover {
    animation-play-state: paused;
}

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

/* Land of Legends ve Rixos logoları için özel boyutlandırma */
.logo-item.large-logo {
    width: 160px;
    height: 80px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }
}

/* Kaydırma okları için stil güncelleme */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: #333; /* Ok rengini koyu gri yaptık */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 24px;
    padding: 10px;
}

.prev-arrow {
    left: 0;
    opacity: 0; /* Başlangıçta sol ok gizli */
    visibility: hidden;
    transition: all 0.3s ease;
}

.next-arrow {
    right: 0;
    opacity: 1;
}

.slider-arrow:hover {
    color: #000; /* Hover durumunda siyah */
}

/* Ok ikonları için stil */
.slider-arrow i {
    transition: transform 0.3s ease;
}

.prev-arrow:hover i {
    transform: translateX(-5px);
}

.next-arrow:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }
    
    .slider-arrow {
        font-size: 20px;
    }
}

/* Otel isimlerini kaldır */
.logo-item .hotel-name {
    display: none;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .logo-slider {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-slider {
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .logo-item {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-slider {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, 1fr);
    }
}

/* Container stillerini sıfırla */
.container-fluid, .container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Dil dropdown içindeki bayraklar için de aynı stil */
.lang-dropdown-content .lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    aspect-ratio: 1/1;
}

/* Biz Kimiz Section Styles */
.main-content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background-color: #000;
}

.our-story-section {
    background: linear-gradient(135deg, #000, #1a1a1a, #000) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100" stroke="rgba(255,215,0,0.03)" stroke-width="1"/><path d="M100,0 L0,100" stroke="rgba(255,215,0,0.03)" stroke-width="1"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.story-image {
    flex: 1;
    position: relative;
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
    perspective: 1000px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    filter: saturate(1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    opacity: 0.9;
    border-radius: 10px;
}

.story-image .main-img {
    grid-column: 1;
    grid-row: 1 / 3;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.story-image .sub-img:first-of-type {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    transform: translateY(0) translateX(10px);
}

.story-image .sub-img:last-of-type {
    grid-column: 2;
    grid-row: 2;
    z-index: 1;
    transform: translateY(0) translateX(10px);
}

.story-image:hover .main-img {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
    opacity: 1;
}

.story-image:hover .sub-img:first-of-type,
.story-image:hover .sub-img:last-of-type {
    transform: translateX(0);
    border-color: rgba(255, 215, 0, 0.5);
    opacity: 1;
}

.story-image img:hover {
    filter: saturate(1.2) brightness(1.1);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.02);
    z-index: 10;
}

.story-content {
    flex: 1;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.story-content h2 {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.story-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.story-content h4 {
    font-size: 18px;
    color: rgba(255, 215, 0, 0.7);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 1px;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .our-story-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .story-image, .story-content {
        width: 100%;
    }
    
    .story-image {
        height: 550px;
    }
    
    .story-content h2 {
        font-size: 36px;
    }
    
    .story-content h3 {
        font-size: 24px;
    }
    
    .story-content h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 80px 0;
    }
    
    .story-image {
        height: 500px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .story-image .main-img {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .story-image .sub-img:first-of-type {
        grid-column: 1;
        grid-row: 2;
        transform: translateY(0) translateX(0);
    }
    
    .story-image .sub-img:last-of-type {
        grid-column: 2;
        grid-row: 2;
        transform: translateY(0) translateX(0);
    }
    
    .story-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .story-image {
        height: 650px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .story-image .main-img,
    .story-image .sub-img:first-of-type,
    .story-image .sub-img:last-of-type {
        width: 100%;
    }
    
    .story-image .main-img {
        height: 40%;
    }
    
    .story-image .sub-img:first-of-type,
    .story-image .sub-img:last-of-type {
        height: 30%;
        transform: translateX(0);
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-content h2 {
        font-size: 28px;
    }
}

/* Eski TripAdvisor stillerini kaldır */
.social-links .tripadvisor-link,
.social-links .tripadvisor-link img {
    display: none;
}

/* Mevcut footer section başlık stili ile aynı olması için */
.footer-section h3, .follow-us {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: left;
}

/* Mevcut social-links stillerini koru */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Social links container için stil */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

/* Legal links için stil */
.legal-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-links h3 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 15px;
    width: 100%;
}

.legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.legal-links ul li {
    margin: 0;
    text-align: center;
    width: 100%;
}

.legal-links ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
    text-align: center;
    width: auto;
}

.legal-links ul li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(10px);
}

/* Footer bottom kısmı için stil */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 30px;
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Video Hero Section */
.video-hero {
    /* ... tüm video-hero stilleri ... */
}

/* Discover Section Styles */
.discover-section {
    background: linear-gradient(45deg, #000, #1a1a1a) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discover-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.discover-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.discover-text-content {
    flex: 1;
}

.discover-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.discover-description p {
    color: #D4AF37; /* Altın rengi metin */
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* Stats container için stil güncellemesi */
.stats-container {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.stat-label {
    color: #888; /* Gri metin rengi */
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discover-image {
    flex: 1;
    position: relative;
}

.discover-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.discover-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
    z-index: 1;
}

.discover-image:hover img {
    transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .discover-content {
        gap: 40px;
    }
    
    .discover-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .discover-content {
        flex-direction: column;
    }
    
    .discover-text-content {
        text-align: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .discover-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .discover-section {
        padding: 60px 0;
    }
    
    .discover-content h1 {
        font-size: 2.2rem;
    }
    
    .discover-description p {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Neden Bizimle Section */
.why-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Acente Bayilik Sistemi */
.agency-system {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.agency-content {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.agency-text .lead {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.agency-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.agency-feature {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.agency-feature:hover {
    transform: translateY(-10px);
}

.agency-feature .feature-icon {
    font-size: 3rem;
    color: #E31E24; /* Sender Tour kırmızısı */
    margin-bottom: 20px;
}

.agency-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.agency-feature p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Neden Bizimle Section için ikon rengi güncelleme */
.why-us .feature-icon {
    color: #E31E24; /* Sender Tour kırmızısı */
}

/* Responsive */
@media (max-width: 992px) {
    .agency-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .agency-features {
        grid-template-columns: 1fr;
    }
    
    .agency-text .lead {
        font-size: 1.1rem;
    }
}

/* Header Stilleri Güncelleme */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    color: #D4AF37; /* Altın rengi */
    font-size: 1.8rem;
    font-weight: 600;
}

/* İkon rengi güncellemesi */
.feature-icon, 
.agency-feature .feature-icon,
.why-us .feature-icon {
    color: #D4AF37; /* Altın rengi */
}

/* İkon rengi güncellemesi */
.feature-icon, 
.agency-feature .feature-icon,
.why-us .feature-icon {
    color: #D4AF37; /* Altın rengi */
}

/* Footer Stilleri Güncelleme */
.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.contact-item span {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: #D4AF37;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.footer-section h3, .follow-us {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

/* Başlıklar için altın çizgi efekti */
.footer-section h3::after, .follow-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #D4AF37, transparent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Video Overlay Güncelleme */
.video-overlay h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.video-overlay p {
    font-size: 2rem;
    color: white;
    font-weight: 300;
}

/* Menu Dropdown Styles */
.menu-dropdown {
    position: relative;
    margin-right: auto;
    margin-left: 20px;
    transform: translateX(-50px);
}

.menu-btn {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn:hover span {
    background: #D4AF37;
}

.menu-btn:hover span:nth-child(2) {
    width: 70%;
}

/* Menü açıkken ikonun görünümü */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 10px); /* Menü butonu ile dropdown arasında boşluk bırak */
    min-width: 200px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    border-radius: 8px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Dropdown ile menü butonu arasındaki boşluğu dolduran görünmez bir alan oluştur */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px; /* Menü ile dropdown arasındaki boşluk kadar */
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding-left: 30px;
}

/* Hover durumunda dropdown'ı göster */
.menu-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hotel Slider Styles */
.hotel-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

/* Hover durumunda slider kontrollerini göster */
.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 1;
    z-index: 99;
}

.hotel-item:hover .hotel-overlay {
    opacity: 1;
    pointer-events: auto;
}

.hotel-logo {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-bottom: 0.5rem;
}

.hotel-item:hover .hotel-logo {
    opacity: 1;
}

/* Overlay içindeki elemanların düzeni için */
.hotel-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hotel-info {
    text-align: center;
    margin-bottom: 1rem;
}

.hotel-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

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

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Yeni hotel-card yapısı */
.hotel-card {
    position: relative;
    background-color: #fff;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hotel-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

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

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Hotel Logos Section */
.hotel-logos {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.logo-slider-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    background-color: #fff;
    white-space: nowrap;
}

.logo-slider.auto-scroll {
    animation: scrollLogos 30s linear infinite;
    width: max-content; /* Tüm logoları tek satırda göstermek için */
    display: flex; /* Ensure logos are in a row */
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.5rem)); /* Account for gap between items */
    }
}

/* Durdurmak için hover devre dışı bırakılıyor - sürekli akış için */
.logo-slider.auto-scroll:hover {
    animation-play-state: paused;
}

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

/* Land of Legends ve Rixos logoları için özel boyutlandırma */
.logo-item.large-logo {
    width: 160px;
    height: 80px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }
}

/* Kaydırma okları için stil güncelleme */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: #333; /* Ok rengini koyu gri yaptık */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 24px;
    padding: 10px;
}

.prev-arrow {
    left: 0;
    opacity: 0; /* Başlangıçta sol ok gizli */
    visibility: hidden;
    transition: all 0.3s ease;
}

.next-arrow {
    right: 0;
    opacity: 1;
}

.slider-arrow:hover {
    color: #000; /* Hover durumunda siyah */
}

/* Ok ikonları için stil */
.slider-arrow i {
    transition: transform 0.3s ease;
}

.prev-arrow:hover i {
    transform: translateX(-5px);
}

.next-arrow:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }
    
    .slider-arrow {
        font-size: 20px;
    }
}

/* Otel isimlerini kaldır */
.logo-item .hotel-name {
    display: none;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .logo-slider {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-slider {
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .logo-item {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-slider {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, 1fr);
    }
}

/* Container stillerini sıfırla */
.container-fluid, .container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Dil dropdown içindeki bayraklar için de aynı stil */
.lang-dropdown-content .lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    aspect-ratio: 1/1;
}

/* Biz Kimiz Section Styles */
.main-content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background-color: #000;
}

.our-story-section {
    background: linear-gradient(135deg, #000, #1a1a1a, #000) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100" stroke="rgba(255,215,0,0.03)" stroke-width="1"/><path d="M100,0 L0,100" stroke="rgba(255,215,0,0.03)" stroke-width="1"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.story-image {
    flex: 1;
    position: relative;
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
    perspective: 1000px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    filter: saturate(1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    opacity: 0.9;
    border-radius: 10px;
}

.story-image .main-img {
    grid-column: 1;
    grid-row: 1 / 3;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.story-image .sub-img:first-of-type {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    transform: translateY(0) translateX(10px);
}

.story-image .sub-img:last-of-type {
    grid-column: 2;
    grid-row: 2;
    z-index: 1;
    transform: translateY(0) translateX(10px);
}

.story-image:hover .main-img {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
    opacity: 1;
}

.story-image:hover .sub-img:first-of-type,
.story-image:hover .sub-img:last-of-type {
    transform: translateX(0);
    border-color: rgba(255, 215, 0, 0.5);
    opacity: 1;
}

.story-image img:hover {
    filter: saturate(1.2) brightness(1.1);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.02);
    z-index: 10;
}

.story-content {
    flex: 1;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.story-content h2 {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.story-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.story-content h4 {
    font-size: 18px;
    color: rgba(255, 215, 0, 0.7);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 1px;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .our-story-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .story-image, .story-content {
        width: 100%;
    }
    
    .story-image {
        height: 550px;
    }
    
    .story-content h2 {
        font-size: 36px;
    }
    
    .story-content h3 {
        font-size: 24px;
    }
    
    .story-content h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 80px 0;
    }
    
    .story-image {
        height: 500px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .story-image .main-img {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .story-image .sub-img:first-of-type {
        grid-column: 1;
        grid-row: 2;
        transform: translateY(0) translateX(0);
    }
    
    .story-image .sub-img:last-of-type {
        grid-column: 2;
        grid-row: 2;
        transform: translateY(0) translateX(0);
    }
    
    .story-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .story-image {
        height: 650px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .story-image .main-img,
    .story-image .sub-img:first-of-type,
    .story-image .sub-img:last-of-type {
        width: 100%;
    }
    
    .story-image .main-img {
        height: 40%;
    }
    
    .story-image .sub-img:first-of-type,
    .story-image .sub-img:last-of-type {
        height: 30%;
        transform: translateX(0);
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-content h2 {
        font-size: 28px;
    }
}

/* Eski TripAdvisor stillerini kaldır */
.social-links .tripadvisor-link,
.social-links .tripadvisor-link img {
    display: none;
}

/* Mevcut footer section başlık stili ile aynı olması için */
.footer-section h3, .follow-us {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: left;
}

/* Mevcut social-links stillerini koru */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Contact bilgileri için hover efekti */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

/* Telefon ve mail için link stilleri */
.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

/* Legal links için stil güncelleme */
.legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
}

.legal-links ul li {
    margin: 0;
    text-align: left;
}

.legal-links ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
}

.legal-links ul li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(10px);
}

/* Offcanvas Menu Styles */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    padding: 0;
}

/* Kapatma butonu için yeni stil */
.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
    border-radius: 50%;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
}

/* Menu items için güncelleme */
.menu-items {
    padding: 20px 40px;
    flex-grow: 0;
    border: none;
    overflow: visible;
    height: auto;
    margin-bottom: 0;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 60px;
}

.menu-logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-top: 60px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Menu items hover efekti güncelleme */
.menu-items a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 300;
    letter-spacing: 2px;
    border: none;
    margin: 0;
}

.menu-items a:hover {
    color: #D4AF37;
    padding-left: 20px;
    letter-spacing: 3px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    border: none;
}

.menu-items a:last-child {
    border: none;
    padding-bottom: 12px;
    border-bottom: none !important;
}

/* Menu Footer Styles güncelleme */
.menu-footer {
    padding: 15px 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(212, 175, 55, 0.05));
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    overflow: visible;
    margin-top: -40px;
}

.menu-footer-section {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 10px;
}

.menu-footer-section h3 {
    color: #D4AF37;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    margin-bottom: 5px;
}

.menu-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-footer {
        margin-top: -30px;
        gap: 5px;
    }
}

/* Contact Us Section */
.menu-footer-section {
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-footer-section h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Contact Info */
.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-contact-item {
    padding: 8px;
}

.menu-contact-item i {
    color: #D4AF37;
    width: 20px;
    text-align: center;
}

.menu-contact-item span,
.menu-contact-item a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.menu-contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

/* Legal Links */
.legal-links {
    margin-top: 10px;
}

.legal-links h3 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 15px;
}

.legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.legal-links ul li {
    margin: 0;
    text-align: center;
}

.legal-links ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
    text-align: center;
}

.legal-links ul li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(10px);
}

/* Social Media */
.menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
}

.menu-social a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-social a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-footer {
        padding: 20px;
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .menu-logo {
        width: 200px;
        margin-bottom: 30px;
        margin-top: -50px;
        align-self: center;
    }

    .menu-contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .menu-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
    }

    .menu-contact-item i {
        color: #D4AF37;
        font-size: 18px;
        width: 20px;
    }

    .menu-contact-item a {
        color: #fff;
        text-decoration: none;
    }

    .menu-social {
        display: flex;
        gap: 15px;
        margin-top: 10px;
        padding-left: 20px;
    }

    .menu-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #D4AF37;
    }

    .menu-social a i {
        font-size: 18px;
        color: #D4AF37;
        transition: all 0.3s ease;
    }

    .menu-social a:hover {
        background: #D4AF37;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .menu-social a:hover i {
        color: #000;
    }
}

@media (max-width: 576px) {
    .menu-footer {
        padding: 15px;
        gap: 15px;
    }

    .menu-footer-section {
        padding: 12px;
    }

    .menu-footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .menu-contact-item,
    .legal-links a {
        font-size: 12px;
        padding: 8px;
    }

    .menu-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Logo slider scroll durumuna göre ok görünürlüğü */
.logo-slider.scrolled .prev-arrow {
    opacity: 1;
    visibility: visible;
}

/* Menu overlay stil güncellemesi */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive düzenlemeler */
@media (max-width: 576px) {
    .offcanvas-menu {
        width: 100%; /* Tam ekran menü */
        left: -100%;
    }
    
    .menu-items a {
        font-size: 18px; /* Daha küçük font */
    }
}

/* Image Gallery Styles güncelleme */
.image-gallery {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Luxury Collection yazısı için stil güncelleme */
.image-gallery::before {
    content: 'LUXURY COLLECTION';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px; /* Yazı boyutunu küçülttük */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07); /* Opaklığı artırdık */
    white-space: nowrap;
    letter-spacing: 10px; /* Harf aralığını azalttık */
    pointer-events: none;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    z-index: 1;
    width: 100%;
    text-align: center;
}

/* Gallery container'ın z-index'ini artır */
.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    height: 600px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Yazının üzerinde görünmesi için */
}

/* Responsive düzenleme */
@media (max-width: 1200px) {
    .image-gallery::before {
        font-size: 100px;
        letter-spacing: 8px;
    }
}

@media (max-width: 768px) {
    .image-gallery::before {
        font-size: 60px;
        letter-spacing: 5px;
    }
}

/* Gallery item güncelleme */
.gallery-item {
    flex: 0 0 200px !important;
    height: 100%;
    position: relative;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item:hover {
    flex: 0 0 500px !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Slider dots güncelleme */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

/* Image overlay güncelleme */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 60px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay h2 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.image-overlay p {
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Animasyon için stil */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-overlay h2,
.image-overlay p {
    animation: slideIn 0.5s ease forwards;
}

/* Main Content Container ekleme */
.main-content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background-color: #000;
}

/* Diğer section'lar için güncelleme */
.hotel-logos,
.our-story-section,
.discover-section,
.site-footer {
    background: #fff;
}

/* Header güncelleme */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .overlay-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .video-content h1 {
        font-size: 32px;
    }

    .video-content h2 {
        font-size: 48px;
    }
}

/* 3D Card Slider Styles */
.card-slider-section {
    background-color: #000;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card-slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.card-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.slider-card {
    position: absolute;
    width: 400px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    filter: brightness(0.7) blur(2px);
}

.slider-card.active {
    transform: translateX(0) translateZ(0) rotateY(0);
    filter: brightness(1) blur(0);
    z-index: 4;
}

.slider-card.prev {
    transform: translateX(-50%) translateZ(-300px) rotateY(25deg);
    z-index: 3;
}

.slider-card.next {
    transform: translateX(50%) translateZ(-300px) rotateY(-25deg);
    z-index: 3;
}

.slider-card.hidden {
    transform: translateX(0) translateZ(-600px);
    opacity: 0;
    pointer-events: none;
}

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

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.card-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slider-card {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .card-slider-section::before {
        font-size: 60px;
    }

    .slider-card {
        width: 300px;
        height: 250px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-subtitle {
        font-size: 14px;
    }

    .card-description {
        font-size: 12px;
    }
}

/* Luxury Title Section - güncelleme */
.luxury-title-section {
    background-color: transparent;
    padding: 0 0 60px 0;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 10;
    border-bottom: none;
}

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

.luxury-main-title {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: titleFade 1s ease-in-out;
}

.luxury-title-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0), #ffd700, rgba(255, 215, 0, 0));
    margin: 20px auto;
    position: relative;
}

.luxury-title-line::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd700;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.luxury-subtitle {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    animation: subtitleFade 1s ease-in-out 0.5s both;
}

@media (max-width: 768px) {
    .luxury-title-section {
        padding: 40px 0;
    }

    .luxury-main-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .luxury-subtitle {
        font-size: 16px;
    }
}

/* Our Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
    color: #ffd700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
}

.services-section .container {
    max-width: 100%;
    padding: 0 30px;
}

.services-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox için */
    -ms-overflow-style: none; /* IE ve Edge için */
}

.services-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için */
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.slider-indicator.active {
    background-color: #ffd700;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

/* Daha büyük ekranlar için ekstra stil */
@media (min-width: 1400px) {
    .flip-card {
        width: 400px;
        height: 520px;
    }
    
    .card-front-content h3 {
        font-size: 26px;
    }
    
    .card-front-content p {
        font-size: 16px;
    }
    
    .discover-more-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Flip Card Styles */
.flip-card {
    width: 380px;
    height: 500px;
    perspective: 1500px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.flip-card:hover {
    transform: translateY(-5px);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #000;
    color: white;
    display: flex;
    flex-direction: column;
}

.flip-card-front img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-front-content {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    text-align: left;
    background: linear-gradient(to bottom, #171717, #0a0a0a);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.flip-card-front:hover .card-front-content {
    height: 70%;
}

.card-front-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-front-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
    max-height: 0;
    opacity: 0.7;
    transition: all 0.4s ease;
    overflow: hidden;
}

.flip-card-front:hover .card-front-content p {
    max-height: 180px;
    opacity: 1;
}

.flip-card-front img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: all 0.4s ease;
}

.flip-card-front:hover img {
    height: 35%;
}

.discover-more-btn {
    background: linear-gradient(90deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: auto;
}

.flip-card-front:hover .discover-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.discover-more-btn:hover {
    background: linear-gradient(90deg, #ffd700, #d4af37);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Back side styles */
.flip-card-back {
    background: linear-gradient(135deg, #111, #2a2a2a);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-back-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.card-back-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-back-slider img.active {
    opacity: 1;
}

.slider-nav-back {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
}

.prev-btn-back {
    left: 15px;
}

.next-btn-back {
    right: 15px;
}

.slider-nav-back:hover {
    background-color: rgba(212, 175, 55, 0.8);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
    width: 100%;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: #ffd700;
    transform: scale(1.2);
}

.back-to-front-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 30;
}

.back-to-front-btn:hover {
    background: linear-gradient(90deg, #ffd700, #d4af37);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px;
        gap: 20px;
    }
    
    .flip-card {
        width: 300px;
        height: 450px;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .services-container {
        padding: 10px;
        gap: 15px;
    }
    
    .flip-card {
        width: 280px;
        height: 420px;
        margin: 5px;
    }
    
    .card-front-content {
        padding: 15px;
    }
    
    .card-front-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .card-front-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .discover-more-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .flip-card {
        width: 260px;
        height: 400px;
        margin: 5px;
    }
    
    .services-container {
        padding: 10px;
        gap: 10px;
    }
    
    .card-front-content h3 {
        font-size: 18px;
    }
    
    .card-front-content p {
        font-size: 13px;
    }
    
    .discover-more-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Our Destinations Section */
.destinations-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.destinations-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
}

.destinations-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
}

.destination-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.explore-btn {
    display: none;
}

.destination-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.destination-slider {
    position: relative;
    background-color: #000;
    overflow: hidden;
    height: 600px;
}

.destination-main-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.destination-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.destination-main-image img.active {
    opacity: 1;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 40px 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, transparent);
    color: white;
    z-index: 2;
}

.destination-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.destination-thumbnails {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
    width: 120px;
}

.thumbnail-item {
    width: 100%;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.destination-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 3;
}

.dest-nav-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dest-nav-btn:hover {
    background-color: #ffd700;
    color: #000;
    border-color: #ffd700;
}

.destination-dots {
    display: flex;
    gap: 10px;
}

.destination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-dot.active {
    background-color: #ffd700;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .destination-main-image {
        height: 500px;
    }
    
    .destination-thumbnails {
        right: 20px;
    }
    
    .thumbnail-item {
        width: 100px;
        height: 150px;
    }
}

@media (max-width: 991px) {
    .destination-title {
        font-size: 36px;
    }
    
    .destination-description {
        font-size: 16px;
    }
    
    .destination-thumbnails {
        display: none;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 40px 0;
    }

    .destinations-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .destination-slider {
        height: auto;
        min-height: 450px;
    }

    .destination-main-image {
        height: 450px;
    }

    .destination-overlay {
        padding: 30px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 60%, transparent);
    }

    .destination-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .destination-description {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: rgba(255,255,255,0.9);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .destination-controls {
        bottom: 15px;
        gap: 20px;
    }

    .dest-nav-btn {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.15);
        border: none;
    }

    .destination-dots {
        gap: 8px;
    }

    .destination-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .destinations-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .destination-main-image {
        height: 400px;
    }

    .destination-overlay {
        padding: 25px 15px;
    }

    .destination-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .destination-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .dest-nav-btn {
        width: 32px;
        height: 32px;
    }
}

.destination-title, .destination-description {
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.destination-title.animate-in, .destination-description.animate-in {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    /* Header adjustments */
    .custom-header {
        padding: 15px 20px;
    }
    
    .sender-logo {
        height: 150px;
    }
    
    /* Menu adjustments */
    .offcanvas-menu {
        width: 100%;
        left: -100%;
    }
    
    .menu-items {
        padding: 40px 20px 0 20px;
        margin-bottom: 120px;
    }
    
    .menu-items a {
        font-size: 20px;
        padding: 12px 0;
    }
    
    /* Services section adjustments */
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }
    
    .flip-card {
        width: 100%;
        max-width: 350px;
        height: 450px;
        margin: 0 auto;
    }
    
    .card-front-content {
        height: 45%;
    }
    
    /* Luxury Hotels section adjustments */
    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .hotel-item {
        aspect-ratio: 16/9;
    }
    
    .hotel-overlay h3 {
        font-size: 24px;
    }
    
    .hotel-overlay p {
        font-size: 16px;
    }
    
    /* Destinations section adjustments */
    .destination-slider {
        height: 400px;
    }
    
    .destination-title {
        font-size: 28px;
    }
    
    .destination-description {
        font-size: 14px;
    }
    
    .destination-thumbnails {
        display: none;
    }
    
    /* Our Story section adjustments */
    .our-story-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-content h2 {
        font-size: 32px;
    }
    
    .story-content h3 {
        font-size: 24px;
    }
    
    .story-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Smaller mobile devices */
    .sender-logo {
        height: 120px;
    }
    
    .menu-items a {
        font-size: 18px;
    }
    
    .flip-card {
        height: 420px;
    }
    
    .card-front-content h3 {
        font-size: 18px;
    }
    
    .card-front-content p {
        font-size: 14px;
    }
    
    .destination-slider {
        height: 350px;
    }
    
    .destination-title {
        font-size: 24px;
    }
    
    .hotel-overlay h3 {
        font-size: 20px;
    }
    
    .hotel-overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .sender-logo {
        height: 100px;
    }
    
    .flip-card {
        height: 400px;
    }
    
    .destination-slider {
        height: 300px;
    }
    
    .story-content h2 {
        font-size: 28px;
    }
    
    .story-content h3 {
        font-size: 20px;
    }
    
    .story-content p {
        font-size: 14px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .flip-card-front:hover .card-front-content {
        height: 45%;
    }
    
    .flip-card-front:hover img {
        height: 55%;
    }
    
    .card-front-content p {
        max-height: none;
        opacity: 1;
    }
    
    .discover-more-btn {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    /* ... existing code ... */
    
    /* Luxury Hotels mobile layout */
    .luxury-hotels-section {
        position: relative;
        width: 100%;
        height: 100vh;
        background: #000;
    }

    .hotel-grid {
        width: 100%;
        height: 100vh;
        padding: 0;
        position: relative;
    }

    .hotel-item {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 0;
    }

    .hotel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .discover-section-title {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #000;
        padding: 15px 0;
        text-align: center;
        z-index: 10;
    }

    .discover-section-title h2 {
        color: #fff;
        font-size: 1.2rem;
        margin: 0;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .hotel-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        text-align: left;
    }

    .hotel-location h3 {
        font-size: 2.5rem;
        margin: 0;
        color: #fff;
        font-weight: 600;
    }

    .hotel-location p {
        font-size: 1.2rem;
        margin: 5px 0 0;
        color: #fff;
        opacity: 0.9;
    }

    @media (max-width: 992px) {
        .hotel-location h3 {
            font-size: 2rem;
        }
        
        .hotel-location p {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .hotel-item {
            height: 80vh;
        }
        
        .hotel-location h3 {
            font-size: 1.8rem;
        }
        
        .discover-section-title h2 {
            font-size: 1rem;
        }
    }
}

@media (max-width: 576px) {
    .luxury-hotels-header {
        padding: 30px 15px;
    }

    .luxury-hotels-title {
        font-size: 28px;
    }

    .luxury-hotels-subtitle {
        font-size: 14px;
    }

    .hotel-grid {
        padding: 15px;
        gap: 15px;
        margin-top: 100px;
    }

    .hotel-item {
        height: 200px;
    }

    .hotel-overlay {
        padding: 15px;
    }

    .hotel-overlay h3 {
        font-size: 20px;
    }

    .hotel-overlay p {
        font-size: 13px;
    }
}

/* Menu Footer Mobile Styles */
@media (max-width: 768px) {
    .menu-footer {
        padding: 20px;
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .menu-logo {
        width: 200px;
        margin-bottom: 30px;
        margin-top: -50px;
    }

    .menu-contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .menu-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        padding: 5px 15px;
    }

    .menu-contact-item i {
        color: #D4AF37;
        font-size: 18px;
    }

    .menu-contact-item a {
        color: #fff;
        text-decoration: none;
    }

    .menu-social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .menu-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #D4AF37;
    }

    .menu-social a:hover {
        background: #D4AF37;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .menu-social a i {
        font-size: 18px;
        color: #D4AF37;
        transition: all 0.3s ease;
    }

    .menu-social a:hover i {
        color: #000;
    }
}

@media (max-width: 576px) {
    .menu-footer {
        padding: 15px;
        gap: 15px;
    }

    .menu-footer-section {
        padding: 12px;
    }

    .menu-footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .menu-contact-item,
    .legal-links a {
        font-size: 12px;
        padding: 8px;
    }

    .menu-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Menu Items Adjustment */
.menu-items {
    padding: 20px 40px;
    margin-bottom: 0;
    overflow-y: auto;
    flex: 1;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0;
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, #D4AF37, transparent);
    }

    /* Contact Section */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(10px);
    }

    .contact-item i {
        color: #D4AF37;
        font-size: 18px;
        width: 20px;
    }

    /* Legal Links Section */
    .legal-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .legal-links ul li {
        margin-bottom: 15px;
    }

    .legal-links ul li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 5px 0;
        display: inline-block;
    }

    .legal-links ul li a:hover {
        color: #D4AF37;
        transform: translateX(10px);
    }

    /* Follow Us Section */
    .social-links {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .social-links a {
        background-color: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .social-links a:hover {
        background-color: #D4AF37;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 0;
    }

    .footer-container {
        gap: 30px;
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-item,
    .legal-links ul li a {
        font-size: 14px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Luxury Hotels Section Mobile Styles */
@media (max-width: 768px) {
    .luxury-hotels-section {
        position: relative;
        width: 100%;
        min-height: auto;
        background: #000;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .luxury-title-section {
        position: sticky;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 40px 20px;
        text-align: center;
        z-index: 100;
        backdrop-filter: blur(10px);
    }

    .luxury-main-title {
        font-size: 32px;
        color: #FFD700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        background: linear-gradient(45deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .luxury-subtitle {
        font-size: 16px;
        color: #fff;
        margin: 0;
        line-height: 1.4;
    }

    .card-slider-container {
        width: 100%;
        height: calc(100vh - 120px);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .card-slider {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-card {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .slider-card.active {
        opacity: 1;
        z-index: 2;
    }

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

    .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        z-index: 3;
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0;
        z-index: 10;
    }

    .slider-nav button {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 10px;
    }

    .slider-nav button:first-child {
        margin-left: -16px;
    }

    .slider-nav button:last-child {
        margin-right: -16px;
    }

    .slider-nav button:hover {
        background: rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 576px) {
    .slider-nav button {
        width: 28px;
        height: 28px;
    }

    .slider-nav button:first-child {
        margin-left: -14px;
    }

    .slider-nav button:last-child {
        margin-right: -14px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* ... existing code ... */
    
    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0;
        z-index: 10;
    }

    .slider-nav button {
        width: 32px;
        height: 32px;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .slider-nav button:first-child {
        position: absolute;
        left: 0;
        border-radius: 0 4px 4px 0;
    }

    .slider-nav button:last-child {
        position: absolute;
        right: 0;
        border-radius: 4px 0 0 4px;
    }

    .slider-nav button:hover {
        background: rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 576px) {
    .slider-nav button {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

.legal-links {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legal-links h3 {
    text-align: left;
    padding-right: 0;
    margin-bottom: 15px;
    width: auto;
}

.legal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    width: auto;
}

.legal-links ul li {
    margin: 0;
    text-align: left;
    width: auto;
}

.legal-links ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
    text-align: left;
    width: auto;
}

.legal-links ul li a:hover {
    background: transparent;
    color: #D4AF37;
    transform: none;
}

@media (max-width: 768px) {
    .offcanvas-menu {
        width: 100%;
        left: -100%;
        overflow: visible;
    }

    .menu-items {
        padding: 15px 20px;
        margin-bottom: 0;
        overflow: visible;
        height: auto;
        gap: 3px;
    }

    .menu-logo {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .menu-items a {
        font-size: 18px;
        padding: 5px 0;
    }

    .menu-footer {
        padding: 10px 20px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .menu-contact-info {
        gap: 6px;
    }

    .menu-contact-item {
        padding: 4px;
        font-size: 14px;
    }

    .legal-links {
        margin-top: 6px;
    }

    .legal-links ul {
        gap: 2px;
    }

    .menu-social {
        margin-top: 8px;
        gap: 12px;
    }

    .menu-social a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .menu-items {
        padding: 10px 15px;
    }

    .menu-logo {
        height: 70px;
        margin-top: 15px;
    }

    .menu-items a {
        font-size: 16px;
        padding: 4px 0;
    }

    .menu-footer {
        padding: 8px 15px;
        margin-bottom: 15px;
    }

    .menu-contact-item {
        padding: 3px;
        font-size: 13px;
    }

    .menu-social {
        margin-top: 6px;
        gap: 10px;
    }

    .menu-social a {
        width: 32px;
        height: 32px;
    }
}

.luxury-hotels-section {
    position: relative;
    width: 100%;
    min-height: 120vh;
    background: #000;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.luxury-title-content {
    width: 40%;
    padding: 60px;
    padding-bottom: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-slider-section {
    width: 60%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .luxury-hotels-section {
        flex-direction: column;
    }

    .luxury-title-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .hotel-slider-section {
        width: 100%;
        height: 70vh;
        position: relative;
        overflow: visible;
    }

    .card-slider-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: visible;
    }

    .card-slider {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease-out;
    }

    .slider-card {
        position: absolute;
        width: 80%;
        height: 100%;
        transition: all 0.3s ease;
        border-radius: 20px;
        overflow: hidden;
    }

    .slider-card.active {
        z-index: 3;
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .slider-card.prev {
        z-index: 2;
        transform: translateX(-70%) scale(0.8);
        opacity: 0.6;
    }

    .slider-card.next {
        z-index: 2;
        transform: translateX(70%) scale(0.8);
        opacity: 0.6;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hotel-slider-section {
        height: 60vh;
    }

    .slider-card {
        width: 85%;
    }

    .slider-card.prev {
        transform: translateX(-60%) scale(0.8);
    }

    .slider-card.next {
        transform: translateX(60%) scale(0.8);
    }
}

.menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
}

.menu-social a i {
    font-size: 18px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-social a:hover i {
    color: #000;
}

@media (max-width: 992px) {
    .menu-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #D4AF37;
    }

    .menu-social a i {
        font-size: 18px;
        color: #D4AF37;
        transition: all 0.3s ease;
    }

    .menu-social a:hover {
        background: #D4AF37;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .menu-social a:hover i {
        color: #000;
    }
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

.menu-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin: 40px auto 30px;
    display: block;
    transition: all 0.3s ease;
}

.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
}

.menu-contact-item {
    padding: 8px;
    display: flex;
    align-items: center;
}

.menu-contact-item i {
    color: #D4AF37;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.menu-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-left: 20px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-logo {
        width: 200px;
        margin: 30px auto 20px;
    }
    
    .menu-contact-info {
        align-items: flex-start;
    }
}

.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 5px;
    align-items: center;
    text-align: center;
}

.menu-contact-item {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-contact-item i {
    color: #D4AF37;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.menu-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    padding-left: 0;
    margin-bottom: 20px;
    justify-content: center;
}

/* Sosyal Medya İkonları - Birleştirilmiş Stiller */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background: transparent;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Mobil için sosyal medya ikonları */
@media (max-width: 768px) {
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}