/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background-light);
    scroll-behavior: smooth;
}

/* Section Transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

section:hover::before {
    opacity: 1;
}

/* Custom Properties */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #f5f5f5;
    --accent-color: #d4a574;
    --accent-hover: #c19a6b;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --text-grey: #666666;
    --background-light: #f8f8f8;
    --background-dark: #2c2c2c;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    --gradient-light: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    --gradient-dark: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Header ve Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0;
    font-weight: 700;
}

.logo span {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 15px;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.get-app-btn {
    background: #556B2F;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(85, 107, 47, 0.3);
    min-width: 80px;
}

.get-app-btn:hover {
    background: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.4);
}

.get-app-btn i {
    font-size: 20px;
    color: white;
}

.get-app-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-top: 7vw;
    padding-bottom: 7vw;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -50px;
    z-index: 1001;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.typewriter {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 4.2rem;
}

.typewriter-text {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cursor {
    color: var(--accent-color);
    font-weight: 700;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

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

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

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

/* Search Container */
.search-container {
    background: rgba(0,0,0,0.75);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    padding: 2rem 2.5rem;
    margin-top: 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 25px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-field {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-field:hover {
    transform: translateY(-2px);
}

.field-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.8;
}

.field-content {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-field:hover .field-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.field-content label {
    display: block;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.field-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    min-height: 1.5em;
    user-select: none;
}

.hidden-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.reservation-btn {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    white-space: nowrap;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.reservation-btn svg {
    transition: transform 0.3s ease;
}

.reservation-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .search-box {
        gap: 1.5rem;
        padding: 1.8rem 2rem;
    }
    .field-content {
        padding: 1.3rem 1.3rem 1.3rem 3.5rem;
    }
    .reservation-btn {
        padding: 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        padding: 6rem 0 2rem 0;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        position: relative;
        padding-top: 1rem;
    }
    
    .hero-text {
        text-align: center;
        max-width: 90%;
        margin: 0 auto 2rem auto;
        z-index: 5;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        opacity: 0.9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        line-height: 1.6;
    }
    
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 5rem 0 2rem 0;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-text {
        max-width: 95%;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        padding-top: 16vw;
        padding-bottom: 10vw;
        gap: 1.5rem;
    }
    .search-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
}

/* Hero Info */
.hero-info {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    animation: slideInRight 1s ease-out 1s both;
}

.info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.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: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

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

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

/* Hotels Section */
.hotels-section {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.hotels-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--background-dark), transparent);
    opacity: 0.1;
}

.hotels-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-weight: 700;
}

.hotels-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hotels-carousel::-webkit-scrollbar {
    display: none;
}
.hotel-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    min-width: 280px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}
.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hotel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.hotel-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hotel-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.hotel-features i {
    color: #d4a574;
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.per-night {
    color: #666666;
    font-size: 0.9rem;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #d4a574;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-heavy);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Property Section */
.property-section {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.property-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--background-dark), transparent);
    opacity: 0.05;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.property-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-text p {
    color: #666666;
    line-height: 1.6;
    max-width: 500px;
}

.property-year {
    font-size: 3rem;
    font-weight: 300;
    color: #e0e0e0;
    font-family: 'Playfair Display', serif;
}

.property-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.property-carousel::-webkit-scrollbar {
    display: none;
}

.property-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    min-width: 200px;
    flex-shrink: 0;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.property-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.property-card:hover::before {
    opacity: 1;
}

.property-image {
    height: 150px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.feature span {
    color: #ffffff;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* Rooms Section */
.rooms {
    padding: 5rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.rooms h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 12s ease-in-out infinite;
}

.amenities h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.amenity-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-heavy);
}

.amenity-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
    transition: transform 0.3s ease;
}

.amenity-card:hover svg {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.amenity-card p {
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--background-dark), transparent);
    opacity: 0.05;
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background-light);
    scroll-behavior: smooth;
}

