/* ================================================
   CROFT ACRE HOLIDAY COTTAGES - MAIN STYLESHEET
   Modern, warm hospitality design with conversion focus
   ================================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Warm Coastal Palette */
    --primary-color: #2c5f6f;
    --primary-dark: #1a3d48;
    --primary-light: #4a8a9f;
    --accent-color: #d4a574;
    --accent-light: #e8c9a8;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f9f7f4;
    --light-gray: #e8e6e3;
    --gray: #8a8884;
    --dark-gray: #4a4845;
    --black: #2a2826;
    
    /* Status Colors */
    --success: #5a9f7e;
    --warning: #d4a574;
    --error: #c85a54;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-nav {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 111, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: unset;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    opacity: 0.8;
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2c5f6f 0%, #1a3d48 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(116deg, rgb(44 95 111 / 35%) 0%, rgb(26 61 72 / 65%) 100%);
    z-index: 1;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
    z-index: 1;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--white);
    width: 32px;
    border-radius: 6px;
}

.hero-main-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.hero-text {
    color: var(--white);
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 6px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Hero Review Stars */
.hero-reviews {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-badge:hover {
    background-color: rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.review-star-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.review-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.review-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.review-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.hero-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Horizontal Booking Bar */
.hero-booking-bar {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.booking-form-horizontal {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.booking-form-horizontal .form-group {
    flex: 1;
    min-width: 150px;
}

.booking-form-horizontal label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-form-horizontal input,
.booking-form-horizontal select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.booking-form-horizontal input:focus,
.booking-form-horizontal select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 111, 0.1);
}

.btn-booking {
    padding: 0.75rem 2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.booking-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.booking-phone i {
    font-size: 1.1rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-description,
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== COTTAGES FOR EVERYONE SECTION ===== */
.cottages-for-everyone {
    padding: 4rem 0;
    background-color: #f4f4f4;
}

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

.cottage-category-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cottage-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cottage-category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-title {
    padding: 1rem;
    text-align: center;
}

.category-title span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.cottage-category-card:hover .category-title span {
    color: var(--primary-dark);
}

/* Responsive Design for Cottage Categories */
@media (max-width: 1024px) {
    .cottages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cottages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cottages-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 200px;
    }
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

/* Two Column Layout with Image Mosaic */
.intro-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.intro-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.intro-highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.intro-highlight-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Image Mosaic Layout */
.intro-images-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.mosaic-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.mosaic-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.mosaic-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.mosaic-small {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.mosaic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.mosaic-image:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.usp-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.usp-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.usp-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hidden USPs */
.usp-card.hidden-usp {
    display: none;
}

.usps-expanded .usp-card.hidden-usp {
    display: block;
}

/* Show More USPs Button */
.btn-show-more-usps {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(44, 95, 111, 0.3);
}

.btn-show-more-usps:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 111, 0.4);
}

.btn-show-more-usps:active {
    transform: translateY(0);
}

.btn-show-more-usps i {
    transition: transform 0.3s ease;
}

.btn-show-more-usps:hover i {
    transform: translateY(2px);
}

/* ===== ACCOMMODATIONS SECTION ===== */
.accommodations-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.book-direct-banner {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.book-direct-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
}

.book-direct-content i {
    font-size: 2.5rem;
}

.book-direct-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.book-direct-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Properties Slider */
.properties-slider-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.properties-slider-wrapper {
    overflow: hidden;
    padding: 1rem 0;
}

.properties-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.properties-slider .property-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

/* Slider Dots */
.properties-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.properties-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.properties-slider-dots .dot:hover {
    background-color: var(--primary-light);
}

.properties-slider-dots .dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .properties-slider .property-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .properties-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .properties-slider .property-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .properties-slider-container {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: -5px;
    }
    
    .slider-next {
        right: -5px;
    }
}

.property-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.property-card.featured {
    border: 2px solid var(--accent-color);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.property-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.property-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    border-bottom: 1px solid var(--light-gray);
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.property-details i {
    color: var(--primary-color);
}

.property-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.property-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.property-amenities i {
    color: var(--success);
    font-size: 0.8rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0px;
    border-top: none !important;
}

.property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.property-footer a:hover {
    color: white !important;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
}

.testimonial-text.collapsed {
    max-height: 120px;
    overflow: hidden;
}

.testimonial-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin-bottom: 1rem;
    text-decoration: underline;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-source {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* ===== WHY STAY SECTION ===== */
.why-stay-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.why-stay-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.why-stay-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.7;
}

.amenities-showcase {
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: 8px;
}

.amenities-showcase h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 6px;
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.amenity-item span {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===== THINGS TO DO SECTION ===== */
.things-to-do-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

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

.attraction-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.attraction-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attraction-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 300px !important;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category,
.blog-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

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

.contact-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 111, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.map-container {
    margin-top: 3rem;
}

.map-container h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

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

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.certifications-croftcore {
    width: 150px;
    height: 150px;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    line-height: 130px;
    transform: translateY(1px);
    transition: 600ms all;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.certifications-croftcore:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certifications-croftcore img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-column ul li i {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== INTERACTIVE HOTSPOT MAP STYLES ===== */
@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8;
    }
    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8;
    }
    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

.top_banner {
    width: 100%;
    background-color: #f5f5f5;
    position: relative;
}

#hotspotImg {
    background-color: #ededed;
    background-size: cover;
    background-position: center center;
    position: relative;
    width: 100%;
    max-width: 1905px;
    margin: 0 auto;
}

#hotspotImg .img-responsive {
    width: 100%;
    max-width: 1905px;
    aspect-ratio: 1905 / 754;
    object-fit: cover;
    display: block;
}

#hotspotImg .hot-spot {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 5px;
    left: 5px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
}

#hotspotImg .hot-spot .pin {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

#hotspotImg .hot-spot:hover .pin {
    transform: scale(1.2);
}

#hotspotImg .hot-spot .circle {
    display: block;
    position: absolute;
    top: 45%;
    left: 45%;
    width: 2em;
    height: 2em;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.animated {
    animation: pulsate 3s ease-out infinite;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: .6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

#hotspotImg .hot-spot .tooltip {
    background-color: rgba(14, 15, 15, .9);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #fff;
    display: none;
    font-size: 14px;
    opacity: 0;
    left: 0;
    padding: 15px 10px;
    position: absolute;
    text-align: left;
    top: 35px;
    width: 280px;
    z-index: 999;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#hotspotImg .hot-spot:hover .tooltip {
    display: block;
    opacity: 1;
}

#hotspotImg .hot-spot .tooltip .img-row {
    padding: 10px;
    text-align: center;
}

