/* Navbar Styles - Nuevo Diseño */
.navbar {
    background: #2c2c2c;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.hotel-img {
    height: 350px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 25px 20px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    height: 25px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: #d4af37;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.language-btn:hover {
    background: rgba(255,255,255,0.1);
}

.flag-icon {
    width: 16px;
    height: 12px;
}

.btn-reservar {
    background: #d4af37;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-reservar:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

/* Hero Section - Nuevo Diseño */
.hero-main {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/imagenhotel.jpeg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.hero-left {
    color: white;
}

.hotel-badge {
    margin-bottom: 40px;
}

.badge-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hotel-name {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c2c2c;
    margin: 0;
    line-height: 1;
}

.hotel-subtitle {
    font-size: 2.8rem;
    font-weight: bold;
    color: #d4af37;
    margin: -5px 0 0 0;
    line-height: 1;
    font-style: italic;
}

.since-badge {
    position: absolute;
    bottom: 15px;
    font-size: 0.9rem;
    color: #2c2c2c;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 300;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #d4af37;
    width: 20px;
    font-size: 1.2rem;
}

/* Booking Widget */
.booking-widget {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.widget-title {
    color: #2c2c2c;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.date-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.date-group {
    flex: 1;
    position: relative;
}

.date-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    background: white;
}

.date-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 4px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.date-separator {
    color: #666;
    font-weight: bold;
}

.promo-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.btn-reservar-widget {
    width: 100%;
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.btn-reservar-widget:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.booking-benefits {
    margin-bottom: 20px;
}

.benefit-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    flex: 1;
}

.benefit-item i {
    color: #d4af37;
    font-size: 0.9rem;
}

.terms-link {
    display: block;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    text-decoration: underline;
    margin-top: 15px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    color: #2c2c2c;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Footer Updates */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .booking-widget {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: #ffffff;
    }
    
    .hero-container {
        padding: 20px;
    }
    
    .badge-circle {
        width: 150px;
        height: 150px;
    }
    
    .hotel-name {
        font-size: 1.6rem;
    }
    
    .hotel-subtitle {
        font-size: 2rem;
    }
    
    .booking-widget {
        margin-top: 30px;
    }
    
}



.date-group-large label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.date-group-large input {
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    width: 200px;
}

.date-separator {
    color: #d4af37;
    font-size: 1.5rem;
}

.guest-selection {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.guest-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
}

.guest-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    width: 150px;
}

.promo-code-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.promo-input-large {
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    width: 250px;
    text-align: center;
}