/* Section Transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

section:hover::before {
    opacity: 1;
}

/* Custom Properties */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #f5f5f5;
    --accent-color: #d4a574;
    --accent-hover: #c19a6b;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --text-grey: #666666;
    --background-light: #f8f8f8;
    --background-dark: #2c2c2c;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    --gradient-light: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    --gradient-dark: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Header ve Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0;
    font-weight: 700;
}

.logo span {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 15px;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.get-app-btn {
    background: #556B2F;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(85, 107, 47, 0.3);
    min-width: 80px;
}

.get-app-btn:hover {
    background: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.4);
}

.get-app-btn i {
    font-size: 20px;
    color: white;
}

.get-app-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-top: 7vw;
    padding-bottom: 7vw;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -50px;
    z-index: 1001;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.typewriter {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 4.2rem;
}

.typewriter-text {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cursor {
    color: var(--accent-color);
    font-weight: 700;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

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

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

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

/* Search Container */
.search-container {
    background: rgba(0,0,0,0.75);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    padding: 2rem 2.5rem;
    margin-top: 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 25px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-field {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-field:hover {
    transform: translateY(-2px);
}

.field-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.8;
}

.field-content {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-field:hover .field-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.field-content label {
    display: block;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.field-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    min-height: 1.5em;
    user-select: none;
}

.hidden-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.reservation-btn {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    white-space: nowrap;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.reservation-btn svg {
    transition: transform 0.3s ease;
}

.reservation-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .search-box {
        gap: 1.5rem;
        padding: 1.8rem 2rem;
    }
    .field-content {
        padding: 1.3rem 1.3rem 1.3rem 3.5rem;
    }
    .reservation-btn {
        padding: 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        padding: 6rem 0 2rem 0;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        position: relative;
        padding-top: 1rem;
    }
    
    .hero-text {
        text-align: center;
        max-width: 90%;
        margin: 0 auto 2rem auto;
        z-index: 5;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        opacity: 0.9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        line-height: 1.6;
    }
    
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 5rem 0 2rem 0;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-text {
        max-width: 95%;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        padding-top: 16vw;
        padding-bottom: 10vw;
        gap: 1.5rem;
    }
    .search-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
}

/* Hero Info */
.hero-info {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    animation: slideInRight 1s ease-out 1s both;
}

.info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.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: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

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

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

/* Hotels Section */
.hotels-section {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.hotels-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--background-dark), transparent);
    opacity: 0.1;
}

.hotels-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-weight: 700;
}

.hotels-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hotels-carousel::-webkit-scrollbar {
    display: none;
}
.hotel-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    min-width: 280px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}
.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.hotel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.hotel-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hotel-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.hotel-features i {
    color: #d4a574;
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.per-night {
    color: #666666;
    font-size: 0.9rem;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #d4a574;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-heavy);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Property Section */
.property-section {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.property-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--background-dark), transparent);
    opacity: 0.05;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.property-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-text p {
    color: #666666;
    line-height: 1.6;
    max-width: 500px;
}

.property-year {
    font-size: 3rem;
    font-weight: 300;
    color: #e0e0e0;
    font-family: 'Playfair Display', serif;
}

.property-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.property-carousel::-webkit-scrollbar {
    display: none;
}

.property-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    min-width: 200px;
    flex-shrink: 0;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.property-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.property-card:hover::before {
    opacity: 1;
}

.property-image {
    height: 150px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.feature span {
    color: #ffffff;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* Rooms Section */
.rooms {
    padding: 5rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.rooms h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 12s ease-in-out infinite;
}

.amenities h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.amenity-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-heavy);
}

.amenity-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
    transition: transform 0.3s ease;
}

