/**
 * Modern Homepage Styles
 * South Wales Hot Tub Cottages
 * Enhanced Design - June 2026
 */

/* ==========================================================================
   Homepage Body - Hide old header
   ========================================================================== */

body.homepage .bigHeader {
    display: none !important;
}

/* ==========================================================================
   0. CSS Variables
   ========================================================================== */

:root {
    --primary-color: #1e4258;
    --primary-dark: #152f40;
    --primary-light: #2a5a7a;
    --accent-color: #FF8C1C;
    --accent-hover: #e67a0f;
    --text-dark: #1e4258;
    --text-medium: #555;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   1. Hero Section - Redesigned
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 66, 88, 0.92) 0%, rgba(21, 47, 64, 0.88) 50%, rgba(30, 66, 88, 0.85) 100%);
    z-index: 1;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 18s; width: 30px; height: 30px; }
.particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; animation-duration: 14s; width: 15px; height: 15px; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; animation-duration: 16s; width: 25px; height: 25px; }
.particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 3s; animation-duration: 20s; width: 12px; height: 12px; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s infinite;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 28, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 140, 28, 0); }
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.title-line {
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    display: block;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero search box */
.hero-search-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.search-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.search-tab:hover,
.search-tab.active {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.search-content.hidden {
    display: none;
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.quick-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-filter:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.quick-filter i {
    font-size: 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 140, 28, 0.4);
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 28, 0.5);
    color: white;
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* Trust indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: var(--accent-color);
}


/* ==========================================================================
   2. Stats Section
   ========================================================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 50px 20px;
    margin-bottom: 60px;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* ==========================================================================
   3. Section Headings - Enhanced
   ========================================================================== */

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

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==========================================================================
   4. Category Cards Grid - Enhanced
   ========================================================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image {
    transform: scale(1.15);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: var(--transition);
    z-index: 2;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(19, 124, 132, 0.7) 0%, rgba(19, 124, 132, 0.95) 100%);
}

.category-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    text-align: center;
    transition: var(--transition);
}

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

.category-card-count {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: white;
    opacity: 0.95;
    background: rgba(255, 140, 28, 0.9);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* ==========================================================================
   5. Featured Cottages Carousel - Enhanced
   ========================================================================== */

.featured-carousel-wrapper {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 70px 0;
    margin-bottom: 0;
}

.featured-cottage-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin: 0 10px;
    text-decoration: none;
}

.featured-cottage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-cottage-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-cottage-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-cottage-card:hover .featured-cottage-image {
    transform: scale(1.05);
}

.featured-cottage-image-wrapper {
    overflow: hidden;
    position: relative;
}

.featured-cottage-content {
    padding: 22px;
}

.featured-cottage-name {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.featured-cottage-card:hover .featured-cottage-name {
    color: var(--primary-color);
}

.featured-cottage-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.featured-cottage-location i {
    margin-right: 6px;
    color: var(--primary-color);
}

.featured-cottage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ecf2f7 0%, #e8eef3 100%);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 13px;
}

.featured-cottage-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.price-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-amount small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.featured-cottage-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 140, 28, 0.3);
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    color: var(--primary-color) !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 55px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--shadow-lg);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -27px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -27px;
}

.owl-carousel .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 6px;
    transition: var(--transition);
}

.owl-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* ==========================================================================
   6. Destinations Grid - Enhanced
   ========================================================================== */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.destination-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-card-image {
    transform: scale(1.15);
}

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
    z-index: 2;
}

.destination-card:hover .destination-card-overlay {
    background: linear-gradient(0deg, rgba(19, 124, 132, 0.95) 0%, rgba(19, 124, 132, 0.4) 60%);
}

