/* CSS Variables */
:root {
    --primary-color: #4a90a4;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #4a90a4 0%, #357a8a 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-ocean: linear-gradient(135deg, #4a90a4 0%, #5ba3b8 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    word-wrap: break-word;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    text-decoration: none;
    color: var(--text-dark);
    padding: 5px;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Page Header for inner pages */
.page-header {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/page-header-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.page-header .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    opacity: 0.8;
    z-index: 1;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-white);
}

/* Main Content */
.main-content {
    padding: 5rem 0;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('images/hero-bg.jpg') center/cover no-repeat,
        linear-gradient(135deg, #4a90a4 0%, #357a8a 100%);
    z-index: -2;
}

/* Mobile hero background - vertical image */
@media (max-width: 768px) {
    .hero-background {
        background: 
            url('images/hero-bg-mobile.jpg') center/cover no-repeat,
            linear-gradient(135deg, #4a90a4 0%, #357a8a 100%);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-background {
        background: 
            url('images/hero-bg-mobile.jpg') center/cover no-repeat,
            linear-gradient(135deg, #4a90a4 0%, #357a8a 100%);
        background-position: center center;
    }
}

/* Very small mobile devices */
@media (max-width: 320px) {
    .hero-background {
        background: 
            url('images/hero-bg-mobile.jpg') center/cover no-repeat,
            linear-gradient(135deg, #4a90a4 0%, #357a8a 100%);
        background-position: center center;
        background-size: cover;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.3) 0%, rgba(53, 122, 138, 0.2) 50%, rgba(74, 144, 164, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-weight: 400;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    transform: rotate(45deg);
    margin: 8px auto;
}

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

/* Accommodation Details */
.accommodation-details {
    margin-bottom: 4rem;
}

.details-content {
    max-width: 900px;
    margin: 0 auto;
}

.details-text h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.highlight-box {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

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

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

/* Compact Features List */
.features-list {
    margin-bottom: 3rem;
}

.features-list h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.features-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile responsive for features list */
@media (max-width: 768px) {
    .features-list ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .features-list li {
        padding: 0.5rem 0.75rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
        width: 25px;
    }
}

.comfort-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.comfort-info p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 4rem;
}

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

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

.about-text h2 {
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* Accommodations Section */
.accommodations {
    padding: 5rem 0;
}

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

/* Trailers specific grid - 2x2 layout on desktop */
.trailers-grid .accommodations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for trailers grid */
@media (max-width: 1024px) {
    .trailers-grid .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.accommodation-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(16, 185, 129, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.accommodation-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.card-overlay p {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.card-overlay .price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-white);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content p {
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 4rem;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-notes {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.pricing-notes h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-notes li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 2px;
}

/* Booking Section */
.booking-section {
    margin-bottom: 4rem;
}

.booking-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.booking-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.booking-card .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-bottom: none;
    padding-bottom: 0;
}

.booking-card .contact-item:hover {
    transform: translateY(-2px);
}

.booking-card .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-card .contact-item .contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-card .contact-item strong {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.booking-card .contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.booking-card .contact-item a {
    color: inherit;
    text-decoration: none;
}

.booking-card .contact-item a:hover {
    color: var(--text-white);
}

.booking-btn {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Additional Info Section */
.additional-info {
    margin-bottom: 4rem;
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
    overflow-wrap: break-word;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-white);
}

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

.social-link {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: var(--gradient-primary);
    color: var(--text-white);
    font-weight: 600;
}

.price-table tr:hover {
    background: var(--bg-light);
}

.price-table tr:last-child td {
    border-bottom: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--text-white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10001;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-size: 18px;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: -40px;
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .accommodations-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .page-header h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        height: auto;
        padding: 2rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title { 
        font-size: 2.5rem;
        color: var(--text-white);
    }
    .hero-subtitle { 
        font-size: 1.1rem;
        color: var(--text-white);
    }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { max-width: 200px; width: 100%; }
    
    .accommodations-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .cta-content h2 { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .page-header { height: 30vh; min-height: 250px; }
    
    .container { padding: 0 15px; }
    
    .booking-contacts { flex-direction: column; align-items: center; }
    .highlight-box { flex-direction: column; text-align: center; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { 
        font-size: 2rem;
        color: var(--text-white);
    }
    .hero-subtitle { 
        font-size: 1rem;
        color: var(--text-white);
    }
    .hero-buttons .btn { width: 100%; }
    
    .price-table { font-size: 14px; }
    .price-table th, .price-table td { padding: 0.5rem; }
    
    .gallery { grid-template-columns: 1fr; }
    .gallery-item img { height: 250px; }
    
    .page-header h1 { font-size: 1.75rem; }
    .booking-card { padding: 2rem 1rem; }
    .booking-content h2 { font-size: 2rem; }
}

@media (max-width: 320px) {
    .accommodations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

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

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Features Highlight Section */
.features-highlight {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.features-highlight .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.features-highlight .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(74, 144, 164, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: rgba(74, 144, 164, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* Phone number links */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px 4px;
}

a[href^="tel:"]:hover {
    color: var(--primary-color);
    background: rgba(74, 144, 164, 0.1);
    transform: translateY(-1px);
}

/* Phone links in footer */
.footer a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.8);
}

.footer a[href^="tel:"]:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Phone links in booking cards */
.booking-card a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.8);
}

.booking-card a[href^="tel:"]:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Contacts Page Styles */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-left {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-left h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
 
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 164, 0.15);
    border-radius: 12px;
    color: var(--primary-color);
}

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

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

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

.contact-content a:hover {
    color: var(--text-dark);
}

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

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

.info-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 164, 0.15);
    border-radius: 12px;
    color: var(--primary-color);
}

.info-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Map Section Styles */
.map-section {
    margin-bottom: 6rem;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-section .section-title {
    position: relative;
    display: inline-block;
}

.map-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.map-container {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    border-radius: 16px;
}

/* Mobile responsive for map */
@media (max-width: 768px) {
    .map-container {
        border-radius: 12px;
    }
    
    .map-container iframe {
        border-radius: 12px;
    }
}

/* Mobile responsive for contacts */
@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left {
        padding: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .contact-icon,
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .info-block {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-content h3,
    .info-content h3 {
        font-size: 1.1rem;
    }
}

/* Admin System Styles */
.admin-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: all 0.3s ease;
}

.admin-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.edit-button,
.save-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.edit-button:hover,
.save-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.save-button {
    background: var(--gradient-secondary);
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.login-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.login-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.login-form .btn {
    margin-top: 10px;
    width: 100%;
}

.admin-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10001;
    animation: messageSlideIn 0.3s ease;
    max-width: 300px;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.admin-message-success {
    background: var(--accent-color);
}

.admin-message-error {
    background: #ef4444;
}

/* Content editing styles */
[contenteditable="true"]:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px;
}

[contenteditable="true"]:hover {
    background: rgba(74, 144, 164, 0.05);
}

/* Responsive admin styles */
@media (max-width: 768px) {
    .admin-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }

    .edit-button,
    .save-button {
        bottom: 70px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .login-content {
        margin: 20px;
        padding: 25px;
    }

    .admin-message {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .admin-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .edit-button,
    .save-button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .login-content {
        padding: 20px;
    }

    .login-header h3 {
        font-size: 1.25rem;
    }
} 