#hotspotImg .hot-spot .tooltip .text-row {
    padding: 10px;
}

#hotspotImg .hot-spot .tooltip h4 {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

#hotspotImg .hot-spot .tooltip p {
    font-size: 13px;
    line-height: 1.4em;
    margin-bottom: 10px;
    color: #fff;
}

#hotspotImg .hot-spot .tooltip p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for hotspot map */
@media (max-width: 1200px) {
    #hotspotImg .hot-spot {
        transform: scale(0.9);
    }
    
    #hotspotImg .hot-spot .tooltip {
        width: 240px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #hotspotImg .hot-spot {
        transform: scale(0.7);
    }
    
    #hotspotImg .hot-spot .pin {
        width: 25px;
    }
    
    #hotspotImg .hot-spot .tooltip {
        width: 200px;
        font-size: 12px;
        padding: 10px 8px;
    }
    
    #hotspotImg .hot-spot .tooltip h4 {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .booking-form-horizontal {
        gap: 0.75rem;
    }

    .booking-form-horizontal .form-group {
        min-width: 130px;
    }

    .btn-booking {
        padding: 0.75rem 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .intro-content-grid {
        gap: 3rem;
    }

    .intro-images-mosaic {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
        gap: 1rem;
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0 !important;
    }

    .hero-main-content {
        padding: 2rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .booking-form-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-form-horizontal .form-group {
        width: 100%;
    }

    .btn-booking,
    .booking-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-booking-bar {
        width: 100%;
        padding: 1.25rem 0;
    }

    .hero-reviews {
        gap: 1rem;
    }

    .review-badge {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .review-star-icon {
        font-size: 1.5rem;
    }

    .review-score {
        font-size: 1rem;
    }

    .review-label {
        font-size: 0.85rem;
    }

    .why-stay-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .attractions-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }

    .intro-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-images-mosaic {
        height: 350px;
        order: -1; /* Show images first on mobile */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-reviews {
        flex-direction: column;
        gap: 0.75rem;
    }

    .review-badge {
        width: 100%;
    }

    .hero-slider-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    .intro-images-mosaic {
        height: 300px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .mosaic-large,
    .mosaic-small {
        grid-column: 1;
        grid-row: auto;
    }

    .intro-description {
        font-size: 1rem;
    }

    .usps-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .property-amenities {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Mobile and tablet specific adjustments */
@media (max-width: 768px) {
    .properties-slider-container {
        padding: 0px !important;
    }
}

@media (max-width: 500px) {
    .property-content {
        padding: 6px !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}