.destination-name {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.destination-count {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: white;
    opacity: 0.95;
    background: rgba(255, 140, 28, 0.9);
    padding: 5px 15px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   7. Benefits Section - Enhanced
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 38px;
    box-shadow: 0 8px 25px rgba(19, 124, 132, 0.35);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   8. SEO Content Section - Enhanced
   ========================================================================== */

.seo-content {
    max-width: 1200px;
    margin: 70px auto;
    padding: 50px 40px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.seo-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    margin: 35px 0 18px;
    font-weight: 600;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.seo-content ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.seo-content ul li {
    margin-bottom: 15px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* SEO Hero Image */
.seo-hero-image {
    margin: 30px 0 35px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.seo-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* SEO Intro Paragraph */
.seo-intro {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin-bottom: 30px;
}

/* SEO Features Grid */
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.seo-feature {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.seo-feature h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.seo-feature p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
}

/* SEO Types List */
.seo-types-list {
    margin: 30px 0;
}

.seo-type {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.seo-type:last-child {
    border-bottom: none;
}

.seo-type h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-type h4::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.seo-type p {
    margin-bottom: 0;
    padding-left: 20px;
}

/* SEO CTA */
.seo-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.seo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 66, 88, 0.3);
}

.seo-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 66, 88, 0.4);
    color: white;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

.intro-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    padding: 70px 20px;
    margin-bottom: 0;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.intro-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.intro-feature i {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(30, 66, 88, 0.3);
}

.intro-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================================================
   Regions Section
   ========================================================================== */

.regions-section {
    padding: 70px 0;
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.region-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.region-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.region-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.region-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.region-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.region-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* ==========================================================================
   Experiences Section
   ========================================================================== */

.experiences-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.experience-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.experience-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.experience-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.experience-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   9. Responsive Design
   ========================================================================== */

/* Large Tablet / Small Desktop */
@media only screen and (max-width: 1199px) {
    .category-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media only screen and (max-width: 991px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-search-box {
        max-width: 100%;
    }

    .section-title {
        font-size: 34px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-features {
        gap: 25px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .hero-section {
        min-height: 550px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .hero-cta {
        padding: 15px 35px;
        font-size: 16px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .search-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .quick-filters {
        flex-wrap: wrap;
    }

    .quick-filter {
        flex: 1 1 45%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .section-container {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .category-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card,
    .destination-card {
        aspect-ratio: 16 / 9;
    }

    .category-card-title {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card:last-child {
        max-width: none;
    }

    .featured-carousel-wrapper {
        padding: 50px 0;
    }

    .featured-cottage-image {
        height: 200px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        line-height: 45px;
    }

    .seo-content {
        padding: 35px 25px;
        margin: 50px 20px;
    }

    .seo-content h2 {
        font-size: 28px;
    }

    .seo-content h3 {
        font-size: 20px;
    }

    .seo-features-grid {
        grid-template-columns: 1fr;
    }

    .seo-intro {
        font-size: 16px;
        padding-left: 20px;
    }

    .intro-section {
        padding: 50px 20px;
    }

    .intro-content h2 {
        font-size: 28px;
    }

    .intro-features {
        gap: 20px;
    }

    .intro-feature i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .regions-section {
        padding: 50px 20px;
    }

    .region-card {
        padding: 25px;
    }

    .experiences-section {
        padding: 50px 20px;
    }

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

    .experience-card {
        padding: 25px;
    }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-search-box {
        padding: 15px;
    }

    .quick-filter {
        flex: 1 1 100%;
        padding: 10px 15px;
    }

    .stats-section {
        padding: 35px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 30px;
    }

    .section-container {
        padding: 0 15px;
    }

    .featured-cottage-content {
        padding: 18px;
    }

    .featured-cottage-name {
        font-size: 16px;
        min-height: 42px;
    }

    .price-amount {
        font-size: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}

/* ==========================================================================
   10. Link Styling & Utilities
   ========================================================================== */

.category-card,
.destination-card,
.featured-cottage-card a,
.hero-cta,
.quick-filter,
.search-tab {
    text-decoration: none;
    color: inherit;
}

.category-card:hover,
.destination-card:hover,
.hero-cta:hover,
.quick-filter:hover,
.search-tab:hover {
    text-decoration: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.hero-cta:focus,
.quick-filter:focus,
.search-tab:focus,
.category-card:focus,
.destination-card:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}
