@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

header {
    background: rgba(0,0,0,0.55);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}

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

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}

a[href^="tel"] {
  color: #ffffff;
  text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

.btn-book {
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    color: #000;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../images/bg-1.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 110px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-content {
    animation: fadeInUp 1.5s ease;
    max-width: 1100px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    margin-bottom: 35px;
    font-weight: 700;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.6);
    letter-spacing: 4px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 55px;
    font-weight: 300;
    line-height: 2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,175,55,0.9) !important;
    color: #000 !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px !important;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.owl-carousel .owl-nav button:hover {
    background: #d4af37 !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav .owl-prev {
    left: 30px;
}

.owl-carousel .owl-nav .owl-next {
    right: 30px;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s;
}

.owl-carousel .owl-dot.active {
    background: #d4af37;
    width: 35px;
    border-radius: 10px;
}

.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bg-3.jpg') center center/cover;
    color: #fff;
    padding: 100px 0 100px;
    text-align: center;
    margin-top: 75px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 25px;
    color: #2c5f2d;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.section-subtitle::before {
    right: 110%;
}

.section-subtitle::after {
    left: 110%;
}

.btn {
    display: inline-block;
    background: transparent;
    color: #2c5f2d;
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s;
}

.btn:hover {
    background: #2c5f2d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44,95,45,0.3);
}

.about-preview {
    padding: 150px 0;
    background: #fff;
    position: relative;
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.about-preview .container {
    max-width: 950px;
    text-align: center;
    position: relative;
}

.image-text-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 750px;
}

.image-side {
    position: relative;
    overflow: hidden;
}

.image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,45,0.25), rgba(212,175,55,0.15));
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
}

.image-side:hover::before {
    opacity: 1;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.image-side:hover img {
    transform: scale(1.08);
}

.content-side {
    display: flex;
    align-items: center;
    padding: 120px 90px;
    background: #fff;
    position: relative;
}

.content-side::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(212,175,55,0.2);
    border-radius: 50%;
}

.split-layout:nth-child(even) .content-side {
    background: #f8f9fa;
}

.text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c5f2d;
    line-height: 1.3;
    letter-spacing: 1px;
}

.text-content p {
    font-size: 17px;
    line-height: 2.1;
    color: #555;
    margin-bottom: 35px;
}

.amenities {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.amenities::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44,95,45,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.amenities-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 100px;
}

.amenities-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #2c5f2d;
    margin-bottom: 30px;
    line-height: 1.3;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: #fff;
    padding: 70px 45px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 25px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.amenity-card:hover {
    transform: translateY(-25px) scale(1.04);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
    border-color: #d4af37;
}

.amenity-card:hover::before {
    width: 100%;
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    transform: rotateY(360deg) scale(1.1);
}

.amenity-card:hover h3,
.amenity-card:hover p {
    color: #fff;
}

.amenity-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(44,95,45,0.35);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.amenity-icon::after {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border: 3px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

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

.amenity-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-weight: 700;
    transition: color 0.6s;
    letter-spacing: 0.8px;
}

.amenity-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    transition: color 0.6s;
}

.rooms-section {
    padding: 150px 0;
    background: #fff;
    position: relative;
}

.rooms-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}

.rooms-carousel {
    margin-top: 80px;
}

.room-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 15px;
    border: 3px solid #f5f5f5;
    position: relative;
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,45,0.95), rgba(30,70,32,0.95));
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
    pointer-events: none;
}

.room-card:hover {
    transform: translateY(-25px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.15);
    border-color: #d4af37;
}

.room-card:hover::after {
    opacity: 0.08;
}

.room-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s;
}

.room-card:hover img {
    transform: scale(1.12);
}

.room-card-content {
    padding: 45px;
}

.room-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5f2d;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}

.room-card p {
    color: #555;
    line-height: 2;
    margin-bottom: 30px;
    font-size: 16px;
}

.testimonials {
    padding: 150px 0;
    background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)), url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1600') center/cover fixed;
    color: #fff;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-subtitle {
    color: #d4af37;
}

.testimonials-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.testimonials-intro p {
    font-size: 19px;
    line-height: 2;
    opacity: 0.95;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 55px;
    border-radius: 20px;
    border: 3px solid rgba(212,175,55,0.25);
    transition: all 0.5s;
    margin: 15px;
    position: relative;
}

.testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 45px;
    color: rgba(212,175,55,0.25);
}

.testimonial:hover {
    background: rgba(255,255,255,0.16);
    border-color: #d4af37;
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial p {
    font-size: 16px;
    line-height: 2;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
    padding-left: 20px;
}

.testimonial h4 {
    color: #d4af37;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.services-content,
.about-content,
.gallery-content,
.contact-content {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 80px 0;
}

.service-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    color: #fff;
}

.service-card h3 {
    color: #2c5f2d;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 0px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.info-box {
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(44,95,45,0.3);
}

.info-box i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 25px;
}

.info-box h3 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
}

