* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg {
    background-image: url('boat.jpeg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-gray);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.showcase-content {
    padding: 2rem;
}

.showcase-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.showcase-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
}

.gallery-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.gallery-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gallery {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-gallery:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.location-features {
    margin-top: 2rem;
}

.location-feature {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--highlight-color);
}

.location-feature strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.map-icon {
    font-size: 1.2rem;
}

.map-iframe {
    border: 0;
    border-radius: 15px;
}

/* SVG Icon Styles */
.icon-airbnb {
    height: 32px;
    width: 32px;
    fill: #FF5A5F;
}

.icon-booking {
    height: 32px;
    width: 32px;
}

.icon-whatsapp {
    height: 32px;
    width: 32px;
    fill: #25D366;
}

.icon-airbnb-small {
    height: 20px;
    width: 20px;
    fill: #FF5A5F;
}

.icon-booking-small {
    height: 20px;
    width: 20px;
    fill: #003580;
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.booking .section-title {
    color: white;
}

.booking-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF5A5F, #FC642D);
}

.booking-card.booking-com::before {
    background: linear-gradient(90deg, #003580, #0077CC);
}

.booking-card.whatsapp::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.booking-logo {
    margin-bottom: 1.5rem;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.booking-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.booking-cta {
    display: inline-block;
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.booking-card:hover .booking-cta {
    color: var(--accent-color);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reviews-header {
    margin-bottom: 3rem;
}

.rating-hero {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.dual-ratings {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.rating-main {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.airbnb-rating .rating-number {
    background: linear-gradient(135deg, #FF5A5F, #FC642D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-rating .rating-number {
    background: linear-gradient(135deg, #003580, #0077CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 2rem;
    color: #ddd;
}

.star.filled {
    color: #FFD700;
    animation: sparkle 2s ease-in-out infinite;
}

.rating-scale {
    margin-bottom: 0.5rem;
}

.scale-text {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.rating-label {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.airbnb-rating .rating-label {
    color: #FF5A5F;
}

.booking-rating .rating-label {
    color: #003580;
}

.rating-summary {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.review-platforms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    min-width: 160px;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.platform-details {
    display: flex;
    flex-direction: column;
}

.platform-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.platform-count {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.total-reviews {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.total-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight-color);
    line-height: 1;
}

.total-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.rating-breakdown {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.breakdown-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.rating-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rating-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.rating-item:hover {
    transform: translateY(-3px);
}

.rating-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.rating-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.rating-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FF6B6B);
    border-radius: 10px;
    transition: width 1.5s ease-out, transform 1.5s ease-out;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
}

.rating-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Rating Bar Widths */
.rating-width-100 { width: 100%; }
.rating-width-98 { width: 98%; }
.rating-width-96 { width: 96%; }

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f4c75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Call-to-Action Elements */
.cta-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-glow 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.cta-button.booking {
    background: linear-gradient(135deg, #FF5A5F, #FC642D);
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.4);
    animation: pulse-glow-booking 2s infinite;
}

.cta-button.booking:hover {
    box-shadow: 0 12px 35px rgba(255, 90, 95, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

@keyframes pulse-glow-booking {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 90, 95, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 90, 95, 0.6);
        transform: scale(1.05);
    }
}

/* Enhanced Booking Cards */
.booking-card {
    position: relative;
    overflow: hidden;
}

.booking-card::after {
    content: '✨ Book Now';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    transform: rotate(12deg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: sparkle-bounce 3s infinite;
}

@keyframes sparkle-bounce {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.awards-section {
    margin-bottom: 3rem;
}

.guest-favorite-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.booking-awards {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 3px solid #003580;
}

.awards-title {
    text-align: center;
    font-size: 1.8rem;
    color: #003580;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 53, 128, 0.05), rgba(0, 119, 204, 0.05));
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 53, 128, 0.1);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 53, 128, 0.15);
}

.award-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 53, 128, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.award-item:hover img {
    transform: scale(1.02);
}

.award-description h5 {
    font-size: 1.2rem;
    color: #003580;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-description p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.awards-footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #003580, #0077CC);
    border-radius: 15px;
    color: white;
}

.awards-footer p {
    margin: 0;
    font-size: 1.1rem;
}

.awards-footer strong {
    font-size: 1.3rem;
    color: #FFD700;
}

.badge-icon {
    font-size: 3rem;
}

.badge-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.badge-content p {
    color: var(--text-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-date,
.review-location {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-booking p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.footer-links a:hover {
    background: rgba(255,255,255,0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-item img {
        height: 300px;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.4rem;
    }
    
    .gallery-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-gallery {
        text-align: center;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dual-ratings {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .rating-hero {
        padding: 2rem;
    }
    
    .rating-breakdown {
        padding: 2rem;
    }
    
    .rating-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guest-favorite-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-awards {
        padding: 2rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .awards-title {
        font-size: 1.5rem;
    }
    
    .award-item {
        padding: 1rem;
    }
    
    .award-item img {
        max-width: 250px;
    }
    
    .platform-stat {
        min-width: auto;
    }
    
    .total-reviews {
        padding: 1rem;
    }
    
    .total-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .rating-display {
        flex-direction: column;
    }
}

@media (max-width: 550px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}