/* Base Styles and Variables */
:root {
    --primary-color: #e74c3c; /* Speedy red */
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #1a2634;
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #1a2634 100%);
    --gradient-accent: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --menu-animation: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --menu-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    --hotel-primary: #1B4B6D;
    --hotel-secondary: #C89D66;
    --hotel-secondary-icon: #D1AD43;
    --hotel-secondary-footer: #C89D66;
    --hotel-accent: #E8C39E;
    --hotel-dark: #0A1F2E;
    --hotel-light: #F5F7F9;
    --hotel-text: #2C3E50;
    --hotel-border: #E2E8F0;
    --hotel-success: #48BB78;
    --hotel-error: #E53E3E;
    --hotel-warning: #ECC94B;
    --hotel-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --hotel-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hotel-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --hotel-gradient: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-secondary) 100%);
    --hotel-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hotel-transition-footer: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text-color-title: #D1AD43;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--hotel-text);
    line-height: 1.6;
    background-color: var(--hotel-light);
    padding-top: 100px; /* Reduced spacing */
}

p {
    letter-spacing: 0.1em;
    margin: 10px 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-footer {
    max-width: 3600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.conainer-section {
    padding: 8rem 0;
}

/* Top Bar */
.top-bar {
    background: var(--hotel-dark);
    color: var(--hotel-light);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(200, 157, 102, 0.1);
    height: 40px;
    transition: transform 0.3s ease;
    
    background: linear-gradient(90deg, rgba(10, 31, 46, 0.95) 0%, rgba(27, 75, 109, 0.95) 100%);
}

.list-styled {
    list-style-type: none;
    padding: 0;
}

.style-list::before {
    content: "✔️"; /* Unicode check mark */
    margin-right: 8px; /* Space between icon and text */
}
.style-list {
    margin-left: 10px;
    margin-bottom: 10px; /* Space between list items */
}


.top-bar.hide {
    transform: translateY(-100%);
}

.top-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.top-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(200, 157, 102, 0) 0%, 
        rgba(200, 157, 102, 0.3) 50%, 
        rgba(200, 157, 102, 0) 100%
    );
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    position: relative;
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.top-bar-contact::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, 
        rgba(200, 157, 102, 0) 0%, 
        rgba(200, 157, 102, 0.3) 50%, 
        rgba(200, 157, 102, 0) 100%
    );
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 0.813rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.top-bar-contact a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 157, 102, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-contact a:hover {
    color: white;
    transform: translateY(-1px);
}

.top-bar-contact a:hover::before {
    transform: translateX(0);
    background-color: rgb(209, 173, 67, 0.2);
}

.top-bar-contact a i {
    color: var(--hotel-secondary-icon);
    font-size: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.top-bar-contact a:hover i {
    transform: scale(1.1);
}

.top-bar-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 157, 102, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.813rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 157, 102, 0.2);
}

.top-bar-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(209, 173, 67, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.top-bar-social a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-color: var(--hotel-secondary-icon);
}

.top-bar-social a:hover::before {
    transform: translateY(0);
}

.top-bar-social a:hover i {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .top-bar {
        height: 40px;
    }

    .top-bar-content {
        padding: 0 15px;
    }

    .top-bar-contact {
        gap: 1rem;
    }

    .top-bar-contact::after {
        display: none;
    }

    .top-bar-contact a {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .top-bar-contact a i {
        font-size: 0.813rem;
    }

    .top-bar-social {
        gap: 0.35rem;
    }

    .top-bar-social a {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* Main Header */
.main-header {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--hotel-shadow-sm);
    z-index: 1001;
    transition: var(--hotel-transition);
    height: 80px; /* Increased from 60px */
    border-bottom: 1px solid rgba(200, 157, 102, 0.1);
}

.main-header.sticky {
    background: white;
    top: 0;
    box-shadow: var(--hotel-shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px; /* Increased from 40px */
    width: auto;
    transition: var(--hotel-transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Mega Menu */
.mega-menu {
    flex: 1;
    margin-left: 3rem;
    position: relative;
    z-index: 1002;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: left;
    height: 80px; /* Increased from 60px */
    align-items: center !important;
    font-family: 'Poppins', sans-serif;
}

.menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-item > a {
    color: var(--hotel-dark);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--hotel-transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    height: 100%;
    position: relative;
}

.menu-item > a i {
    font-size: 0.75rem;
    transition: var(--hotel-transition);
}

.menu-item:hover > a i {
    transform: rotate(180deg);
}

.menu-item > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--hotel-secondary);
    transform: scaleX(0);
    transition: var(--hotel-transition);
    transform-origin: right;
}

.menu-item:hover > a::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-item > a:hover {
    color: var(--hotel-secondary);
}

/* Mega Submenu */
.mega-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 280px;
    box-shadow: var(--menu-shadow);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--menu-animation);
    padding: 1.5rem;
    border: 1px solid rgba(200, 157, 102, 0.1);
    border-top: 2px solid var(--hotel-secondary);
    z-index: 1002;
    pointer-events: none;
}

.menu-item:hover .mega-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.submenu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.submenu-column h3 {
    color: var(--hotel-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 157, 102, 0.2);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.submenu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-column ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.submenu-column ul li a {
    color: var(--hotel-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--hotel-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.submenu-column ul li a:hover {
    color: var(--hotel-secondary);
    background: rgba(200, 157, 102, 0.05);
    transform: translateX(5px);
}

/* Sub-submenu */
.sub-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--menu-shadow);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--menu-animation);
    z-index: 1003;
    border: 1px solid rgba(200, 157, 102, 0.1);
    pointer-events: none;
}

.submenu-column ul li.has-children:hover .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.sub-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-submenu ul li a {
    padding: 0.5rem 1rem;
    color: var(--hotel-text);
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
}

.sub-submenu ul li a:hover {
    background: rgba(200, 157, 102, 0.05);
    color: var(--hotel-secondary);
    transform: translateX(5px);
}

/* Active states and indicators */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--hotel-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--hotel-transition);
}