.contact-form {
    max-width: 750px;
    margin: 80px auto;
    background: #f8f9fa;
    padding: 70px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 42px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 16px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #1e4620, #0f2310);
}

footer {
    background: #2c5f2d;
    color: #fff;
    padding: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.footer-top {
    background: rgba(212,175,55,0.05);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    text-align: center;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.8;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    opacity: 0.85;
    color: #ccc;
    line-height: 2;
    transition: all 0.3s;
}

.footer-section a {
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-section a:hover {
    opacity: 1;
    color: #d4af37;
    padding-left: 5px;
}

.footer-section i {
    display: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    display: block;
    font-size: 20px;
    color: #d4af37;
    margin-top: 3px;
    min-width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.1);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 18px;
    transition: all 0.4s;
    text-decoration: none;
}

.footer-social a i {
    display: block;
}

.footer-social a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-5px);
    border-color: #d4af37;
}

.footer-links {
    background: rgba(0,0,0,0.3);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-links h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 400;
    padding: 0 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.footer-links li:last-child a {
    border-right: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding: 35px 20px;
    background: rgba(0,0,0,0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin: 8px 0;
    opacity: 0.7;
    color: #999;
}

.footer-bottom p:last-child {
    color: #d4af37;
    opacity: 0.9;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .logo {
        height: 55px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        display: none;
    }
    
.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 1px;
}
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-subtitle{
        padding-top: 30px;
        margin-bottom: 0px;
    }
    
    .split-layout,
    .amenity-grid,
    .services-grid,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-form {
        padding: 40px 25px;
    }

    .about-preview, .image-text-section, .amenities, .rooms-section, .testimonials{
       padding: 30px 0px;
    }

    .blog-footer{
        flex-direction: column;
    }
}


.blogs-section {
    padding: 100px 0;
    background: #fff;
}

.blogs-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

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

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s;
    border: 2px solid #f5f5f5;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #d4af37;
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212,175,55,0.95);
    color: #000;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 35px;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-meta span {
    color: #999;
    font-size: 14px;
}

.blog-detail {
    padding: 80px 0;
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.blog-meta-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-meta-header span {
    color: #666;
    font-size: 15px;
}

.blog-featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}

.blog-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c5f2d;
    margin: 35px 0 20px;
    font-weight: 700;
}

.blog-text p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}


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

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

.modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #d4af37;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 35px;
    text-align: center;
}

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

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group label i {
    color: #d4af37;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44,95,45,0.4);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}


.about-intro {
    padding: 100px 0;
    background: #fff;
}

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

.about-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-intro-text p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.about-service {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

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

.service-highlight-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-highlight-content p {
    font-size: 18px;
    line-height: 2;
    color: #666;
}

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

.stat-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(44,95,45,0.3);
}

.stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card h4 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.activities-section {
    padding: 100px 0;
    background: #fff;
}

.activities-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.activities-intro p {
    font-size: 17px;
    line-height: 2;
    color: #666;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.activity-item.reverse {
    direction: rtl;
}

.activity-item.reverse > * {
    direction: ltr;
}

.activity-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s;
}

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

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.activity-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
    font-weight: 700;
}

.activity-content p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-intro-content,
    .stats-grid,
    .activity-item {
        grid-template-columns: 1fr;
    }
    
    .activity-item.reverse {
        direction: ltr;
    }
}


.rooms-detail-section {
    padding: 80px 0;
    background: #fff;
}

.room-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.room-detail-card.reverse {
    direction: rtl;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.room-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.room-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.room-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.room-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(44,95,45,0.3);
}

.room-detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
}

.room-detail-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

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

.room-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.room-features i {
    color: #d4af37;
    font-size: 18px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/bg-2.jpeg') center/cover fixed;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .room-detail-card,
    .room-detail-card.reverse {
        grid-template-columns: 1fr;
        padding: 30px;
        direction: ltr;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
}


.services-intro {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.services-intro .container {
    max-width: 900px;
}

.services-intro p {
    font-size: 17px;
    line-height: 2;
    color: #666;
}

.facilities-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.facility-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s;
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.facility-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(44,95,45,0.3);
    transition: all 0.5s;
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, #d4af37, #c19b2e);
    transform: rotateY(360deg);
}

.facility-card h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.explore-section {
    padding: 100px 0;
    background: #fff;
}

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

.explore-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
}

.explore-text p {
    font-size: 17px;
    line-height: 2;
    color: #555;
}

.explore-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.amenities-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

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

.amenity-showcase-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
}

.amenity-showcase-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.amenity-showcase-card:hover img {
    transform: scale(1.1);
}

.amenity-showcase-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.amenity-showcase-icon {
    display: none;
}

.amenity-showcase-card h3 {
    font-size: 20px;
    color: #2c5f2d;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .facilities-grid,
    .amenities-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-content {
        grid-template-columns: 1fr;
    }
}

/* Gallery Intro */
.gallery-intro {
    padding: 40px 0;
    background: #f9f9f9;
}

