@font-face {
    font-family: 'Neura Path';
    src: url('../fonts/Neura_Path.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neura Path';
    src: url('../fonts/Neura_Path_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary-color: #d4a850;
    --accent-color: #5a8a4a;
    --text-dark: #2c3e35;
    --text-light: #6b7c6e;
    --bg-light: #f5f3ed;
    --bg-white: #ffffff;
    --bg-cream: #e8d5b5;
    --border-color: #d4c8b0;
    --success-color: #5a8a4a;
    --error-color: #c84b31;
    --forest-green: #2d5a3d;
    --olive-green: #9bb08a;
    --golden-yellow: #d4a850;
    --gradient-1: linear-gradient(135deg, #5a8a4a 0%, #2d5a3d 100%);
    --gradient-2: linear-gradient(135deg, #d4a850 0%, #c89b3f 100%);
    --gradient-3: linear-gradient(135deg, #9bb08a 0%, #5a8a4a 100%);
    --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.1);
    --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 90, 61, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.225rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 175px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    margin: -26px 0;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 125px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-testimonials {
    margin: 3rem 0 2rem;
    max-width: 1000px;
}

.testimonials-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 0.744rem 1.7rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: left;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.facilities-intro-left {
    text-align: left;
    max-width: 100%;
    margin: 0 0 3rem 0;
}

.facilities-intro-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.charges-intro-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.locality-intro-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.locality-intro-container .section-title {
    text-align: left;
}

.bookings-intro-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.bookings-intro-container .section-title {
    text-align: left;
}

.intro-text-left {
    text-align: left;
    max-width: 100%;
    margin: 0 0 3rem 0;
}

.intro-text-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.locality-intro-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.locality-intro-columns .section-intro {
    max-width: 100%;
    text-align: left;
    margin: 0;
}

#bookings .section-intro {
    text-align: left;
    max-width: 100%;
    margin: 0 0 1rem 0;
}

#blog .section-intro {
    text-align: left;
}

#contact .section-intro {
    text-align: left;
}

@media (max-width: 768px) {
    .locality-intro-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8faf8 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

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

.star {
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 1rem;
}

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

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

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

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

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

.facility-card p {
    color: var(--text-light);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.accommodation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.accommodation-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.accommodation-card .featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
}

.accommodation-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.accommodation-content {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.accommodation-content .btn {
    margin-top: auto;
}

.accommodation-content .btn:first-of-type {
    margin-top: auto;
}

.accommodation-content .btn + .btn {
    margin-top: 0.75rem;
}

@media (min-width: 1100px) {
    .accommodation-content h3 {
        min-height: 2.5rem;
    }
    
    .accommodation-content > p {
        min-height: 4.5rem;
    }
    
    .accommodation-content .feature-list {
        min-height: 10rem;
    }
}

.accommodation-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.accommodation-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.locality-content {
    margin-top: 3rem;
}

.accordion-item {
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4129 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #1f4129 0%, var(--primary-color) 100%);
}

.accordion-header::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
}

.accordion-content.active {
    max-height: 5000px;
    padding: 1rem 1rem 1.25rem;
}

.category-intro {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.category-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-style: italic;
}

.attractions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .attractions-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .attractions-list {
        grid-template-columns: 1fr;
    }
}

.attraction-item {
    padding: 0.6rem;
    border-left: 3px solid var(--secondary-color);
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.attraction-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.attraction-item h4 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.attraction-item p {
    color: var(--text-light);
    font-size: 0.7rem;
    line-height: 1.5;
}

.beaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .beaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.beach-card {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.beach-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.beach-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.beach-card p {
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.5;
}

.dog-friendly {
    display: inline-block;
    background: var(--olive-green);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.towns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .towns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.town-card {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.town-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.town-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.town-card p {
    color: var(--text-dark);
    font-size: 0.75rem;
    line-height: 1.5;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.attraction-card {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.attraction-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.attraction-card p {
    color: var(--text-light);
    font-size: 0.75rem;
}

.locality-summary {
    background: linear-gradient(135deg, #9bb08a 0%, #5a8a4a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.locality-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

@media (min-width: 1100px) {
    .pricing-card h3:first-of-type {
        min-height: 4.5rem;
    }
    
    .pricing-card .price-info {
        min-height: 10rem;
    }
    
    .pricing-card .pricing-features {
        min-height: 12rem;
    }
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-highlight {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.price-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-details {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.pricing-details p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pricing-details p strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.price-list {
    list-style: none;
    margin-bottom: 1.25rem;
    margin-left: 0.5rem;
}

.price-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.price-list li:before {
    content: "£";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-note {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.booking-steps {
    margin-bottom: 3rem;
}

.booking-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

.booking-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    margin-top: 2rem;
}

.booking-tips h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-tips ul {
    list-style: none;
}

.booking-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.booking-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.booking-tips-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.booking-tips-column h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.booking-tips-column p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.booking-tips-column .special-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(45, 90, 61, 0.2);
    font-size: 0.95rem;
}

.booking-tips-column .special-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-tips-column .special-contact a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .booking-tips-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.special-contact-full {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--primary-color);
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.special-contact-full a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.special-contact-full a:hover {
    color: var(--primary-dark);
}

.booking-special {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.booking-special h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-special p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.booking-special ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.booking-special li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.booking-special li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.special-contact {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.special-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.special-contact a:hover {
    text-decoration: underline;
}

.booking-cta {
    display: flex;
    align-items: center;
}

.cta-box {
    background: var(--gradient-1);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    width: 100%;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.booking-final-cta {
    background: linear-gradient(135deg, #d4a850 0%, #5a8a4a 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.booking-final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-final-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.booking-final-cta .btn {
    margin-top: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

.blog-content {
    padding: 1.5rem;
}

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

.blog-category {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.info-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

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

.map-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-card.map-card {
    margin-top: 2rem;
}

.directions-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.location-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-what3words {
    background: #E11F26;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    min-height: 60px;
    min-width: 200px;
}

.btn-what3words:hover {
    background: #c0171d;
    color: white;
}

.what3words-logo {
    height: 3rem;
    width: auto;
}

.btn-google-maps {
    background: #ffffff;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    min-height: 60px;
    min-width: 200px;
}

.btn-google-maps:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: var(--text-dark);
}

.google-maps-logo {
    height: 3.5rem;
    width: auto;
}

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

.what3words a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.what3words a:hover {
    border-bottom-color: white;
}

.w3w-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 0.75rem;
    transition: transform 0.3s ease;
}

.w3w-logo:hover {
    transform: scale(1.05);
}

.directions-section {
    margin-bottom: 2rem;
}

.directions-section:last-child {
    margin-bottom: 0;
}

.directions-section h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.directions-section h4:before {
    content: "🚗";
    margin-right: 0.5rem;
    font-size: 1.5rem;
    display: inline-block;
    transform: scaleX(-1);
}

.directions-section:first-child h4:before {
    transform: scaleX(1);
}

.directions-section p {
    color: var(--text-dark);
    line-height: 1.7;
}

.footer {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 4rem 0 0;
}

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

.footer-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo {
    max-width: 375px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
}

.footer-section p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.footer-summary {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-summary p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    background-color: var(--text-dark);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.website-credit-section {
    background-color: var(--bg-white);
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

.footer-credit {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.bluebottle-link {
    font-family: 'Neura Path', sans-serif;
    font-size: 2.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bluebottle-link:hover {
    color: #2AC5F0;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 125px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section {
        text-align: right;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .facilities-grid,
    .attractions-grid,
    .pricing-grid,
    .blog-grid,
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: right;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: 0;
    }
}

.blog-page {
    padding-top: 100px;
    min-height: 100vh;
    background-color: var(--bg-light);
}

.blog-header {
    background: var(--gradient-1);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-meta-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.blog-featured-image {
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.blog-article {
    max-width: 800px;
    margin: -3rem auto 4rem;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.blog-article h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.blog-article h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.blog-article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article ul,
.blog-article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-to-blog:hover {
    color: var(--primary-dark);
}

.highlight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-white);
    margin: 3% auto;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-light);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-price {
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.modal-content p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.modal-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-content button {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% 5%;
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}