* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --primary-green: #18ab61;
    --dark-green: #148a4f;
    --dark-grey: #2c2c2c;
    --light-grey: #f5f5f5;
}

/* Top Bar */
.top-bar {
    background: var(--dark-grey);
    color: #fff;
    padding: 12px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.gift-voucher-btn {
    background: var(--primary-green);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: url('image/Weclome-MetaHotels.jpg') center/cover;
    color: #fff;
    padding: 200px 50px;
    text-align: center;
    position: relative;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Tradition Section */
.tradition-section {
    padding: 80px 50px;
    background: #fff;
}

.tradition-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tradition-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark-grey);
    font-weight: 300;
}

.tradition-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.tradition-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tradition-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-top: -120px;
    z-index: 10;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
    font-weight: 500;
    margin-top: 20px;
}

.btn:hover {
    background: var(--dark-green);
}

.btn-white {
    background: #fff;
    color: var(--primary-green);
}

.btn-white:hover {
    background: #f0f0f0;
}

/* Explore Hotel Section */
.explore-section {
    padding: 80px 50px;
    background: #fff;
}

.explore-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-grey);
    font-weight: 300;
}

.hotel-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.suites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.suite-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.suite-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.suite-card-content {
    padding: 30px;
}

.suite-card h3 {
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 400;
}

.suite-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

/* Rooftop Jacuzzi */
.rooftop {
    background: url('image/rooftop jacuzi.jpg') center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 50px;
    position: relative;
}

.rooftop-overlay {
    background: rgba(24, 171, 97, 0.85);
    padding: 60px 80px;
    border-radius: 10px;
    display: inline-block;
    max-width: 600px;
}

.rooftop-overlay h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.rooftop-overlay p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Specials Section */
.specials-section {
    padding: 80px 50px;
    background: #fff;
}

.specials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.specials-content {
    padding-top: 20px;
}

.specials-divider {
    width: 60px;
    height: 2px;
    background: var(--dark-grey);
    margin-bottom: 20px;
}

.specials-title {
    text-align: left;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark-grey);
    font-weight: 600;
    line-height: 1.2;
}

.specials-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.specials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.special-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.special-card-image-wrapper {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.special-card-image-wrapper img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.special-icon-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.special-icon {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    z-index: 5 !important;
    filter: brightness(0) invert(1);
}

.special-card-footer {
    background: var(--primary-green);
    color: #fff;
    padding: 50px 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.special-card-footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.special-card-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: url('image/swimming-pool-scaled.jpg') center/cover;
    color: #fff;
    padding: 150px 50px;
    text-align: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.testimonials h2 {
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-item.active {
    display: block;
}

.testimonial-item h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* News Section */
.news-section {
    padding: 80px 50px;
    background: #fff;
}

.news-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    margin-top: 40px;
}

.news-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-item.large {
    grid-row: span 2;
}

.news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-item-content {
    padding: 30px;
}

.news-item .divider {
    color: #999;
    margin: 10px 0;
    font-size: 14px;
}

.news-item h4 {
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-item h5 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.news-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-item.quote-card {
    background: rgba(24, 171, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.news-item.quote-card blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 15px;
}

.news-item.quote-card .author {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.news-item.icon-card {
    background: var(--dark-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.news-item.icon-card i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.news-item.icon-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.news-item.white-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.news-item.white-card i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.news-item.white-card h4 {
    color: var(--dark-grey);
}

/* Footer */
footer {
    background: var(--primary-green);
    color: #fff;
    padding: 60px 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section .sitemap-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-section .sitemap-links a {
    color: rgba(255,255,255,0.9);
}

.footer-section .sitemap-links a::after {
    content: '|';
    margin-left: 10px;
    color: rgba(255,255,255,0.5);
}

.footer-section .sitemap-links a:last-child::after {
    display: none;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 20px;
}

.footer-section i {
    margin-right: 10px;
    color: #fff;
}

.newsletter input {
    padding: 12px 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.newsletter button {
    padding: 12px 25px;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .tradition-container {
        grid-template-columns: 1fr;
    }

    .suites {
        grid-template-columns: 1fr;
    }

    .specials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specials-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-item.large {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .top-bar, nav {
        padding: 10px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .top-bar {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    section {
        padding: 50px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specials-cards {
        grid-template-columns: 1fr;
    }
}