.gallery-intro p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    flex: 0 0 calc(25% - 23px);
    aspect-ratio: 1;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
}

/* Room Single Page */
.room-single-section {
    padding: 80px 0;
    background: #fff;
}

.room-single-image {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.room-single-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.room-single-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.room-single-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.room-single-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
}

.room-amenities-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 20px;
}

.room-amenities-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.room-amenities-section > p {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.amenity-item i {
    color: #d4af37;
    font-size: 20px;
}

@media (max-width: 768px) {
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-single-image img {
        height: 300px;
    }
};
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #d4af37;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #d4af37;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    z-index: 10000;
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .gallery-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 100%;
    }
    
    .gallery-grid {
        margin-top: 0px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0,0,0,0.98);
    z-index: 9999;
    transition: right 0.4s;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.drawer-menu {
    list-style: none;
    padding: 80px 30px 30px;
}

.drawer-menu li {
    margin-bottom: 5px;
}

.drawer-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 8px;
}

.drawer-menu a:hover,
.drawer-menu a.active {
    background: rgba(212,175,55,0.2);
    color: #d4af37;
    padding-left: 30px;
}

.drawer-book-btn {
    background: linear-gradient(135deg, #d4af37, #c19b2e) !important;
    color: #000 !important;
    font-weight: 700;
    margin-top: 20px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        padding: 15px 20px;
        justify-content: space-between;
        max-width: 100%;
    }

    .hero{
        margin-top: 0px;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-menu,
    .btn-book {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .section-subtitle::before, .section-subtitle::after{
        display: none;
    }
    .page-header{
        padding: 50px 0px;
    }

.page-header h1{
    font-size: 32px;
    line-height: 1.2;
}
}

/* Sticky WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Mobile Bottom Buttons */
.mobile-bottom-btns {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
    grid-template-columns: 1fr 1fr;
}

.mobile-call-btn, .mobile-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 6px;
    text-decoration: none;
    gap: 5px;
    transition: all 0.3s;
}

.mobile-call-btn {
    background: #2c5f2d;
    color: #fff;
}

.mobile-chat-btn {
    background: #25D366;
    color: #fff;
}

.mobile-call-btn i,
.mobile-chat-btn i {
    font-size: 24px;
}

.mobile-call-btn span,
.mobile-chat-btn span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-call-btn:hover {
    background: #1e4620;
}

.mobile-chat-btn:hover {
    background: #1ebe57;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
    
    .mobile-bottom-btns {
        display: grid;
    }
}

/* SEO Content Pages */
.seo-content {
    padding: 80px 0;
    background: #fff;
}

.seo-intro {
    margin-bottom: 60px;
}

.seo-intro h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.seo-intro p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.seo-section {
    margin-bottom: 60px;
}

.seo-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
}

.seo-section p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.seo-rooms,
.seo-activities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.seo-room-item,
.seo-activity-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.seo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(44,95,45,0.3);
}

.seo-room-item h3,
.seo-activity-item h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-room-item p,
.seo-activity-item p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.seo-faq {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.seo-faq h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-size: 20px;
    color: #2c5f2d;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    padding: 20px 25px;
}

.seo-cta {
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .seo-rooms,
    .seo-activities {
        grid-template-columns: 1fr;
    }
    
    .seo-intro h2 {
        font-size: 32px;
    }
    
    .seo-section h2 {
        font-size: 28px;
    }
    
    .seo-faq {
        padding: 30px 20px;
    }
}

.seo-image-section {
    margin: 60px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.seo-image-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .seo-image-section img {
        height: 300px;
    }
}

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

.amenity-list-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #d4af37;
}

.amenity-list-item i {
    font-size: 24px;
    color: #d4af37;
}

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

.seo-why-stay,
.why-stay-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.why-stay-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .seo-why-stay {
        gap: 20px;
    }
}


/* Image Grid Section */
.seo-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.seo-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

/* Video Section */
.seo-video-section {
    margin: 60px 0;
}

.seo-video-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.seo-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.seo-video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.seo-video-item iframe {
    width: 100%;
    height: 600px;
    border: none;
}

@media (max-width: 1024px) {
    .seo-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Bold Keywords */
.keyword-bold {
    font-weight: 700;
    color: #2c5f2d;
}

/* =========================
   PREMIUM BREADCRUMB
========================= */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    flex-wrap: wrap;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    background: rgba(212, 175, 55, 0.25);
    color: #d4af37;
}

.breadcrumb i {
    font-size: 12px;
}

.breadcrumb-sep {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0 2px;
    line-height: 1;
}

.breadcrumb .current {
    color: #d4af37;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
        gap: 6px;
    }

    .breadcrumb a,
    .breadcrumb .current {
        padding: 3px 8px;
    }
}

@media (max-width:768px){

.seo-video-item iframe{
    height:700px !important;
}

}

/* Smooth Mobile Scrolling */

html,
body{
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

*{
    -webkit-tap-highlight-color: transparent;
}