.mobile-menu-toggle:hover {
    color: var(--hotel-secondary);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.35);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.mobile-menu-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    background: white;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--hotel-shadow-lg);
    border: 1px solid var(--hotel-border);
    transform: translateY(-20px);
    opacity: 0;
    margin: 0 1rem;
    border-radius: 16px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--hotel-border);
}

.mobile-logo img {
    height: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--hotel-border);
    color: var(--hotel-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--hotel-secondary);
    transform: rotate(90deg);
    border-color: var(--hotel-secondary);
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 2rem;
}

.mobile-nav .menu-item {
    margin-bottom: 0.5rem;
    position: relative;
}

.mobile-nav a {
    color: var(--hotel-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.938rem;
    background: transparent;
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: var(--hotel-light);
    color: var(--hotel-primary);
    border-left: 3px solid var(--hotel-primary);
    padding-left: 1.5rem;
}

.mobile-nav a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--hotel-primary);
    opacity: 0.5;
}

.mobile-nav a.active i {
    transform: rotate(90deg);
    opacity: 1;
}

/* Mobile Mega Submenu */
.mobile-nav .mega-submenu {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: var(--hotel-light);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border: none;
}

.mobile-nav .mega-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.mobile-nav .mega-submenu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.mobile-nav .menu-item.active .mega-submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.mobile-nav .mega-submenu:hover {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.mobile-nav .submenu-column {
    margin-bottom: 1rem;
}

/* Mobile Sub-submenu */
.mobile-nav .sub-submenu {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    transform: none;
    width: 100%;
    background: var(--hotel-light);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 11;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    margin-left: 1px;
    border: none;
}

.mobile-nav .sub-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.mobile-nav .sub-submenu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    animation: none;
}

.mobile-nav .submenu-column ul li.has-children:hover .sub-submenu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.mobile-nav .submenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .submenu-column ul li {
    margin-bottom: 0.25rem;
}

/* Menu Footer */
.mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--hotel-border);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--hotel-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--hotel-border);
}

.mobile-social a:hover {
    background: var(--hotel-primary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--hotel-primary);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--hotel-text);
    text-decoration: none;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid var(--hotel-border);
}

.mobile-contact a:hover {
    background: var(--hotel-light);
    color: var(--hotel-primary);
    border-color: var(--hotel-primary);
    transform: translateX(5px);
}

.mobile-contact a i {
    color: var(--hotel-primary);
    font-size: 1rem;
    opacity: 0.75;
}

.mobile-contact a:hover i {
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mega-menu {
        display: none;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    body {
        padding-top: 60px;
    }

    .main-header {
        top: 40px;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    left: 0;
    right: 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color-title);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.flip-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.flip-box {
    perspective: 1000px;
    height: 400px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-box-front {
    background: var(--gradient-dark);
    color: white;
}

.flip-box-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.flip-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.flip-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: calc(100% - 2rem);
    height: 275px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 0 1rem;
}

.flip-box-back p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.learn-more {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Pricing Tables */
.pricing {
    padding: 8rem 0;
    background: #fff;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-weight: 700;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

.price-features {
    margin: 2rem 0;
}

.price-features ul {
    list-style: none;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: var(--light-bg);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.portfolio-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 20px;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: #333;
}

/* Contact Form */
.contact {
    padding: 8rem 0;
    background: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.main-footer {
    background: linear-gradient(to right, #0A1F2E, #1B4B6D);
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Add margin to the last section before footer */
.hotel-offers {
    margin-bottom: 0;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    background: rgba(200, 157, 102, 0.1);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(200, 157, 102, 0.2);
}

.footer-logo {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}

.footer-top:hover {
    transform: scale(1.05);
}

.footer-top:hover::before {
    left: 100%;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.footer-logo:hover img {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
    position: relative;
}

.footer-section h3 {
    color: var(--hotel-secondary-footer);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--hotel-secondary-footer);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-contact {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--hotel-secondary-footer);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    color: var(--hotel-secondary-footer);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--hotel-transition-footer);
}

.contact-info a:hover {
    color: var(--hotel-secondary-footer);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--hotel-transition-footer);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--hotel-secondary-footer);
    transition: var(--hotel-transition-footer);
}

.footer-links a:hover {
    color: var(--hotel-secondary-footer);
    transform: translateX(10px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-newsletter {
    margin-bottom: 2rem;
}

.newsletter-input {
    position: relative;
    margin-top: 1rem;
}

.newsletter-input input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(200, 157, 102, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 0.95rem;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1.5rem;
    background: var(--hotel-secondary-footer);
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    transition: var(--hotel-transition-footer);
}

.newsletter-input button:hover {
    background: #B68C55;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 157, 102, 0.1);
    border: 1px solid rgba(200, 157, 102, 0.2);
    border-radius: 50%;
    color: var(--hotel-secondary-footer);
    text-decoration: none;
    transition: var(--hotel-transition-footer);
}

.social-link:hover {
    background: var(--hotel-secondary-footer);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(200, 157, 102, 0.1);
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--hotel-transition);
}

.footer-bottom-links a:hover {
    color: var(--hotel-secondary-footer);
}

@media (max-width: 1366px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .newsletter-input {
        max-width: 300px;
        margin: 1rem auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .main-footer {
        position: relative;
        transform: none;
        margin-top: 0px;
    }

    .main-footer.slide-up,
    .main-footer.show-full {
        transform: none;
    }

    .hotel-offers {
        margin-bottom: 0;
        padding-bottom: 1rem;
    }
}