/* ==================================================
   POLISHED & COMPACT FRONT PAGE STYLES
   REPLACE: assets/css/premium-frontend.css WITH THIS
   ================================================== */

/* ========== Global Compact Settings ========== */

/* ==================================================
   COMPLETE CSS CODE
   ADD THIS TO: assets/css/premium-frontend.css
   LOCATION: At the VERY TOP of the file
   ================================================== */

/* ========== PERFECT HERO SECTION ========== */
.hero-section-perfect {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a2540;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay-perfect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%);
    z-index: 1;
}

.hero-content-perfect {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge-perfect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-perfect i {
    font-size: 1rem;
}

.hero-title-perfect {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-perfect {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features-perfect {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item-perfect {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item-perfect:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    transform: translateY(-3px);
}

.feature-item-perfect i {
    color: #d4af37;
    font-size: 1.1rem;
}

.hero-cta-perfect {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a2540;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #0a2540;
}

/* Scroll Indicator */
.scroll-indicator-perfect {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse-scroll {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #d4af37;
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator-perfect p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ========== STATS BAR - PERFECT ========== */
.stats-bar-perfect {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
}

.stats-grid-perfect {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card-perfect {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card-perfect:hover {
    background: #fef3c7;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon-perfect {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0a2540;
    flex-shrink: 0;
}

.stat-content-perfect {
    display: flex;
    flex-direction: column;
}

.stat-number-perfect {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a2540;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-perfect {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    animation: whatsappShake 1s infinite;
}

@keyframes whatsappShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #0a2540;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3a5f;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 5px 20px rgba(10, 37, 64, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.6);
    background: linear-gradient(135deg, #403c0a 0%, #1e3a5f 100%);
    color: #ffffff;
}

/* ========== RESPONSIVE - HERO & STATS ========== */
@media (max-width: 1024px) {
    .stats-grid-perfect {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-perfect {
        min-height: 75vh;
        background-attachment: scroll;
    }
    
    .hero-title-perfect {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-perfect {
        font-size: 1.1rem;
    }
    
    .hero-features-perfect {
        gap: 10px;
    }
    
    .feature-item-perfect {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .hero-cta-perfect {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }
    
    .stats-grid-perfect {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card-perfect {
        padding: 15px;
    }
    
    .stat-icon-perfect {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-number-perfect {
        font-size: 2rem;
    }
    
    .whatsapp-float,
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 110px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-features-perfect {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item-perfect {
        justify-content: center;
    }
}

/* ========== SMOOTH ANIMATIONS ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    --section-padding: 60px 0;
    --gap-small: 15px;
    --gap-medium: 25px;
    --gap-large: 40px;
}

/* ========== Quick Booking Section (Below Hero) ========== */
.quick-booking-section {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.booking-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-intro {
    text-align: center;
    margin-bottom: 25px;
}

.booking-intro h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.booking-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.modern-booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.form-group-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 15px 12px 50px;
    transition: all 0.3s ease;
}

.form-group-modern:hover,
.form-group-modern:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: #d4af37;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.2rem;
}

.input-wrapper label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    outline: none;
}

.input-wrapper select {
    cursor: pointer;
}

.input-wrapper select option {
    background: #0a2540;
    color: white;
}

.btn-search-availability {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 35px;
    color: #0a2540;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search-availability:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ========== Trust Strip - Compact ========== */
.trust-strip-compact {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #f3f4f6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item-compact:hover {
    background: #fef3c7;
    transform: translateY(-3px);
}

.trust-item-compact i {
    font-size: 1.8rem;
    color: #d4af37;
}

.trust-item-compact span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== Section Headers - Compact ========== */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.mini-tag {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin: 0;
}

/* ========== About - Compact ========== */
.about-compact {
    padding: 60px 0;
    background: #f9fafb;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a2540;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.floating-badge strong {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.floating-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-text-side h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-text-side p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-list-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-weight: 500;
}

.feature-item-compact i {
    color: #10b981;
    font-size: 1rem;
}

/* ========== Rooms Showcase - Compact ========== */
.rooms-showcase {
    padding: 60px 0;
    background: white;
}

.rooms-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.room-card-compact {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.room-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.room-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card-compact:hover .room-img img {
    transform: scale(1.1);
}

.price-badge-compact {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #d4af37;
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(10, 37, 64, 0.95);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color:  rgba(10, 37, 64, 0.95);
    line-height: 1;
}

.price-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.room-details-compact {
    padding: 20px;
}

.room-details-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.room-details-compact h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.room-details-compact h3 a:hover {
    color: #d4af37;
}

.room-meta-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6b7280;
}

.room-meta-compact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-meta-compact i {
    color: #d4af37;
}

.room-actions-compact {
    display: flex;
    gap: 10px;
}

.btn-outline-small,
.btn-primary-small {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-outline-small {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline-small:hover {
    background: #d4af37;
    color: #0a2540;
}

.btn-primary-small {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a2540;
}

.btn-primary-small:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary-small:disabled {
    background: #9ca3af;
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== Amenities - Compact ========== */
.amenities-compact {
    padding: 60px 0;
    background: #f9fafb;
}

.amenities-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.amenity-item-compact {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amenity-item-compact:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-item-compact i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 12px;
    display: block;
}

.amenity-item-compact span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== Gallery - Consistent Grid ========== */
.gallery-compact {
    padding: 60px 0;
    background: white;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid-consistent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item-consistent {
    position: relative;
    aspect-ratio: 4/3; /* CONSISTENT RATIO */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-consistent img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ENSURES CONSISTENCY */
    transition: transform 0.5s ease;
}

.gallery-item-consistent:hover img {
    transform: scale(1.15);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-consistent:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover i {
    font-size: 2.5rem;
    color: white;
}

.location-tag {
    background: #d4af37;
    color: #0a2540;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ========== Testimonials - Compact ========== */
.testimonials-compact {
    padding: 60px 0;
    background: #f9fafb;
}

.testimonials-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card-compact {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stars-compact {
    margin-bottom: 15px;
}

.stars-compact i {
    color: #e5e7eb;
    font-size: 1rem;
    margin-right: 3px;
}

.stars-compact i.filled {
    color: #fbbf24;
}

.testimonial-card-compact p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.guest-info-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 2px solid #f3f4f6;
}

.guest-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d4af37;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-info-compact strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 3px;
}

.guest-info-compact span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
}

/* ========== Blog - Compact ========== */
.blog-compact {
    padding: 60px 0;
    background: white;
}

.blog-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.blog-card-compact {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-img-compact {
    height: 200px;
    overflow: hidden;
}

.blog-img-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-compact:hover .blog-img-compact img {
    transform: scale(1.1);
}

.blog-content-compact {
    padding: 25px;
}

.blog-meta-compact {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #6b7280;
}

.blog-meta-compact i {
    color: #d4af37;
    margin-right: 5px;
}

.blog-content-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.blog-content-compact h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-compact h3 a:hover {
    color: #d4af37;
}

.blog-content-compact p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-compact {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.read-more-compact:hover {
    gap: 10px;
}

/* ========== CTA - Compact ========== */
.cta-compact {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    padding: 60px 0;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a2540;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0a2540;
}

/* ========== Common Buttons ========== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a2540;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a2540;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-wrapper img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .modern-booking-form {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .features-list-compact {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid-compact,
    .amenities-grid-compact,
    .gallery-grid-consistent,
    .testimonials-grid-compact,
    .blog-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .quick-booking-section {
        margin-top: 0;
    }
    
    .booking-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}