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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #1a1a1a;
    color: #ffffff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text:hover {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.lang-btn:hover .flag-icon {
    transform: scale(1.1);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 8px 40px 8px 15px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: #00ff88;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

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

.mobile-nav .nav-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .header-controls {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-nav .search-input {
    width: 100%;
    max-width: 300px;
}

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

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1));
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    animation: fadeInUp 1s ease 0.6s both;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.stat-text {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 5px;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: black;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00ff88;
    border-color: #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 2px;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: #2a2a2a;
}

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

.feature-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Accommodation Preview Section */
.accommodation-preview {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.accommodation-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

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

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

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

.accommodation-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.accommodation-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.accommodation-badge.exclusive {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.accommodation-content {
    padding: 25px;
}

.accommodation-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.accommodation-description {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.accommodation-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.accommodation-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
}

.period {
    color: #ccc;
    font-size: 0.9rem;
}

.accommodation-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.accommodation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Activities Section */
.activities {
    padding: 100px 0;
    background: #2a2a2a;
}

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

.activity-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.activity-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Latest News Section */
.latest-news {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.news-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.news-date {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: white;
}

.news-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.news-link:hover {
    color: #00cc6a;
}

.news-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.newsletter-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #ccc;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.newsletter-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Footer - Updated Design */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

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

.footer-section h4 {
    margin-bottom: 20px;
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #00ff88;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 6px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #00ff88;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 1.1rem;
}

.social-link:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-description,
    .footer-address {
        max-width: none;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
    }
}

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

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

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 8px 40px 8px 15px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #ccc;
}

.search-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: #00ff88;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

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

.mobile-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
}

.mobile-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
}

