/* BayKiana Hotel - Modern Glassmorphism Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a3509 0%, #2d5016 25%, #1e4d3b 50%, #0f6b5c 75%, #196f3d 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(25, 111, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 107, 92, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(30, 77, 59, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(45, 80, 22, 0.3) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 107, 92, 0.15), 0 4px 16px rgba(25, 111, 61, 0.1);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    width: 90%;
    max-width: 1200px;
    border-radius: 25px;
    background: rgba(25, 111, 61, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(25, 111, 61, 0.3);
}

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

.nav-logo h2 {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    max-height: 40px;
    filter: brightness(0) invert(1);
    margin-top: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.language-toggle {
    margin-left: 20px;
}

.btn-language {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #196f3d 0%, #0f6b5c 50%, #1e7e34 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(25, 111, 61, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(25, 111, 61, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary::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;
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section - Modern Split Layout */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #0a1a0a 0%, #1a3509 25%, #2d5016 50%, #1e4d3b 75%, #0f6b5c 100%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(25, 111, 61, 0.9) 0%, rgba(15, 107, 92, 0.7) 100%),
        url('../otel_resim/anaresim.jpg') center/cover;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-content {
    padding: 60px;
    z-index: 1;
    animation: slideInLeft 1s ease-out;
}

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

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(25, 111, 61, 0.2) 0%, rgba(15, 107, 92, 0.1) 100%);
    border: 1px solid rgba(25, 111, 61, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-feature .material-icons {
    color: #4CAF50;
    font-size: 20px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Modern Card Layout */
.about {
    padding: 100px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(25, 111, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(15, 107, 92, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-text h2 .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.about-highlight:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-highlight .material-icons {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 8px;
}

.about-highlight h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.about-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.about-visual {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.01);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 111, 61, 0.1) 0%, rgba(15, 107, 92, 0.2) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.about-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Services Section - Modern Grid Layout */
.services {
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(25, 111, 61, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(15, 107, 92, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 80px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
}

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

.service-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 50%, #1B5E20 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 
        0 15px 30px rgba(76, 175, 80, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 25px rgba(76, 175, 80, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

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

.service-icon .material-icons {
    font-size: 48px;
    color: white;
    z-index: 1;
}

.service-card h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #4CAF50;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Location Section - Modern Split Layout */
.location {
    padding: 120px 0;
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(25, 111, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 107, 92, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.location-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-info:hover::before {
    opacity: 1;
}

.location-info h2 {
    color: white;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-item .material-icons {
    color: #4CAF50;
    font-size: 32px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
}

.location-item div h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.location-item:hover div h4 {
    color: #4CAF50;
}

.location-item div p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: rotate(0deg) scale(1.01);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 111, 61, 0.1) 0%, rgba(15, 107, 92, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.map-container iframe {
    filter: grayscale(0.3) contrast(1.1) brightness(0.95);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1.2) brightness(1);
}

/* Rooms Section - Modern Card Layout */
.rooms-section {
    padding: 120px 0;
    position: relative;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(25, 111, 61, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(15, 107, 92, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.room-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
    z-index: 1;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
}

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

.room-image-slider {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 24px 24px 0 0;
}

.room-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.room-slide.active {
    opacity: 1;
}

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

.room-card:hover .room-slide img {
    transform: scale(1.02);
}

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

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slider-btn .material-icons {
    font-size: 24px;
    color: #333;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

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

.dot.active {
    background: white;
    transform: scale(1.1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.view-gallery-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 50%, #1B5E20 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    z-index: 4;
}

.view-gallery-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.view-gallery-btn .material-icons {
    font-size: 20px;
}

.room-content {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

.room-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.room-card:hover .room-content h3 {
    color: #4CAF50;
}

.room-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 300;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.room-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.room-features .feature:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(76, 175, 80, 0.2);
    transform: translateX(2px);
}

.room-features .feature .material-icons {
    color: #4CAF50;
    font-size: 22px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.room-features .material-icons {
    font-size: 18px;
    color: #667eea;
}

.room-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
}

.room-amenities {
    padding: 40px;
    text-align: center;
}

.room-amenities h2 {
    color: white;
    margin-bottom: 30px;
}

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

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.amenity .material-icons {
    color: #667eea;
}

/* Amenities Page */
.main-amenities {
    padding: 80px 0;
}

.amenity-featured {
    margin-bottom: 40px;
    overflow: hidden;
}

.amenity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.amenity-content.reverse {
    direction: rtl;
}

.amenity-content.reverse > * {
    direction: ltr;
}

.amenity-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.amenity-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.amenity-text ul {
    list-style: none;
}

.amenity-text li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.amenity-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9cea66;
    font-weight: bold;
}

.amenity-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.amenities-grid-section {
    padding: 80px 0;
}

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

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

.amenity-icon {
    background: linear-gradient(45deg, #196f3d, #0f6b5c);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.amenity-icon .material-icons {
    font-size: 35px;
    color: white;
}

.amenity-card h3 {
    color: white;
    margin-bottom: 15px;
}

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

/* Special Services */
.special-services {
    padding: 80px 0;
}

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

.service-box {
    padding: 35px;
    border: 2px solid rgba(25, 111, 61, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #196f3d, #4CAF50);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(25, 111, 61, 0.4);
    box-shadow: 0 15px 35px rgba(25, 111, 61, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-header .material-icons {
    font-size: 35px;
    color: #6AFF71;
    background: rgba(76, 175, 80, 0.1);
    padding: 12px;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.service-box h3 {
    color: #40FF48;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-box p {
    color: white;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 500;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features span:before {
    content: '✓';
    color: #66BB6A;
    font-weight: bold;
    margin-right: 10px;
}

/* Operating Hours */
.operating-hours {
    padding: 80px 0;
}

.hours-content {
    padding: 40px;
    text-align: center;
}

.hours-content h2 {
    color: white;
    margin-bottom: 30px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hours-icon {
    background: rgba(76, 175, 80, 0.2);
    padding: 15px;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.hours-icon .material-icons {
    font-size: 30px;
    color: #1FFF29;
}

.hours-info h4 {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-section {
    padding: 40px;
}

.contact-form-section h2 {
    color: white;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.date-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.date-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 25px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-header .material-icons {
    color: #196f3d;
    font-size: 24px;
}

.info-card h3 {
    color: white;
}

.info-card p,
.info-card small {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    margin-top: 10px;
}

.info-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #196f3d;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(25, 111, 61, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-details h4 {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.location-details p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.location-details .btn {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    border: 2px solid rgba(76, 175, 80, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-details .btn:hover {
    background: rgba(76, 175, 80, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    border-color: rgba(76, 175, 80, 0.6);
}

.location-details .btn .material-icons {
    font-size: 18px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    padding: 25px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    color: white;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .material-icons {
    font-size: 18px;
    color: #ffd700;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.review-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.summary-stars .material-icons {
    color: #ffd700;
    font-size: 24px;
}

.summary-text {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.faq-question .material-icons {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: white;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 25px;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
    opacity: 1;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 40px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #1a3509 0%, #2d5016 25%, #1e4d3b 50%, #0f6b5c 75%, #196f3d 100%);
        background-attachment: fixed;
        background-size: cover;
    }
    
    body::before {
        position: fixed;
        background: 
            radial-gradient(circle at 20% 50%, rgba(25, 111, 61, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(15, 107, 92, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(30, 77, 59, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 60% 30%, rgba(45, 80, 22, 0.4) 0%, transparent 50%);
    }
    
    .navbar {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: calc(100vw - 20px);
        padding: 12px 0;
        background: rgba(25, 111, 61, 0.9);
        backdrop-filter: blur(20px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(25, 111, 61, 0.85) 0%, rgba(15, 107, 92, 0.9) 100%);
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 20px 20px;
        border-top: none;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 0 60px;
        text-align: center;
        position: relative;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        height: 300px;
        background: url('../otel_resim/anaresim.jpg') center/cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        text-align: center;
    }
    
    .about-content,
    .location-content,
    .amenity-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .date-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* iOS zoom prevention */
    }
    
    .location-item {
        padding: 20px;
    }
    
    .location-item:hover {
        transform: translateY(-5px);
    }
    
    .map-container {
        transform: rotate(0deg);
        height: 350px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-image {
        transform: rotate(0deg);
        margin: 0 auto;
        max-width: 400px;
    }
    
    .about-decorative {
        display: none;
    }
    
    .amenity-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .room-content {
        padding: 25px 20px;
    }
    
    .room-amenities {
        padding: 40px 20px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .date-group {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .contact-form-section h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .info-card {
        padding: 18px 12px;
        text-align: center;
    }
    
    .info-header {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        border-radius: 12px;
    }
    
    .contact-wrapper {
        gap: 25px;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 40px;
        min-height: 100vh;
        position: relative;
    }
    
    .hero-visual {
        height: 250px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .hero-content {
        padding: 30px 15px;
        max-width: 100%;
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 25px;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .glass {
        border-radius: 15px;
    }
    
    .service-card,
    .amenity-card,
    .room-card {
        margin: 0 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .features,
    .room-features {
        grid-template-columns: 1fr;
    }
}

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

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background 0.3s ease;
}

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #196f3d;
    outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Amenities Page Enhancements */
.amenities-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(26, 53, 9, 0.95) 0%, 
        rgba(45, 80, 22, 0.95) 25%, 
        rgba(30, 77, 59, 0.95) 50%, 
        rgba(15, 107, 92, 0.95) 75%, 
        rgba(25, 111, 61, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.amenities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../otel_resim/anaresim.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.amenities-hero-content {
    max-width: 600px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.amenities-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.amenities-badge .material-icons {
    font-size: 18px;
    color: white;
}

.amenities-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.amenities-hero .highlight {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenities-hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.amenities-highlights-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.amenity-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.amenity-preview:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.amenity-preview .material-icons {
    font-size: 20px;
    color: white;
}

.amenities-hero-visual {
    position: absolute;
    top: 50%;
    right: -200px;
    width: 400px;
    height: 400px;
    transform: translateY(-50%);
    opacity: 0.1;
}

.hero-decorative {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 111, 61, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(25, 111, 61, 0.3);
    color: #40ff49;
    box-shadow: 0 4px 15px rgba(25, 111, 61, 0.2);
}

.section-badge .material-icons {
    font-size: 18px;
    color: #00FF0A;
}

.section-header .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header .highlight {
    background: linear-gradient(45deg, #196f3d, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

/* Enhanced Visual Wrappers */
.amenity-visual {
    position: relative;
}

.amenity-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(25, 111, 61, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 20px;
    z-index: -1;
}

/* Amenity Badges */
.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(25, 111, 61, 0.2);
    color: #2e7d32;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.amenity-badge .material-icons {
    font-size: 18px;
    color: #4CAF50;
}

/* CTA Buttons Enhancement */
.hours-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hours-cta .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hours-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .amenities-hero {
        padding: 100px 0 60px;
    }
    
    .amenities-hero h1 {
        font-size: 2.5rem;
    }
    
    .amenities-highlights-preview {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .amenity-preview {
        width: fit-content;
    }
    
    .amenities-hero-visual {
        display: none;
    }
    
    .section-header .section-title {
        font-size: 2.2rem;
    }
    
    .hours-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Google Reviews Widget */
.google-reviews-widget {
    margin-top: 40px;
    padding: 30px;
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.google-reviews-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 24px;
    font-weight: 500;
}

.google-icon {
    color: #0060FF;
    font-weight: 700;
    font-size: 28px;
}

.google-text {
    color: white;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .material-icons {
    color: #FBBC05;
    font-size: 20px;
}

.review-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    white-space: nowrap;
}

.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.google-review {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.google-review:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.review-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.reviewer-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 1px;
}

.review-rating .material-icons {
    color: #FBBC05;
    font-size: 16px;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.widget-footer {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.google-reviews-btn,
.write-review-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.google-reviews-btn {
    background: rgba(66, 133, 244, 0.2);
    color: #0060FF;
    border: 2px solid rgba(66, 133, 244, 0.3);
    flex: 1;
    justify-content: center;
}

.google-reviews-btn:hover {
    background: rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
}

.write-review-btn {
    background: rgba(76, 175, 80, 0.2);
    color: #00FF0A;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.write-review-btn:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

/* Responsive Google Reviews */
@media (max-width: 768px) {
    .widget-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .google-logo {
        justify-content: center;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .google-review {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .widget-footer {
        flex-direction: column;
    }
    
    .google-reviews-btn,
    .write-review-btn {
        width: 100%;
        justify-content: center;
    }
}