/* ATM Comfort Zone - Premium CSS Styles */
:root {
    --primary-blue: #0A1A2F;
    --secondary-blue: #14284B;
    --accent-yellow: #FFCC33;
    --accent-red: #E63946;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-large: 0 20px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-red));
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.rotating-logo {
    animation: rotate 2s linear infinite;
    margin-bottom: 1rem;
}

.rotating-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.loading-content p {
    color: rgba(255,255,255,0.8);
}

/* Premium Navigation */
.navbar {
    background: var(--primary-blue);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Premium Hero Sections */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    color: var(--accent-red);
}

.page-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.85)), url('images/hero-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    color: var(--white);
}

.restaurant-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.85)), url('images/restaurant-hero.jpg');
}

.facilities-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.85)), url('images/facilities-hero.jpg');
}

.accommodation-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.85)), url('images/accommodation-hero.jpg');
}

.terms-hero {
    background: linear-gradient(rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.85)), url('images/terms-hero.jpg');
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Premium Buttons */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-email {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-email:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-romantic {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    border: 2px solid var(--accent-red);
}

.btn-romantic:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Special Offer */
.special-offer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 4rem 0;
}

.offer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.offer-badge {
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.special-offer p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

/* Features Highlight */
.features-highlight {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-highlight {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-highlight:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.feature-highlight h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-highlight p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.feature-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--accent-red);
    gap: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card .feature-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-blue);
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.faq-question i {
    transition: var(--transition);
    color: var(--accent-yellow);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    text-align: center;
}

.map-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-light);
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rooms-grid {
    display: grid;
    gap: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.room-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.room-slider {
    position: relative;
    height: 100%;
}

.room-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-slider .slide.active {
    opacity: 1;
}

.room-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.room-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.room-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.room-features {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.feature i {
    color: var(--accent-yellow);
}

.room-amenities {
    list-style: none;
    margin: 1.5rem 0;
}

.room-amenities li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.room-amenities i {
    color: var(--accent-yellow);
    width: 20px;
}

.included-features {
    margin-top: 4rem;
    text-align: center;
}

.included-features h3 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.included-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.included-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.included-feature i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.included-feature h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.included-feature p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Restaurant Intro */
.restaurant-intro {
    padding: 60px 0;
    background: var(--white);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.restaurant-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.restaurant-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
}

.restaurant-feature i {
    color: var(--accent-red);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--accent-yellow);
    border-radius: 25px;
    color: var(--accent-yellow);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: start;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.item-info {
    flex: 1;
}

.item-info h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.item-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.item-options span {
    background: var(--light-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pizza-sizes {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pizza-sizes span {
    background: var(--light-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-left: 2rem;
    white-space: nowrap;
}

.item-price small {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.offer-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.offer-content h3 i {
    margin-right: 0.5rem;
}

.offer-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.facility-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.facility-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.facility-slider {
    position: relative;
    height: 100%;
}

.facility-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.facility-slider .slide.active {
    opacity: 1;
}

.facility-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.facility-content {
    padding: 2.5rem;
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
}

.facility-title h3 {
    margin-bottom: 0.3rem;
    color: var(--primary-blue);
}

.facility-title p {
    margin-bottom: 0;
    color: var(--text-light);
}

.facility-description {
    margin-bottom: 2rem;
}

.facility-description p {
    line-height: 1.8;
    color: var(--text-light);
}

.facility-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-item:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: scale(1.05);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.highlight-item:hover i {
    color: var(--primary-blue);
}

.facility-features {
    margin: 2rem 0;
}

.facility-features h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.facility-features ul {
    list-style: none;
}

.facility-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.facility-features i {
    color: var(--accent-yellow);
    width: 20px;
}

.facility-pricing {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-info h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pricing-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-info strong {
    color: var(--primary-blue);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--white);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.booking-options {
    margin-bottom: 3rem;
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.booking-method {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.booking-method:nth-child(1) {
    border-color: #25D366;
}

.booking-method:nth-child(2) {
    border-color: var(--accent-yellow);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.booking-method:nth-child(1) .method-icon {
    color: #25D366;
}

.booking-method:nth-child(2) .method-icon {
    color: var(--accent-yellow);
}

.booking-method h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.booking-method p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.booking-form-container {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.price-estimate, .price-display {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-yellow);
    box-shadow: var(--shadow);
}

.price-estimate h4, .price-display h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.price-estimate p, .price-display p {
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.price-estimate strong, .price-display strong {
    color: var(--primary-blue);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(0,0,0,0.05);
}

.modal-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-header p {
    color: var(--text-light);
    margin: 0;
}

.booking-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-option, .email-option {
    background: #25D366;
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    font-size: 1.1rem;
    width: 100%;
}

.email-option {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.whatsapp-option:hover, .email-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.close-modal {
    background: none;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.close-modal:hover {
    background: var(--text-light);
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Alert */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-large);
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.custom-alert-success {
    background: #27ae60;
    color: white;
}

.custom-alert-error {
    background: var(--accent-red);
    color: white;
}

.custom-alert-info {
    background: #3498db;
    color: white;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Menu Download Section */
.menu-download-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.menu-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23E63946" opacity="0.1" d="M50 0L100 50L50 100L0 50Z"/></svg>');
    background-size: contain;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.download-text > p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.menu-highlights {
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-top: 0.5rem;
}

.highlight-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
}

.download-actions {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.download-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.menu-features {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-yellow);
    box-shadow: var(--shadow);
}

.menu-features p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.menu-features i {
    color: var(--accent-yellow);
}

/* Menu Preview */
.menu-preview {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-preview:hover {
    transform: rotate(0deg) scale(1.02);
}

.preview-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.preview-header h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.preview-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-content {
    padding: 2rem;
}

.preview-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.preview-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.preview-section h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.preview-section p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.preview-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    border-top: 1px solid #e9ecef;
}

.preview-footer i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

/* Food Ordering Styles */
.menu-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--accent-yellow);
    border-radius: 25px;
    color: var(--accent-yellow);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.category-btn.active, .category-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.food-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.food-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.food-item.selected {
    border-color: var(--accent-yellow);
    background: rgba(255, 204, 51, 0.05);
}

.food-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.food-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
}

.food-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-red);
    white-space: nowrap;
}

.food-item-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.food-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.select-btn {
    padding: 0.6rem 1.2rem;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.select-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.select-btn.selected {
    background: var(--primary-blue);
    color: var(--white);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-color: var(--accent-yellow);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.3rem;
    font-weight: 600;
}

.order-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.order-summary h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    flex: 1;
    color: var(--text-dark);
}

.order-item-quantity {
    color: var(--text-light);
    margin: 0 1rem;
}

.order-item-price {
    color: var(--accent-red);
    font-weight: 600;
    white-space: nowrap;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.total-amount {
    color: var(--accent-red);
    font-size: 1.4rem;
}

.submit-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* Terms & Conditions Specific Styles */
.terms-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-header h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.terms-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.terms-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.terms-section-title {
    color: var(--accent-red);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--accent-red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.terms-list {
    list-style: none;
    margin-bottom: 2rem;
}

.terms-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list i {
    color: var(--accent-yellow);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.terms-list strong {
    color: var(--primary-blue);
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd, #b6e0fe);
    border: 1px solid #b6e0fe;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-yellow);
}

.highlight-box h4 {
    color: #1e6fba;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border: 1px solid #fdcb6e;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-red);
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-info {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.payment-info h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.payment-info p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

/* Premium Footer */
.footer {
    background: var(--primary-blue);
    color: var(--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 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p, .footer-section li {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.contact-details p, .business-hours p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-details i, .business-hours i {
    width: 20px;
    color: var(--accent-yellow);
}

.business-hours strong {
    color: var(--white);
}

.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: var(--secondary-blue);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-blue);
    color: #95a5a6;
}

.developer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.developer strong {
    color: var(--accent-yellow);
}

/* Premium Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
}

.cta-bubble {
    background: linear-gradient(135deg, var(--accent-red), #c0392b);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    position: relative;
    max-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cta-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1002;
}

.cta-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Premium Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.guest-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.guest-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.guest-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    background: linear-gradient(135deg, var(--accent-yellow), #e6b800);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: auto;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

/* Additional Premium Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid var(--secondary-blue);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .room-card,
    .facility-card {
        grid-template-columns: 1fr;
    }

    .room-image,
    .facility-image {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-methods {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-details p, 
    .business-hours p {
        justify-content: center;
    }

    .restaurant-features {
        flex-direction: column;
        align-items: center;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
        text-align: center;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .item-price {
        margin-left: 0;
        margin-top: 1rem;
    }

    .facility-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .cta-bubble {
        max-width: none;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rating {
        margin-left: 0;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .download-actions {
        flex-direction: column;
    }
    
    .download-actions .btn {
        justify-content: center;
    }
    
    .menu-preview {
        transform: none;
        margin-top: 2rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }

    .food-items-grid {
        grid-template-columns: 1fr;
    }

    .submit-buttons {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .menu-categories {
        justify-content: center;
    }

    .terms-card {
        padding: 2rem;
    }

    .terms-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 250px;
    }

    .facility-highlights {
        grid-template-columns: 1fr;
    }

    .room-features {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .booking-method {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-option, .email-option {
        padding: 15px;
        font-size: 1rem;
    }

    .menu-download-section {
        padding: 60px 0;
    }
    
    .download-text h2 {
        font-size: 1.8rem;
    }
    
    .preview-header {
        padding: 1.5rem;
    }
    
    .preview-content {
        padding: 1.5rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .terms-card {
        padding: 1.5rem;
    }

    .highlight-box, .warning-box {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .floating-cta,
    .booking-cta {
        display: none;
    }
    
    .page-hero {
        padding: 60px 20px 40px;
    }
    
    .container {
        max-width: none;
    }
}