.btn-apply-promo {
    padding: 1rem 2rem;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-next,
.btn-back,
.btn-confirm {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-next,
.btn-confirm {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    display: block;
    margin: 0 auto;
}

.btn-back {
    background: #e0e0e0;
    color: #666;
}

.btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* Room Selection */
.room-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-option {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.room-option:hover {
    border-color: #d4af37;
}

.room-option.selected {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.room-image-small {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.room-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    flex: 1;
}

.room-details h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.room-features-small {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.room-features-small span {
    background: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #666;
}

.room-features-small i {
    color: #d4af37;
    margin-right: 0.3rem;
}

.room-price-selection {
    text-align: center;
}

.price-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}

.price-display span {
    font-size: 1rem;
    color: #666;
}

.btn-select-room {
    padding: 0.8rem 1.5rem;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select-room:hover {
    background: #b8941f;
}

/* Personal Information Form */
.guest-info-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-section h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.special-requests {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #2c2c2c;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

/* Confirmation Summary */
.reservation-summary-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.summary-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.summary-section h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 600;
    color: #2c2c2c;
}

.summary-item .value {
    color: #666;
}

.cost-breakdown {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #666;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #d4af37;
}

.terms-acceptance {
    text-align: center;
    margin-bottom: 2rem;
}

.terms-acceptance a {
    color: #d4af37;
    text-decoration: underline;
}

/* Blog Styles */
.featured-post {
    padding: 80px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.featured-image {
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.post-category {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-content h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin: 1rem 0;
    line-height: 1.3;
}

.post-excerpt {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #888;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-read-more:hover {
    transform: translateY(-2px);
}

.blog-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #2c2c2c;
    margin: 0.5rem 0 1rem 0;
    font-size: 1.2rem;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-meta-small {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.8rem;
}

.read-more-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: #b8941f;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.8rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.categories-list a:hover {
    background: #f0f0f0;
    color: #d4af37;
}

.categories-list span {
    color: #888;
    font-size: 0.9rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s;
}

.recent-post-item:hover {
    background: #f0f0f0;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-content h4 {
    color: #2c2c2c;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.recent-post-content span {
    color: #888;
    font-size: 0.8rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-subscribe {
    padding: 0.8rem;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    transform: translateY(-1px);
}

/* Promotions Styles */
.featured-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.promo-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 3px solid #d4af37;
}

.promo-badge {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.promo-content h2 {
    color: #2c2c2c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.promo-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.promo-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-weight: 600;
}

.promo-actions {
    display: flex;
    gap: 1rem;
}

.btn-promo-primary {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-promo-primary:hover {
    transform: translateY(-2px);
}

.btn-promo-info {
    background: transparent;
    color: #d4af37;
    padding: 1rem 2rem;
    border: 2px solid #d4af37;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-promo-info:hover {
    background: #d4af37;
    color: white;
}

.promo-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.promotions-section {
    padding: 80px 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promotion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.promotion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.promotion-content {
    padding: 2rem;
}

.promotion-content h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promotion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotion-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.feature i {
    color: #d4af37;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.promotion-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.promotion-actions {
    text-align: center;
}

.btn-promotion {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-promotion:hover {
    transform: translateY(-2px);
}

.promo-terms {
    padding: 60px 0;
    background: #f8f9fa;
}

.terms-content h3 {
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.terms-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.terms-item h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.terms-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for all new pages */
@media (max-width: 1024px) {
    .overview-grid,
    .location-grid,
    .contact-grid,
    .featured-article,
    .promo-banner,
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step span {
        display: none;
    }
    
    .date-inputs-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guest-selection {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-code-section {
        flex-direction: column;
        align-items: center;
    }
    
    .room-option {
        flex-direction: column;
        text-align: center;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .emergency-numbers {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .rooms-grid,
    .promotions-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-stats {
        grid-template-columns: 1fr;
    }
    
    .transport-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para funcionalidades JavaScript */

/* Navegación móvil activa */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c2c2c;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Elementos de galería filtrados */
.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
}

/* Estados de habitaciones en reserva */
.room-option.selected {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.room-option.selected .btn-select-room {
    background: #28a745;
    color: white;
}

.room-option.selected .btn-select-room:hover {
    background: #218838;
}

/* Estados de botones */
.btn-next:disabled,
.btn-confirm:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

/* Animaciones de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notificaciones */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 10000;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Overlays y modales */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to { transform: scale(1); }
}

/* Estados hover mejorados */
.btn-primary,
.btn-reservar,
.btn-promotion {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-reservar::before,
.btn-promotion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-reservar:hover::before,
.btn-promotion:hover::before {
    left: 100%;
}

/* Scroll suave para anclas */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states mejorados */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Estados de carga para formularios */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading input,
.form-loading select,
.form-loading textarea {
    background-color: #f5f5f5;
}

/* Styles específicos para página de habitaciones */

/* Room Selector */
.room-selector {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.selector-form {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.selector-form h3 {
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 300;
}

.search-inputs {
    display: flex;
    gap: 1rem;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 140px;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-search {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Room Categories */
.room-categories {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #d4af37;
    color: white;
}

/* Rooms Showcase */
.rooms-showcase {
    padding: 80px 0;
}

.rooms-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.room-card-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.room-card-detailed:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-card-detailed:nth-child(even) {
    direction: rtl;
}

.room-card-detailed:nth-child(even) .room-details-full {
    direction: ltr;
}

/* Room Gallery */
.room-gallery {
    position: relative;
}

.main-image {
    height: 350px;
    overflow: hidden;
}

.room-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card-detailed:hover .room-main-img {
    transform: scale(1.05);
}

.image-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 0.5rem;
}

.thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid white;
    opacity: 0.8;
    transition: all 0.3s;
}

.thumb:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Room Details */
.room-details-full {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.room-header h3 {
    color: #2c2c2c;
    font-size: 1.6rem;
    font-weight: 300;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.luxury-badge {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.room-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.spec-item i {
    color: #d4af37;
    font-size: 1rem;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.room-amenities h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.amenity-item i {
    color: #d4af37;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Room Pricing */
.room-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.room-price-large {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d4af37;
    line-height: 1;
}

.price-period {
    color: #666;
    font-size: 0.9rem;
}

.room-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.btn-book-room {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    min-width: 150px;
}

.btn-book-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-room-details {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-room-details:hover {
    background: #d4af37;
    color: white;
}

/* Room Features Section */
.room-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card-large {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card-large:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card-large h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card-large p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.rooms-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary-large {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary-large:hover {
    background: white;
    color: #2c2c2c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .room-card-detailed {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .room-card-detailed:nth-child(even) {
        direction: ltr;
    }
    
    .room-pricing {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .room-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .search-inputs {
        flex-direction: column;
        align-items: center;
    }
    
    .input-group {
        width: 100%;
        max-width: 280px;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .rooms-grid-detailed {
        gap: 2rem;
    }
    
    .room-specs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .room-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .room-details-full {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Room filtering animation */
.room-card-detailed.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.room-card-detailed.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Admin Styles */
.admin-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
}

.btn-logout {
    background: rgba(231, 76, 60, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-logout:hover {
    background: #e74c3c;
}

.admin-dashboard {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Admin Sidebar */
.admin-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.admin-menu {
    padding: 1rem 0;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-section h4 {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.menu-section ul {
    list-style: none;
}

.menu-section li {
    margin-bottom: 0.2rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.menu-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.menu-link.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), transparent);
    color: #d4af37;
    border-right: 3px solid #d4af37;
}

.menu-link i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Admin Content */
.admin-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.admin-section {
    display: none;
    padding: 2rem;
}

.admin-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 300;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-refresh {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh:hover {
    background: #2980b9;
}

.period-selector {
    padding: 0.6rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.stat-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-change {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.stat-change.positive {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.stat-change.negative {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.stat-change.neutral {
    background: rgba(149, 165, 166, 0.2);
    color: #95a5a6;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 3rem;
}

.quick-actions h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.action-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 1.5rem;
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.widget {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.activity-list,
.checkins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.activity-item,
.checkin-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    font-size: 0.9rem;
}

.activity-item .time,
.checkin-item .time {
    color: #666;
    font-size: 0.8rem;
}

/* Filters Section */
.filters-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.filter-row {
    display: flex;
    gap: 1.5rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    padding: 0.6rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 120px;
}

.btn-filter,
.btn-clear {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter {
    background: #d4af37;
    color: white;
}

.btn-clear {
    background: #95a5a6;
    color: white;
}

.btn-filter:hover {
    background: #b8941f;
}

.btn-clear:hover {
    background: #7f8c8d;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.admin-table th {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0.8rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-confirmed {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.status-pending {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.status-completed {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-view {
    background: #3498db;
    color: white;
}

.btn-edit {
    background: #f39c12;
    color: white;
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-action:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Check-ins/Check-outs Grid */
.checkins-grid,
.checkouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.checkin-card,
.checkout-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.checkin-card:hover,
.checkout-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h4 {
    color: #2c3e50;
    margin: 0;
}

.room-number {
    background: #d4af37;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.guest-info {
    margin-bottom: 1rem;
}

.guest-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.guest-details {
    color: #666;
    font-size: 0.9rem;
}

.card-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-checkin,
.btn-checkout {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-checkin {
    background: #27ae60;
    color: white;
}

.btn-checkout {
    background: #e74c3c;
    color: white;
}

.btn-checkin:hover,
.btn-checkout:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Room Status Grid */
.rooms-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.room-status-card {
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
}

.room-status-card.available {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
}

.room-status-card.occupied {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
}

.room-status-card.maintenance {
    background: rgba(243, 156, 18, 0.1);
    border-color: #f39c12;
}

.room-status-card.dirty {
    background: rgba(149, 165, 166, 0.1);
    border-color: #95a5a6;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.room-header h4 {
    color: #2c3e50;
    margin: 0;
}

.room-count {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    color: inherit;
}

.room-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.room-item {
    background: white;
    padding: 0.8rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Guests Stats */
.guests-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guest-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0f0f0;
}

.guest-stat h4 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* Search Box */
.search-box {
    display: flex;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 0.6rem 1rem;
    outline: none;
    flex: 1;
    min-width: 200px;
}

.search-box button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    cursor: pointer;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.report-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.report-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.report-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.report-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.report-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.report-period {
    padding: 0.6rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
}

.btn-generate {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-generate:hover {
    background: #b8941f;
}

/* Settings Tabs */
.settings-tabs {
    max-width: 800px;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.settings-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.settings-form .form-group {
    margin-bottom: 1.5rem;
}

.settings-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.settings-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.settings-form input,
.settings-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
}

.settings-form input:focus,
.settings-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.6rem 1rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    border-color: #d4af37;
    background: #d4af37;
    color: white;
}

.today-date {
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admin-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-sidebar {
        position: static;
        max-height: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-section {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .table-container {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .checkins-grid,
    .checkouts-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guests-stats {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .settings-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-right .admin-user,
    .nav-right .btn-logout {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-status-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-action {
        width: 100%;
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Login Page Styles */
.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

.login-body .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.login-section {
    padding: 2rem 0;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.login-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.login-header p {
    color: #666;
    font-size: 1rem;
    opacity: 0.8;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #d4af37;
    width: 16px;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #d4af37;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.remember-me input:checked + .checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.remember-me input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-password {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #b8941f;
    text-decoration: underline;
}

.btn-login {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.login-error {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.demo-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
}

.demo-info h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-info h4::before {
    content: '🔑';
    font-size: 1.2rem;
}

.demo-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.credential-item {
    font-size: 0.9rem;
    line-height: 1.5;
}

.credential-item strong {
    color: #2c3e50;
}

.credential-item code {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
    font-weight: 600;
}

.security-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 10px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
}

.security-item i {
    width: 16px;
    text-align: center;
}

/* System Info Sidebar */
.system-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
    height: fit-content;
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.loading-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .system-info {
        max-width: none;
        order: -1;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 1rem 0;
    }
    
    .login-container {
        padding: 0 1rem;
    }
    
    .login-card {
        padding: 2rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .demo-credentials {
        font-size: 0.8rem;
    }
    
    .system-info {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-login {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .demo-info,
    .security-info {
        padding: 1rem;
    }
}

/* Loading state for login button */
.btn-login.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-login.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* Success animation */
.login-success {
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Admin Access Styles */

/* Botón discreto en navbar */
.admin-access-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.admin-access-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #d4af37;
    transform: scale(1.1);
}

/* Enlaces en footer */
.system-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-link:hover {
    color: #d4af37;
}

.admin-link i {
    font-size: 0.8rem;
}

.system-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* Footer bottom admin */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.quick-admin {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

.quick-admin:hover {
    background: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

/* Botón flotante */
.floating-admin {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.floating-btn:hover {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Animación para el botón flotante */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .admin-access-btn {
        display: none; /* Ocultar en móvil para ahorrar espacio */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-admin {
        bottom: 80px; /* Más arriba para evitar conflicto con nav móvil */
    }
    
    .system-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Tooltip personalizado para acceso admin */
.admin-access-btn::before,
.quick-admin::before,
.floating-btn::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-bottom: 5px;
}

.admin-access-btn:hover::before,
.quick-admin:hover::before,
.floating-btn:hover::before {
    opacity: 1;
}

/* Estado activo para accesos admin */
.admin-access-btn:active,
.quick-admin:active,
.floating-btn:active {
    transform: scale(0.95);
}

/* Efecto de pulso sutil para indicar interactividad */
@keyframes pulse-admin {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.floating-btn:hover {
    animation: pulse-admin 2s infinite;
}