.mobile-nav .header-controls {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.mobile-nav .search-input {
    width: 100%;
    max-width: 300px;
}

/* Comprehensive Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    /* Header adjustments */
    .header .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .header-controls {
        gap: 15px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .search-input:focus {
        width: 180px;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 1.3rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Newsletter */
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-description {
        font-size: 1.3rem;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    /* Header - Mobile Layout */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        position: relative;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-controls {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    /* Hide search container on mobile */
    .search-container {
        display: none;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Hero section */
    .hero {
        height: 80vh;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 200px;
        text-align: center;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .features,
    .accommodation-preview,
    .activities,
    .latest-news {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accommodation-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .accommodation-features {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-card {
        height: 250px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        padding: 20px;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
        gap: 15px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .header {
        padding: 8px 0;
    }
    
    .header .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
    }
    
    /* Hide search container on mobile */
    .search-container {
        display: none;
    }
    
    /* Hero section */
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .stats {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 180px;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .features,
    .accommodation-preview,
    .activities,
    .latest-news {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .accommodation-card {
        max-width: none;
    }
    
    .accommodation-content {
        padding: 20px;
    }
    
    .accommodation-title {
        font-size: 1.3rem;
    }
    
    .accommodation-description {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .activity-card {
        height: 200px;
    }
    
    .activity-title {
        font-size: 1.3rem;
    }
    
    .activity-description {
        font-size: 0.8rem;
    }
    
    .news-card {
        padding: 15px;
    }
    
    .news-title {
        font-size: 1.3rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 40px 0;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-form {
        max-width: 280px;
    }
    
    /* Scroll to top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn {
        width: 160px;
        font-size: 12px;
    }
    
    .stats {
        padding: 15px 10px;
    }
    
    .feature-card,
    .accommodation-content,
    .news-card {
        padding: 15px;
    }
    
    .newsletter-form {
        max-width: 260px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 15px;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
        width: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .scroll-to-top,
    .newsletter {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
    }
    
    .hero video {
        display: none;
    }
    
    .hero-overlay {
        background: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .hero-title,
    .feature-title,
    .accommodation-title,
    .activity-title,
    .news-title {
        color: black;
    }
    
    .feature-card,
    .accommodation-card,
    .news-card {
        border: 1px solid #ddd;
        box-shadow: none;    }
}

/* Scroll to Top Button */
.scroll-to-top {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

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

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .features-grid,
    .accommodation-grid,
    .activities-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .contact-btn {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .stats {
        padding: 20px 15px;
    }

    .feature-card,
    .accommodation-content,
    .news-card {
        padding: 20px;
    }
}



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

.logo-img {
    height: 80px; /* Adjust as needed */
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text:hover {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}



/* Header Controls */
.header-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 38px;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.lang-btn.active {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 250px;
}

.search-container:focus-within {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: black;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.search-btn i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-controls {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .search-container {
        width: 200px;
    }
    
    .language-switcher {
        gap: 8px;
    }
    
    .lang-btn {
        width: 45px;
        height: 34px;
    }
}

@media (max-width: 480px) {
    .header-controls {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}



/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.page-hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.page-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00cc6a;
}

.breadcrumb span {
    color: #ccc;
}

/* About Content */
.about-content {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #00ff88;
}

.highlight-item span {
    font-weight: 600;
    color: white;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.image-container video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

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

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #00ff88;
    transform: scale(1.1);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: #2a2a2a;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 50px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    padding: 30px 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
}

.value-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Project Details */
.project-details {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.detail-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

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

.detail-card:hover::before {
    left: 100%;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.detail-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.detail-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.detail-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.stat {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    opacity: 0.8;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    background: #2a2a2a;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00ff88, #00cc6a);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    z-index: 2;
}

.timeline-date {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    width: var(--progress, 0%);
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
    min-width: 100px;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: #1a1a1a;
    text-align: center;
}

.investment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.investment-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.investment-stat {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.investment-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
}

.investment-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat-text {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    color: #ccc;
    font-size: 0.9rem;
}

.investment-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #2a2a2a;
}

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

.partner-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.partner-logo {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.partner-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.partner-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .timeline-date {
        margin-bottom: 20px;
    }
    
    .investment-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .detail-card,
    .investment-stat,
    .partner-card {
        padding: 30px 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}



/* News Page Specific Styles */

/* News Filter */
.news-filter {
    padding: 50px 0;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.filter-tab {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
}

.filter-tab:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

.filter-tab.active {
    background: #00ff88;
    color: #1a1a1a;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Featured News */
.featured-news {
    padding: 80px 0;
    background: #2a2a2a;
}

.featured-article {
    display: flex;
    gap: 40px;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.featured-image {
    flex: 1;
    position: relative;
}

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

.featured-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #00ff88;
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-date {
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    background: #00ff88;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* News Grid */
.news-grid {
    padding: 80px 0;
    background: #1a1a1a;
}

.news-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

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

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

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

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00ff88;
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    display: inline-block;
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #00cc6a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination-btn {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
}

.pagination-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

.pagination-btn.active {
    background: #00ff88;
    color: #1a1a1a;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Newsletter Subscription */
.newsletter-subscription {
    padding: 100px 0;
    background: #2a2a2a;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex-grow: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #3a3a3a;
    color: white;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #00cc6a;
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ff88;
}

/* Press Contacts */
.press-contacts {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.press-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.press-icon {
    font-size: 4.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.press-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.press-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.press-link {
    display: inline-block;
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: #00cc6a;
}

/* Responsive Design for News Page */
@media (max-width: 992px) {
    .featured-article {
        flex-direction: column;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .news-articles {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .filter-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-tab {
        width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }
    
    .newsletter-input {
        border-radius: 15px 15px 0 0;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .news-title {
        font-size: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 20px;
    }
}



/* Contacts Page Specific Styles */

/* Contact Information Section */
.contact-info {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.contact-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.contact-icon {
    font-size: 4.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-details p strong {
    color: #00ff88;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #2a2a2a;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    font-size: 0.95rem;
    color: #00ff88;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    background: #3a3a3a;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    outline: none;
}

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

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300ff88" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00ff88;
    cursor: pointer;
}

.checkbox-group label {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0;
    cursor: pointer;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.map-placeholder {
    background: linear-gradient(45deg, #00ff88, #00aaff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.map-content {
    position: relative;
    z-index: 2;
    color: white;
}

.map-content i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.map-btn {
    background: #1a1a1a;
    color: #00ff88;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #00ff88;
}

.map-btn:hover {
    background: #00ff88;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.directions {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.directions-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.direction-icon {
    font-size: 2.5rem;
    color: #00ff88;
    flex-shrink: 0;
}

.direction-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.direction-content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* Working Hours Section */
.working-hours {
    padding: 80px 0;
    background: #2a2a2a;
}

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

.hours-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.hours-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.hours-schedule .schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.1);
}

.hours-schedule .schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    color: #00ff88;
    font-weight: 600;
}

.schedule-item .time {
    color: #ccc;
}

.emergency-contacts .emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.emergency-contacts .emergency-item i {
    color: #00ff88;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.faq-item {
    background: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background: #3a3a3a;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #4a4a4a;
}

.faq-question h3 {
    margin: 0;
    flex-grow: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00ff88;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background: #2a2a2a;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-answer.open {
    max-height: 500px; /* Adjust as needed */
    padding-top: 20px;
}

/* Responsive Design for Contacts Page */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 40px;
    }
    
    .directions {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        font-size: 2.8rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .map-content h3 {
        font-size: 1.8rem;
    }
    
    .map-content p {
        font-size: 1.5rem;
    }
    
    .directions-title {
        font-size: 1.8rem;
    }
    
    .direction-content h4 {
        font-size: 1.5rem;
    }
    
    .hours-title {
        font-size: 1.5rem;
    }
    
    .emergency-contacts .emergency-item {
        font-size: 1.5rem;
    }
}


/* SPA Page Specific Styles */

/* SPA Introduction Section */
.spa-intro {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.spa-description {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spa-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spa-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #2a2a2a;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.spa-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.spa-feature i {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.spa-feature:hover i {
    transform: scale(1.1);
}

.spa-feature span {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

/* SPA Services Section */
.spa-services {
    padding: 80px 0;
    background: #2a2a2a;
}

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

.service-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.service-icon {
    font-size: 4.5rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.service-list {
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #ccc;
    font-size: 0.95rem;
}

.item-price {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* SPA Facilities Section */
.spa-facilities {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.facility-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

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

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

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

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 136, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.facility-overlay i {
    font-size: 3rem;
    color: white;
}

.facility-content {
    padding: 25px;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.facility-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* SPA Packages Section */
.spa-packages {
    padding: 80px 0;
    background: #2a2a2a;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.package-card.featured {
    border-color: #00ff88;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00ff88;
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, #00ff88, #00aaff);
    padding: 30px;
    text-align: center;
    color: white;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 700;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.package-duration {
    font-size: 1rem;
    opacity: 0.9;
}

.package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 1rem;
}

.package-includes i {
    color: #00ff88;
    font-size: 1.1rem;
}

.package-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* SPA Booking Section */
.spa-booking {
    padding: 80px 0;
    background: #1a1a1a;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.booking-form {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    flex: 1;
    margin-bottom: 20px;
    text-align: left;
}

.booking-form label {
    display: block;
    font-size: 0.95rem;
    color: #00ff88;
    margin-bottom: 8px;
    font-weight: 600;
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    background: #3a3a3a;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    outline: none;
}

.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300ff88" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.booking-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Responsive Design for SPA Page */
@media (max-width: 992px) {
    .spa-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .spa-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .facilities-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .package-price .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .spa-feature {
        padding: 20px 15px;
    }
    
    .spa-feature i {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .facility-title {
        font-size: 1.5rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 20px;
    }
}



/* Page Hero Section */
.page-hero {
    position: relative;
    height: 60vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white; /* Set text color to white */
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1));
    z-index: -1;
}

.page-hero-content {
    z-index: 1;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
    color: white; /* Ensure title is white */
}

.page-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    color: white; /* Ensure subtitle is white */
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.6s both;
    color: white; /* Ensure breadcrumb text is white */
}

.breadcrumb a {
    color: #00ff88; /* Links should remain green */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00cc6a;
}

.breadcrumb span {
    margin: 0 5px;
    color: white; /* Separators should be white */
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 30vh;
    }

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

    .page-subtitle {
        font-size: 0.9rem;
    }
}




/* Enhanced Mobile Responsive Design */

/* Mobile Header Improvements */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background: #00ff88;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .header-controls {
        gap: 15px;
    }
    
    .search-input {
        width: 150px;
        font-size: 12px;
        padding: 6px 35px 6px 12px;
    }
    
    .search-input:focus {
        width: 180px;
    }
    
    .lang-btn {
        width: 28px;
        height: 28px;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
}

/* Page Hero Mobile Optimization */
@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 50vh;
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

/* About Content Mobile Optimization */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Mission Section Mobile Optimization */
@media (max-width: 768px) {
    .mission {
        padding: 60px 0;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .value-item {
        text-align: center;
        padding: 30px 20px;
    }
    
    .value-item h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Project Details Mobile Optimization */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-card {
        padding: 30px 20px;
    }
    
    .detail-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .detail-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .detail-stats .stat {
        font-size: 2rem;
    }
    
    .detail-stats .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .detail-card {
        padding: 25px 15px;
    }
    
    .detail-icon i {
        font-size: 2rem;
    }
    
    .detail-stats .stat {
        font-size: 1.8rem;
    }
}

/* Timeline Mobile Optimization */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 30px;
    }
    
    .timeline-line {
        left: 15px;
    }
    
    .timeline-item {
        margin-left: 0;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: -22px;
        width: 44px;
        height: 44px;
    }
    
    .timeline-marker i {
        font-size: 1.2rem;
    }
    
    .timeline-date {
        position: static;
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #00ff88;
        font-weight: 700;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding-left: 25px;
    }
    
    .timeline-item {
        padding-left: 40px;
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        left: -20px;
        width: 40px;
        height: 40px;
    }
    
    .timeline-date {
        font-size: 1.3rem;
    }
}

/* Investment Section Mobile Optimization */
@media (max-width: 768px) {
    .investment-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .investment-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .investment-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* Partners Section Mobile Optimization */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .partner-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .partner-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .partner-card p {
        font-size: 0.9rem;
    }
    
    .partner-logo i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card {
        padding: 25px 15px;
    }
    
    .partner-logo i {
        font-size: 2.2rem;
    }
}

/* Progress Bar Mobile Optimization */
@media (max-width: 768px) {
    .progress-bar {
        height: 8px;
    }
    
    .progress-text {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

/* Button Mobile Optimization */
@media (max-width: 768px) {
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 180px;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .lang-btn,
    .search-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .partner-card,
    .detail-card,
    .stat-item {
        transition: transform 0.2s ease;
    }
    
    .partner-card:active,
    .detail-card:active,
    .stat-item:active {
        transform: scale(0.98);
    }
}

/* Improved focus states for accessibility */
@media (max-width: 768px) {
    .nav-link:focus,
    .btn:focus,
    .lang-btn:focus,
    .search-input:focus,
    .search-btn:focus {
        outline: 2px solid #00ff88;
        outline-offset: 2px;
    }
}


/* Updated to force refresh */

