/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h2 {
    color: #d4af37;
    font-size: 1.8rem;
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 250px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #d4af37;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(212, 175, 55, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-bounce {
    animation: slideUp 1s ease-out 0.6s both;
}

/* Hero Badge, Features and Rating Styles */
.hero-badge {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.hero-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-rating {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-rating .stars {
    display: flex;
    gap: 4px;
    color: #d4af37;
    font-size: 1.1rem;
}

.hero-rating .rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hotels Section */
.hotels-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    position: relative;
    height: 250px;
    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.05);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.hotel-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.hotel-rating span {
    margin-left: 0.5rem;
    color: #666;
    font-weight: 600;
}

.hotel-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hotel-features span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-features i {
    color: #d4af37;
}

.hotel-btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.hotel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #d4af37;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Hotel Detail Page Styles */
.hotel-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hotel-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.hotel-details {
    padding: 80px 0;
    background: white;
}

.hotel-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.hotel-description h3 {
    color: #333;
    margin-bottom: 1rem;
}

.hotel-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.amenities-list i {
    color: #d4af37;
    width: 20px;
}

.booking-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.price-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.price-period {
    color: #666;
    font-size: 0.9rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.book-now-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-info-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hotel-card {
        margin: 0 10px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #d4af37;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #999;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Special Hotel Features - Casino */
.special-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-badge {
    background: linear-gradient(45deg, #8e24aa, #ab47bc);
    color: white;
}

.aqua-badge {
    background: linear-gradient(45deg, #00acc1, #4fc3f7);
    color: white;
}

.entertainment-badge {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.casino-features,
.aqua-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.casino-feature,
.aqua-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.casino-feature:hover,
.aqua-feature:hover {
    transform: translateY(-5px);
}

.casino-feature i,
.aqua-feature i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.casino-feature h4,
.aqua-feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.casino-feature p,
.aqua-feature p {
    color: #666;
    font-size: 0.9rem;
}

.entertainment-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.entertainment-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.entertainment-list i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

/* Booking Enhancements */
.price-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.package-options {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.package-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.package-option input {
    margin-right: 0.5rem;
}

.booking-benefits {
    margin-top: 1rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 8px;
}

.booking-benefits p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-benefits i {
    color: #4caf50;
}

/* Special Experiences */
.special-experiences {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.experience-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.experience-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experience-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    background: #fff8e1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Practical Info */
.practical-info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: #d4af37;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card strong {
    color: #333;
}

/* Room Types */
.room-types {
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card > div {
    padding: 1.5rem;
}

.room-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.room-card p {
    color: #666;
    margin: 0.5rem 0;
}

.room-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.room-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.room-card li i {
    color: #d4af37;
    width: 16px;
}

.room-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-section > div > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.location-section h3 {
    color: #333;
    margin-bottom: 1rem;
}

.location-section ul {
    list-style: none;
    padding: 0;
}

.location-section li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.location-section i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.location-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-section > div > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card div:first-child {
    margin-bottom: 1rem;
}

.review-card i {
    color: #ffd700;
    margin-right: 0.1rem;
}

.review-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-card > div:last-child {
    font-weight: 600;
    color: #333;
}

/* Section Icons */
.section-icon {
    color: #d4af37;
    margin-right: 10px;
}

.icon-dice {
    color: #d4af37;
}

.icon-water {
    color: #4fc3f7;
}

.icon-music {
    color: #e91e63;
}

/* Responsive Design for Special Features */
@media (max-width: 768px) {
    .special-badges {
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .entertainment-list {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .location-section > div > div {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Experiences Page Styles */
.experiences-section {
    padding: 80px 0;
    background: white;
}

.experiences-categories {
    margin: 3rem 0;
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #d4af37;
    background: white;
    color: #d4af37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.experience-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.experience-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.experience-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.experience-rating span {
    margin-left: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.experience-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.experience-highlights span {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.experience-highlights i {
    color: #d4af37;
    font-size: 0.75rem;
}

.experience-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.experience-price .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
}

.experience-price .price-note {
    color: #999;
    font-size: 0.9rem;
}

.experience-btn {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.package-header {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.package-content {
    padding: 2rem 1.5rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #666;
}

.package-includes i {
    color: #27ae60;
    font-size: 0.9rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.sale-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
}

.savings {
    display: block;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Booking Info Section */
.booking-info-section {
    padding: 80px 0;
    background: white;
}

.booking-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-details > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #666;
    margin: 0.25rem 0;
}

.method-content strong {
    color: #333;
    font-size: 1.1rem;
}

.method-content small {
    color: #999;
    font-size: 0.85rem;
}

.quick-contact {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.quick-contact h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.phone-card {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.phone-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phone-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online {
    background: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-indicator.offline {
    background: #f44336;
}

.phone-hours {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-benefits h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.contact-benefits i {
    color: #4caf50;
    font-size: 0.8rem;
}

.languages {
    text-align: center;
}

.languages h4 {
    color: #333;
    margin-bottom: 1rem;
}

.language-flags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.language {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.language i {
    color: #d4af37;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-category h3 {
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #333;
    margin: 0;
    font-size: 1rem;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Office Section */
.office-section {
    padding: 80px 0;
    background: white;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.office-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.office-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.office-details {
    margin-bottom: 2rem;
}

.office-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.office-detail i {
    color: #d4af37;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.2rem;
}

.office-detail strong {
    color: #333;
}

.office-services h4 {
    color: #333;
    margin-bottom: 1rem;
}

.office-services ul {
    list-style: none;
    padding: 0;
}

.office-services li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.office-services i {
    color: #d4af37;
    width: 16px;
}

.office-image {
    position: relative;
}

.office-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    border-radius: 0 0 10px 10px;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.emergency-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d32f2f, #f44336);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.emergency-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.emergency-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.emergency-number i {
    color: #d32f2f;
}

.emergency-services {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-services span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid #e0e0e0;
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 100px 0;
    background: white;
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.policy-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.policy-nav {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.policy-nav h3 {
    color: #333;
    margin-bottom: 1rem;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.policy-nav li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.policy-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-nav a:hover {
    color: #b8941f;
    text-decoration: underline;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.section-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-content ul {
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
}

.company-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.company-details h4 {
    color: #333;
    margin-bottom: 1rem;
}

.company-details ul {
    list-style: none;
    padding: 0;
}

.company-details li {
    padding: 0.25rem 0;
    color: #666;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
}

.data-category h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-category i {
    color: #d4af37;
}

.data-category ul {
    list-style: none;
    padding: 0;
}

.data-category li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.usage-purposes {
    margin-top: 2rem;
}

.purpose-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.purpose-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.purpose-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-basis {
    font-size: 0.85rem;
    color: #d4af37;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.sharing-categories {
    margin-top: 2rem;
}

.sharing-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.sharing-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sharing-item i {
    color: #d4af37;
}

.sharing-item p {
    color: #666;
    margin: 0;
}

.no-selling-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    margin-top: 2rem;
}

.notice-icon {
    width: 50px;
    height: 50px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.notice-content p {
    color: #2e7d32;
    margin: 0;
}

.cookie-types {
    margin-top: 2rem;
}

.cookie-type {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-type h4 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type i {
    color: #d4af37;
}

.cookie-type p {
    color: #666;
    margin: 0;
    flex: 1;
}

.cookie-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cookie-status.required {
    background: #ffecb3;
    color: #f57c00;
}

.cookie-status.optional {
    background: #e8f5e8;
    color: #2e7d32;
}

.cookie-management {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    margin-top: 2rem;
}

.cookie-management h4 {
    color: #ef6c00;
    margin-bottom: 1rem;
}

.cookie-management p {
    color: #ef6c00;
    margin: 0;
}

.security-measures {
    margin-top: 2rem;
}

.security-measures h4 {
    color: #333;
    margin-bottom: 1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.security-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.security-item i {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.security-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.retention-policy {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.retention-policy h4 {
    color: #333;
    margin-bottom: 1rem;
}

.retention-policy ul {
    margin: 0;
}

.retention-policy li {
    margin-bottom: 0.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.right-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.right-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.exercise-rights {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin-top: 2rem;
}

.exercise-rights h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.exercise-rights p {
    color: #1976d2;
    margin-bottom: 1rem;
}

.exercise-rights ul {
    color: #1976d2;
    margin-bottom: 1rem;
}

.children-policy {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.policy-text p {
    color: #ef6c00;
    margin-bottom: 1rem;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.response-time i {
    color: #4caf50;
    font-size: 1.2rem;
}

.response-time p {
    color: #2e7d32;
    margin: 0;
    font-weight: 600;
}

/* Responsive Design for Contact and Privacy */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact {
        position: static;
    }
    
    .phone-card {
        margin-bottom: 1rem;
    }
    
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .policy-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-nav ul {
        columns: 1;
    }
    
    .purpose-item,
    .right-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sharing-item,
    .no-selling-notice,
    .children-policy {
        flex-direction: column;
        text-align: center;
    }
    
    .data-categories,
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}