.amenity-card:hover svg {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.amenity-card p {
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
}

.gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--background-dark), transparent);
    opacity: 0.05;
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-container {
    display: flex;
    height: 100%;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

/* .mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
} */

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown - Removed */
/* .share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}
.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}
.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}
.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}
.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}
.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-container {
    display: flex;
    height: 100%;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}
@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
        border-radius: 16px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-container {
    display: flex;
    height: 100%;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}
@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 250px;
        border-radius: 16px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-container {
    display: flex;
    height: 100%;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}
.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
}

.room-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.room-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-size: 1.1rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.room-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.room-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.room-price .per-night {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.book-room-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: left 0.5s ease;
}

.book-room-btn:hover::before {
    left: 100%;
}

.book-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 900px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
} 

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-details p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-container {
    position: relative;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #e6c088);
    border-radius: 20px 20px 0 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-bottom-bar .bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-bottom-bar .bar-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-bottom-bar .bar-item.call {
    background: #1e3a8a;
    color: white;
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: #059669;
    color: white;
}

.mobile-bottom-bar .bar-item.share {
    background: #374151;
    color: white;
}

.mobile-bottom-bar .bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Share dropdown */
.share-dropdown {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown .share-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.share-dropdown .share-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.share-dropdown .share-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
/* Responsive Design */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 0;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-label {
        font-size: 0.8rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .property-year {
        font-size: 2rem;
        text-align: center;
    }
    
    .hotels-carousel,
    .property-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-image {
        width: 100%;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-content ul {
        margin-bottom: 1rem;
    }
    
    .room-content li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .search-item input,
    .search-item select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-label {
        font-size: 0.75rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
    
    .hotel-card,
    .property-card {
        min-width: 250px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .room-content p {
        font-size: 0.9rem;
    }
    
    .room-content li {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

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

.room-card,
.amenity-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

.modern-search {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(44,44,44,0.8);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.custom-date, .custom-guests {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-date:hover, .custom-date:focus-within,
.custom-guests:hover, .custom-guests:focus-within {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(212,165,116,0.2);
    transform: translateY(-2px);
}

.search-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-align: left;
    display: block;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.search-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 1.8em;
    user-select: none;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.custom-date input[type="date"],
.custom-guests select {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.search-btn {
    margin-left: 2.5rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,165,116,0.2);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

@media (max-width: 1200px) {
    .modern-search {
        gap: 2rem;
        padding: 2rem 2.5rem;
    }
    .custom-date, .custom-guests {
        min-width: 250px;
        padding: 1.8rem 2rem 1.3rem 2rem;
    }
}

@media (max-width: 900px) {
    .search-container {
        width: 95%;
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        z-index: 15;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
    }
    
    .search-field {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3.5rem;
        border-radius: 12px;
    }
    
    .field-content label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .field-value {
        font-size: 1rem;
        min-height: 1.4em;
    }
    
    .field-icon {
        left: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .reservation-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1.3rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .hero-text {
        margin-top: -240px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 98%;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .search-box {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .field-content {
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .field-content label {
        font-size: 0.75rem;
    }
    
    .field-value {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text {
        margin-top: -220px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero {
        padding-bottom: 5rem;
    }
} 

/* Premium Apart Tanıtım */
.premium-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: translateY(-10px);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.premium-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-text .description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .premium-image img {
        height: 400px;
    }
    
    .premium-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-apart {
        padding: 4rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .premium-image img {
        height: 300px;
    }
    
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-text .subtitle {
        font-size: 1rem;
    }
    
    .premium-text .description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

/* Odalarımız bölümündeki ul/li ve içindeki tüm elementler kesin beyaz */
.room-content ul, .room-content li, .room-content li *, .room-content ul * {
    color: #fff !important;
    background: none !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
}
.room-content li svg, .room-content ul svg {
    fill: #fff !important;
}
/* İletişim Sayfası Modern Stilleri */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-header {
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 165, 116, 0.3);
}

.contact-item .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-item .contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-item:hover .contact-icon::before {
    transform: translateX(100%);
}

.contact-item .contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item .contact-details p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.action-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: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-map h3 {
    font-size: 1.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 400px;
}

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

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

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-actions {
        justify-content: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-item .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-item .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .contact-map h3 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
.contact-item .contact-icon svg {
    fill: #ffffff;
}
.contact-item .contact-icon svg {
    fill: #ffffff !important;
}

.contact-item .contact-icon svg path {
    fill: #ffffff !important;
}

.contact-item .contact-icon svg * {
    fill: #ffffff !important;
}
/* Google Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.google-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.reviews-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.review-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #f4d03f, #d4a574);
    border-radius: 24px 24px 0 0;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8rem;
    color: rgba(212, 165, 116, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.reviewer-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reviewer-avatar:hover img {
    transform: scale(1.1);
}

.reviewer-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.star {
    color: #f4d03f;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(244, 208, 63, 0.3);
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.review-date {
    font-size: 0.95rem;
    color: #999;
    font-weight: 500;
    background: rgba(212, 165, 116, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.review-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #d4a574;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.google-review-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: left 0.5s ease;
}

.google-review-btn:hover::before {
    left: 100%;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

/* MOBİL OPTİMİZASYONLAR */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-header h2 {
        font-size: 2.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .review-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .review-date {
        align-self: flex-end;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .google-review-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 2.5rem 0;
    }
    
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-header p {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-details h4 {
        font-size: 1.1rem;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .google-review-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

/* Modern Room Features Styling */
.room-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.room-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.room-features-list .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.room-features-list .feature-item:hover::before {
    left: 100%;
}

.room-features-list .feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.room-features-list .feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.room-features-list .feature-item:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

.room-features-list .feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.room-features-list .feature-item:hover span {
    color: #ffffff;
    font-weight: 600;
}

/* Modern WhatsApp Button Styling */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-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: left 0.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-btn i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .room-features-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .room-features-list .feature-item {
        padding: 0.8rem 1rem;
    }
    
    .room-features-list .feature-item i {
        font-size: 1.3rem;
    }
    
    .room-features-list .feature-item span {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .room-features-list .feature-item {
        padding: 0.7rem 0.8rem;
    }
    
    .room-features-list .feature-item i {
        font-size: 1.2rem;
        width: 1.5rem;
    }
    
    .room-features-list .feature-item span {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* About Page Styling */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-text .subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-text .description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-features {
    padding: 5rem 0;
    background: #ffffff;
}

.about-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.about-gallery {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.about-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-gallery .gallery-item img:hover {
    transform: scale(1.05);
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    color: #ffffff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.cta-buttons .btn-primary:hover {
    background: #ffed4e;
    color: var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2,
    .about-features h2,
    .about-gallery h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
}

/* Modern Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-bar .bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-bottom-bar .bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-bottom-bar .bar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #e6c088);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mobile-bottom-bar .bar-item:hover::before,
.mobile-bottom-bar .bar-item:active::before {
    opacity: 0.1;
}

.mobile-bottom-bar .bar-item.call {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-bottom-bar .bar-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-bottom-bar .bar-item.call:hover,
.mobile-bottom-bar .bar-item.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mobile-bottom-bar .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-bottom-bar .bar-item i {
    font-size: 18px;
    color: inherit;
}

.mobile-bottom-bar .bar-item span {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Mobil Responsive Düzeltmesi */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 100px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .room-card {
        width: 100% !important;
        margin: 0 !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-bar {
        padding: 10px 15px;
    }
    
    .mobile-bottom-bar .bar-item {
        padding: 6px 12px;
    }
    
    .mobile-bottom-bar .icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .mobile-bottom-bar .bar-item i {
        font-size: 16px;
    }
    
    .mobile-bottom-bar .bar-item span {
        font-size: 10px;
    }
    
    .rooms-grid {
        padding: 0 10px !important;
    }
    
    .room-card {
        margin-bottom: 2rem !important;
    }
}
/* --- Premium Modern Mobile Bottom Bar: Tam Ekran, İkiye Bölünmüş --- */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 80px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    backdrop-filter: blur(10px);
  }
  .mobile-bottom-bar .bar-container {
    display: flex;
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .mobile-bottom-bar .bar-item {
    flex: 1;
    width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0;
    margin: 0;
    height: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .mobile-bottom-bar .bar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-bottom-bar .bar-item:hover::before {
    opacity: 1;
  }
  .mobile-bottom-bar .bar-item.call {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .mobile-bottom-bar .bar-item.whatsapp {
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .mobile-bottom-bar .bar-item.location {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .mobile-bottom-bar .icon-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1;
  }
  .mobile-bottom-bar .bar-item:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .mobile-bottom-bar .bar-item span {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    z-index: 1;
  }
  .mobile-bottom-bar .bar-item i {
    font-size: 1.2rem;
    z-index: 1;
  }
}
@media (max-width: 480px) {
  .mobile-bottom-bar {
    height: 70px;
  }
  .mobile-bottom-bar .icon-wrapper {
    width: 32px;
    height: 32px;
  }
  .mobile-bottom-bar .bar-item span {
    font-size: 0.75rem;
  }
  .mobile-bottom-bar .bar-item i {
    font-size: 1rem;
  }
}

/* Mobilde hero-text'i %35 aşağı al */
@media (max-width: 768px) {
    .hero-text {
        margin-top: 35% !important;
    }
}

/* Masaüstünde hero-text'i eski haline getir */
@media (min-width: 769px) {
    .hero-text {
        margin-top: -200px !important;
    }
}

/* Modern Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-cta .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: left 0.5s ease;
}

.gallery-cta .btn:hover::before {
    left: 100%;
}

.gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* Updated Google Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.google-logo {
    display: inline-block;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.reviews-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #f4d03f);
    border-radius: 20px 20px 0 0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 165, 116, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #f4d03f;
    font-size: 1.3rem;
    text-shadow: 0 2px 8px rgba(244, 208, 63, 0.5);
    animation: pulse 2s infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

.review-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.google-review-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: left 0.6s ease;
}

.google-review-btn:hover::before {
    left: 100%;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section,
    .reviews-section {
        padding: 4rem 0;
    }
    
    .gallery-header h2,
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-details h4 {
        font-size: 1.1rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .google-review-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-header h2,
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p,
    .reviews-header p {
        font-size: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .star {
        font-size: 1.1rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
/* Masaüstünde hero-text'i düzelt */
@media (min-width: 769px) {
    .hero-text {
        margin-top: 25% !important;
        margin-bottom: 3rem !important;
    }
    
    .search-container {
        margin-top: 2rem !important;
    }
}

/* Modern Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-cta .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: left 0.5s ease;
}

.gallery-cta .btn:hover::before {
    left: 100%;
}

.gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* Updated Google Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.google-logo {
    display: inline-block;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.reviews-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #f4d03f);
    border-radius: 20px 20px 0 0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 165, 116, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #f4d03f;
    font-size: 1.3rem;
    text-shadow: 0 2px 8px rgba(244, 208, 63, 0.5);
    animation: pulse 2s infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

.review-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.google-review-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: left 0.6s ease;
}

.google-review-btn:hover::before {
    left: 100%;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section,
    .reviews-section {
        padding: 4rem 0;
    }
    
    .gallery-header h2,
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-details h4 {
        font-size: 1.1rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .google-review-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-header h2,
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p,
    .reviews-header p {
        font-size: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .star {
        font-size: 1.1rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
    border: 1px solid rgba(212, 165, 116, 0.1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

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

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Gallery Item Cursor */
.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    pointer-events: none;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links a::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: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a i {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* WhatsApp özel rengi */
.social-links a[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-links a[href*="wa.me"]:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Instagram özel rengi */
.social-links a[href*="instagram.com"] {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-links a[href*="instagram.com"]:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Google Maps özel rengi */
.social-links a[href*="maps.app.goo.gl"] {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.social-links a[href*="maps.app.goo.gl"]:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links a i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.6rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Modern Social Media Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links a::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: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a i {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* WhatsApp özel rengi */
.social-links a[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-links a[href*="wa.me"]:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Instagram özel rengi */
.social-links a[href*="instagram.com"] {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-links a[href*="instagram.com"]:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Google Maps özel rengi */
.social-links a[href*="maps.app.goo.gl"] {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.social-links a[href*="maps.app.goo.gl"]:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links a i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.6rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}

/* Page Header - Her sayfada aynı */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 5vh; /* Header ile arasında %5 boşluk */
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Responsive Page Header */
@media (max-width: 900px) {
    .page-header {
        min-height: 60vh;
        padding: 4rem 0;
    }
    .page-header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    .page-header-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 50vh;
        padding: 3rem 0;
    }
    .page-header-content h1 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    .page-header-content p {
        font-size: 1rem;
    }
}
/* Premium Apart Section - Masaüstü İyileştirmeleri */
@media (min-width: 769px) {
    .premium-apart {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .premium-apart::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(244, 208, 63, 0.05) 50%, rgba(212, 165, 116, 0.05) 100%);
        z-index: 1;
    }
    
    .premium-apart .container {
        position: relative;
        z-index: 2;
    }
    
    .premium-apart .premium-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .premium-apart .premium-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .premium-apart .premium-image:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    }
    
    .premium-apart .premium-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: all 0.4s ease;
    }
    
    .premium-apart .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(244, 208, 63, 0.8) 100%);
        padding: 2rem;
        color: white;
        transform: translateY(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .premium-apart .premium-image:hover .image-overlay {
        transform: translateY(0);
    }
    
    /* Mobilde overlay'i her zaman görünür yap */
    @media (max-width: 768px) {
        .premium-apart .image-overlay {
            transform: translateY(0) !important;
            padding: 1.5rem;
        }
        
        .premium-apart .overlay-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        
        .premium-apart .overlay-content p {
            font-size: 0.9rem;
        }
    }
    
    .premium-apart .overlay-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .premium-apart .overlay-content p {
        font-size: 1rem;
        opacity: 0.9;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }
    
    .premium-apart .premium-text {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .premium-apart .premium-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .premium-apart .premium-text .subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    
    .premium-apart .premium-text .description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #495057;
        margin-bottom: 2rem;
    }
    
    .premium-apart .features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .premium-apart .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
        border-radius: 12px;
        border: 1px solid rgba(212, 165, 116, 0.2);
        transition: all 0.3s ease;
    }
    
    .premium-apart .feature-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%);
    }
    
    .premium-apart .feature-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .premium-apart .feature-item span {
        font-size: 0.95rem;
        font-weight: 500;
        color: #495057;
    }
    
    .premium-apart .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .premium-apart .btn-primary,
    .premium-apart .btn-secondary {
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .premium-apart .btn-primary {
        background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
        color: white;
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
        border: 2px solid transparent;
    }
    
    .premium-apart .btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .premium-apart .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #495057;
        border: 2px solid #d4a574;
        backdrop-filter: blur(10px);
    }
    
    .premium-apart .btn-secondary:hover {
        transform: translateY(-3px) scale(1.05);
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        color: #d4a574;
    }
    
    .premium-apart .btn-primary::before,
    .premium-apart .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: left 0.5s ease;
    }
    
    .premium-apart .btn-primary:hover::before,
    .premium-apart .btn-secondary:hover::before {
        left: 100%;
    }
}

/* Premium Apart Section - Mobil İyileştirmeleri */
@media (max-width: 768px) {
    .premium-apart {
        padding: 3rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .premium-apart .premium-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .premium-apart .premium-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .premium-apart .premium-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    
    .premium-apart .premium-text {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .premium-apart .premium-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .premium-apart .premium-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .premium-apart .premium-text .description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-apart .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-apart .feature-item {
        padding: 0.5rem;
        border-radius: 10px;
    }
    
    .premium-apart .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .premium-apart .btn-primary,
    .premium-apart .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .premium-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .premium-image img {
        height: 400px;
        border-radius: 16px;
    }
}
@media (max-width: 480px) {
    .premium-image img {
        height: 250px;
        border-radius: 12px;
    }
}