/* Base Styles */
:root {
    --primary-color: #001440; /* Koyu lacivert */
    --secondary-color: #D4AF37; /* Altın sarısı */
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #00103a;
    --border-radius: 8px;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 80px; /* Match new header height */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--dark-bg);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Language Switching */
.en-content {
    display: none;
}

.language-switch {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.language-switch button {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    font-weight: 500;
    padding: 5px 8px;
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
}

.language-switch button.active,
.language-switch button:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.language-switch button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.language-switch span {
    color: var(--light-text);
    margin: 0 5px;
    opacity: 0.5;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Match new navbar height */
}

.slider-container {
    position: relative;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.2s ease-in-out, transform 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    transform: scale(1.05);
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 20, 64, 0.3), rgba(0, 20, 64, 0.7));
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.slider-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 30px;
    transition: all 0.9s ease;
    transform: translateY(50px);
    opacity: 0;
    border-left: 3px solid var(--secondary-color);
    padding-left: 40px;
    text-align: left;
    margin-left: 50px;
}

.slider-slide.active .slider-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.slider-slide h1,
.slider-slide h2 {
    font-size: 4.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
}

.slide-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    font-style: italic;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: rgba(0, 20, 64, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

/* Removed duplicate slider button styles */

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-welcome {
    background: linear-gradient(to right, var(--primary-color), #001a5c);
    padding: 60px 0;
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(to left, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
}

.hero-welcome::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.welcome-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: linear-gradient(145deg, #D4AF37, #c9a52d);
    color: #001440;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: linear-gradient(145deg, #e0bd4d, #D4AF37);
    color: #001440;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Header & Navigation Styles */
.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(0, 20, 64, 0.85) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000 !important;
    padding: 1px 0 !important;
    transition: all 0.4s ease-in-out !important;
    backdrop-filter: blur(8px) !important;
    height: 80px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.header-container,
.logo,
.menu li a {
    height: 80px !important;
    line-height: 80px !important;
}

.main-header.scrolled {
    background-color: rgba(0, 20, 64, 0.95) !important;
    padding: 0 !important;
    height: 60px !important; /* Adjusted for new navbar height */
}

.main-header.scrolled .header-container,
.main-header.scrolled .logo,
.main-header.scrolled .menu li a {
    height: 60px !important;
    line-height: 60px !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.menu {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced gap */
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 0.8rem; /* Smaller font size */
}

.menu li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 2px 0;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: var(--secondary-color);
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 12px;
    height: 30px; /* Reduced height */
    margin-top: 5px; /* Small top margin for vertical centering */
}

.language-switch button {
    background: none;
    border: none;
    color: var(--light-text);
    opacity: 0.8;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
    padding: 4px 8px;
}

.language-switch button.active {
    color: var(--secondary-color);
    opacity: 1;
    font-weight: 600;
}

.language-switch button:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.language-switch span {
    color: var(--light-text);
    opacity: 0.5;
    font-size: 12px;
}

.whatsapp-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #25D366;
    color: white !important;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 13px; /* Reduced font size */
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
    height: 30px; /* Fixed height */
    line-height: 1; /* Better text alignment */
}

.whatsapp-header:hover {
    background-color: #20c15c;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-header i {
    font-size: 15px;
}

.reservation-button {
    margin-left: 3px;
    margin-top: 5px; /* Small top margin for vertical centering */
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1010; /* Diğer öğelerin üstünde olması için */
    background-color: rgba(0, 20, 64, 0.3); /* Hafif arka plan */
    border-radius: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 20, 64, 0.7), rgba(0, 20, 64, 0.7)), url('https://images.unsplash.com/photo-1635227364577-83482b16f5a4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 120px; /* Updated for taller navbar */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 1.1rem !important;
    margin-bottom: 40px !important;
    line-height: 1.6;
}

.hero .btn {
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image-home {
    margin: 30px 0;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), rgba(0, 20, 64, 0.3));
    z-index: 1;
    pointer-events: none;
}

.about-image-home img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.about-image-home img:hover {
    transform: scale(1.02);
}

.places-to-visit {
    margin-top: 40px;
    padding: 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.places-to-visit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.places-to-visit h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.tourist-spots {
    list-style: none;
    margin-top: 20px;
}

.tourist-spots li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.tourist-spots li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.amenities {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.amenities h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.amenities ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.amenities ul li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 20px;
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background-color: #fff;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.room-images {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.room-images::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
    pointer-events: none;
}

.room-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(1);
}

.room-images img.active {
    opacity: 1;
}

.room-card:hover .room-images img.active {
    transform: scale(1.05);
}

.image-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.image-nav button {
    background: rgba(0, 20, 64, 0.5);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    backdrop-filter: blur(2px);
}

.image-nav button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.room-card:hover .image-nav button {
    opacity: 1;
}

.room-info {
    padding: 30px;
    position: relative;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.room-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.room-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.room-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.room-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.room-amenities span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 20, 64, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.room-card:hover .room-amenities span {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.whatsapp-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(145deg, #25D366, #20c15c);
    color: white !important;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-room-btn:hover {
    background: linear-gradient(145deg, #20c15c, #18a34a);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--primary-color);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background-color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Rooms Section Styles */
.rooms-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light-bg), #fff);
    position: relative;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), transparent);
    pointer-events: none;
}

.rooms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.rooms-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rooms-intro::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.rooms-view-all {
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.view-all-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.view-all-btn:hover::before {
    left: 100%;
}

.rooms-grid {
    display: grid;    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.image-nav button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.room-card:hover .image-nav button {
    opacity: 1;
}

.room-info {
    padding: 30px;
    position: relative;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.room-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.room-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.room-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.room-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.room-amenities span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 20, 64, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.room-card:hover .room-amenities span {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.room-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.whatsapp-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #D4AF37, #c9a52d);
    color: #001440;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.whatsapp-room-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, #e0bd4d, #D4AF37);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), transparent);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(to bottom right, var(--primary-color), #00235c);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.info-item p, .info-item a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.contact-more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    pointer-events: none;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-more {
    margin-top: 25px;
    text-align: center;
}

/* Contact Section on Homepage */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/pattern-light.png');
    opacity: 0.05;
    pointer-events: none;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info-home {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 15px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(145deg, #D4AF37, #c9a52d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 20px;
    margin-right: 20px;
}

.info-details h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-color);
}

.info-details p {
    margin: 0;
    color: var(--text-color);
}

.info-details a {
    color: var(--text-color);
    transition: var(--transition);
}

.info-details a:hover {
    color: var(--secondary-color);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.contact-map-home {
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}

.footer-description {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-info {
    font-size: 14px;
    opacity: 0.8;
}

.footer-powered {
    font-size: 14px;
    opacity: 0.8;
}

.footer-powered strong {
    color: var(--accent-color);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Room card styles */
.room-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-home {
        margin: 25px 0;
    }
}

@media screen and (max-width: 768px) {    /* SIMPLIFIED MOBILE MENU */
    .menu {
        display: none;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #001440;
        text-align: center;
        padding: 50px 0;
        z-index: 9999;
    }

    /* Mobile menu active state */
    .menu.active {
        left: 0;
        display: block !important;
    }

    .menu li {
        margin: 20px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .about-image-home {
        margin: 20px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .room-images {
        height: 200px;
    }
    
    .hero-text {
        font-size: 0.9rem !important;
    }
    
    /* Adjust hero slider for header changes */
    .hero-slider {
        margin-top: -80px; /* Match navbar height */
    }
    
    /* Fix mobile buttons */
    .whatsapp-room-btn, .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .room-buttons {
        flex-direction: column;
    }
}
