/* =====================================================
   CABINAS LA CASONA - MAIN STYLESHEET
   Modern, clean design for vacation rental website
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    /* Colors */
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --secondary: #f4a261;
    --secondary-dark: #e76f51;
    --accent: #e9c46a;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Booking Platform Colors */
    --whatsapp: #25d366;
    --airbnb: #ff5a5f;
    --vrbo: #3b5998;
    --bookingcom: #003580;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

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, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
    color: var(--primary-dark);
}

/* ----- Container ----- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Sections ----- */
.section {
    padding: var(--section-padding) 0;
}

.section.bg-light {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-tag.light {
    color: var(--accent);
}

.section-title {
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ----- Language Switcher ----- */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.95);
    padding: 5px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lang-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* ----- Navigation ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
    color: var(--dark);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.nav-link.btn-book {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: var(--radius);
    text-shadow: none;
}

.nav-link.btn-book::after {
    display: none;
}

.nav-link.btn-book:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--dark);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-location i {
    color: var(--secondary);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.hero-features i {
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ----- Page Headers ----- */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.page-header-content h1 {
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ----- About Section ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-item span {
    font-weight: 500;
}

.about-images {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ----- Kitesurf Highlight ----- */
.kitesurf-highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 40px 0;
}

.kitesurf-banner {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
}

.kitesurf-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--white);
}

.kitesurf-icon {
    font-size: 3rem;
    color: var(--accent);
}

.kitesurf-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.kitesurf-content p {
    margin: 0;
    opacity: 0.9;
}

/* ----- Cabins Section ----- */
.cabins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cabin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.cabin-card.featured {
    border: 2px solid var(--primary);
}

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

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

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

.cabin-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cabin-featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cabin-content {
    padding: 25px;
}

.cabin-title {
    margin-bottom: 10px;
}

.cabin-description {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.cabin-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cabin-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.cabin-amenities i {
    color: var(--primary);
    width: 16px;
}

.cabin-actions {
    display: flex;
    gap: 10px;
}

.cabin-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.85rem;
}

/* ----- Cabin Detail Page ----- */
.cabin-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.cabin-detail.reverse {
    direction: rtl;
}

.cabin-detail.reverse > * {
    direction: ltr;
}

.cabin-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cabin-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cabin-popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.cabin-thumb-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.cabin-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.cabin-thumb:hover {
    opacity: 0.8;
}

.cabin-detail-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cabin-detail-badge.large {
    background: var(--secondary);
}

.cabin-detail-title {
    margin-bottom: 20px;
}

.cabin-detail-description {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cabin-detail-features h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

.features-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.features-grid i {
    color: var(--primary);
    width: 20px;
}

.cabin-detail-booking {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.booking-platforms {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.booking-platforms a {
    color: var(--primary);
    font-weight: 500;
    margin-left: 10px;
}

.booking-platforms a:hover {
    text-decoration: underline;
}

.cabin-divider {
    height: 1px;
    background: var(--gray-300);
    margin: 60px 0;
}

/* ----- Amenities Section ----- */
.amenities {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

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

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

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

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

.amenity-card h3 {
    margin-bottom: 10px;
}

.amenity-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.amenity-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ----- Activities Preview ----- */
.activities-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.activity-large {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.activity-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-large .activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.activity-content {
    color: var(--white);
}

.activity-badge {
    display: inline-block;
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.activity-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.activity-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.activities-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.activity-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 240px;
}

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

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

.activity-item .activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.activity-item h4 {
    color: var(--white);
    font-size: 1.1rem;
}

.activities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.activity-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.activity-chip:hover {
    background: var(--primary);
    color: var(--white);
}

.activity-chip.highlight {
    background: var(--primary);
    color: var(--white);
}

.activity-chip i {
    color: var(--primary);
}

.activity-chip:hover i,
.activity-chip.highlight i {
    color: var(--white);
}

/* ----- Activities Page ----- */
.activity-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.activity-featured-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.activity-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.activity-intro {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.activity-details h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.activity-details ul {
    margin-bottom: 25px;
}

.activity-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.activity-details i {
    color: var(--primary);
    margin-top: 4px;
}

.activity-info-box {
    display: flex;
    gap: 30px;
    background: var(--gray-100);
    padding: 20px 25px;
    border-radius: var(--radius);
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-weight: 600;
    color: var(--primary);
}

/* Activity Cards Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.activity-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.activity-card-content {
    padding: 25px;
    padding-top: 35px;
}

.activity-card-content h3 {
    margin-bottom: 10px;
}

.activity-card-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.activity-highlights {
    margin-bottom: 15px;
}

.activity-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--gray-700);
}

.activity-highlights i {
    color: var(--primary);
    font-size: 0.8rem;
}

.activity-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.activity-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.attraction-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.attraction-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.attraction-content {
    padding: 20px;
}

.attraction-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.attraction-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.attraction-distance {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* ----- Beaches Preview ----- */
.beaches-preview {
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.beaches-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.beaches-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.beaches-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.beaches-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.beach-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.beach-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.beach-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ----- Beaches Page ----- */
.beach-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto 40px;
}

.beach-quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.quick-stat {
    text-align: center;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.quick-stat i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.quick-stat .stat-number {
    font-size: 2rem;
    color: var(--primary);
}

.quick-stat .stat-text {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Beach Features */
.beach-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.beach-feature.reverse {
    direction: rtl;
}

.beach-feature.reverse > * {
    direction: ltr;
}

.beach-feature-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.beach-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.beach-distance-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.beach-featured-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beach-feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.beach-description {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.beach-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.beach-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.beach-tag.highlight {
    background: var(--primary);
    color: var(--white);
}

.beach-tag i {
    color: var(--primary);
}

.beach-tag.highlight i {
    color: var(--white);
}

.beach-info {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
}

.info-row {
    margin-bottom: 8px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

/* Beaches Grid */
.beaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.beach-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.beach-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.beach-card-content {
    padding: 20px;
}

.beach-card-content h4 {
    margin-bottom: 8px;
}

.beach-card-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.beach-card-distance {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

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

.tip-card h4 {
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* ----- Dining Preview ----- */
.dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dining-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.dining-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dining-content {
    padding: 25px;
}

.dining-type {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dining-content h3 {
    margin-bottom: 10px;
}

.dining-content p {
    color: var(--gray-600);
    margin: 0;
}

/* ----- Restaurant Page ----- */
.dining-intro {
    text-align: center;
    margin-bottom: 60px;
}

.dining-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

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

.restaurant-category {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.category-title i {
    color: var(--primary);
}

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

.restaurant-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.restaurant-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.restaurant-content {
    padding: 20px;
}

.restaurant-content h4 {
    margin-bottom: 8px;
}

.restaurant-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.restaurant-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.restaurant-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.restaurant-features {
    display: flex;
    gap: 10px;
}

.restaurant-features span {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: var(--gray-100);
    border-radius: 50px;
    color: var(--gray-600);
}

/* Supermarket Feature */
.supermarket-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.supermarket-benefits {
    margin-top: 25px;
}

.supermarket-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.supermarket-benefits i {
    color: var(--primary);
}

.supermarket-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

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

.dish-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.dish-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.dish-card p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
}

/* ----- Gallery Preview ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

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

/* ----- Gallery Page ----- */
.gallery-filter-section {
    background: var(--gray-100);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

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

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-section {
    padding-top: 50px;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.masonry-gallery .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-weight: 500;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-zoom:hover {
    background: var(--primary);
    color: var(--white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    margin-top: 15px;
    font-size: 1.1rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
}

/* ----- Booking Section ----- */
.booking-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.booking-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 20px;
}

.booking-card.whatsapp .booking-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.booking-card.airbnb .booking-icon {
    background: rgba(255, 90, 95, 0.1);
    color: var(--airbnb);
}

.booking-card.vrbo .booking-icon {
    background: rgba(59, 89, 152, 0.1);
    color: var(--vrbo);
}

.booking-card.bookingcom .booking-icon {
    background: rgba(0, 53, 128, 0.1);
    color: var(--bookingcom);
}

.booking-card h3 {
    margin-bottom: 10px;
}

.booking-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.booking-card:hover .booking-action {
    color: var(--secondary);
}

/* Booking Platforms Page */
.booking-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.booking-platform {
    display: flex;
    flex-direction: column;
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.booking-platform .platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-platform.whatsapp .platform-icon {
    background: var(--whatsapp);
    color: var(--white);
}

.booking-platform.airbnb .platform-icon {
    background: var(--airbnb);
    color: var(--white);
}

.booking-platform.vrbo .platform-icon {
    background: var(--vrbo);
    color: var(--white);
}

.booking-platform.bookingcom .platform-icon {
    background: var(--bookingcom);
    color: var(--white);
}

.platform-content h3 {
    margin-bottom: 10px;
}

.platform-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.platform-benefits {
    margin-bottom: 20px;
}

.platform-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.platform-benefits i {
    color: var(--primary);
}

.platform-cta {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
}

/* ----- Testimonials ----- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    margin-bottom: 20px;
    color: var(--secondary);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ----- Location Section ----- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.location-highlights {
    margin-bottom: 30px;
}

.location-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-700);
}

.location-highlights i {
    width: 20px;
    color: var(--primary);
}

.location-address {
    background: var(--gray-100);
    padding: 20px 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.location-address h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary);
}

.location-map {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ----- Contact Page ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 35px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
}

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

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

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 5px;
}

.contact-social h4 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.form-note a {
    color: var(--primary);
    font-weight: 500;
}

/* Map Container */
.map-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.map-info-card {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.map-info-card:last-child {
    margin-bottom: 0;
}

.map-info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary);
}

.directions-list li,
.info-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list i {
    color: var(--primary);
    width: 20px;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.coordinates-note {
    text-align: center;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.coordinates-note i {
    color: var(--primary);
    margin-right: 8px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.faq-item h4 i {
    color: var(--primary);
    margin-top: 3px;
}

.faq-item p {
    margin: 0;
    color: var(--gray-600);
    padding-left: 32px;
}

/* ----- Contact CTA ----- */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ----- Footer ----- */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-lang a {
    color: var(--gray-400);
}

.footer-lang a:hover {
    color: var(--secondary);
}

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        color: var(--dark) !important;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-200);
        text-shadow: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.btn-book {
        margin-top: 20px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .about-grid,
    .cabin-detail,
    .activity-featured,
    .beach-feature,
    .supermarket-feature,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .cabin-detail.reverse,
    .beach-feature.reverse {
        direction: ltr;
    }

    .cabins-grid,
    .amenities-grid,
    .activities-grid,
    .beaches-grid,
    .dining-grid,
    .restaurants-grid,
    .tips-grid,
    .booking-options,
    .booking-platforms-grid,
    .testimonials-slider,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dishes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .gallery-grid,
    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .language-switcher {
        top: 15px;
        right: 70px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-images {
        order: -1;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        left: auto;
        width: 60%;
        margin-top: -50px;
        margin-left: auto;
    }

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

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

    .cabins-grid,
    .amenities-grid,
    .activities-grid,
    .beaches-grid,
    .dining-grid,
    .restaurants-grid,
    .tips-grid,
    .booking-options,
    .booking-platforms-grid,
    .testimonials-slider,
    .faq-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .activities-showcase {
        grid-template-columns: 1fr;
    }

    .activity-large {
        height: 350px;
    }

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

    .beach-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .beach-quick-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .activity-info-box {
        flex-direction: column;
        gap: 15px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

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

    .cabin-actions {
        flex-direction: column;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .contact-form-card {
        padding: 25px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
