/* =========================================
   GLOBAL STYLES & PREMIUM BACKGROUND
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    /* Premium Deep Dark Gradient Background */
    background: radial-gradient(circle at 50% 50%, #1a2530 0%, #010203 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Glassmorphism utility class - Reusable */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* =========================================
   NAVIGATION BAR (Perfected Glassmorphism)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s ease;
    
    /* Applying Glass effect */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: #ffaa00; /* Golden accent */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

/* Nav Link Hover Animation */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffaa00, #ff5e00);
    transition: 0.4s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
}

/* =========================================
   HERO SECTION (Home Page Video Slider)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.bg-video.active {
    opacity: 1;
}

/* Gradient Overlay over Video for better text contrast */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffaa00, #ff5e00);
    color: #111;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
    animation: goldGlow 2s infinite alternate;
    letter-spacing: 1px;
}

@keyframes goldGlow {
    from { box-shadow: 0 0 10px rgba(255, 170, 0, 0.4); transform: scale(1); }
    to { box-shadow: 0 0 25px rgba(255, 170, 0, 0.8), 0 0 10px #fff; transform: scale(1.02); }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* =========================================
   BUTTON ANIMATION (Creative "Book Now")
   ========================================= */
.btn-book {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #ffaa00, #ff5e00);
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 126, 0, 0.5);
}

.btn-book i {
    transition: transform 0.3s ease;
}

.btn-book:hover i {
    transform: translateX(6px);
}

.btn-special {
    background: linear-gradient(45deg, #008f4c, #00b35f);
    box-shadow: 0 10px 25px rgba(0, 143, 76, 0.3);
}

.btn-special:hover {
    box-shadow: 0 15px 35px rgba(0, 143, 76, 0.5);
}

.btn-special::before {
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.discount-badge-large {
    font-size: 1.2rem;
    color: #ffaa00; 
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 30px;
    border: 2px dashed rgba(255, 170, 0, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: slightBounce 2s infinite ease-in-out; 
}

@keyframes slightBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); } 
}

/* =========================================
   FLOATING SIDE OFFERS (Right Edge)
   ========================================= */
.floating-side-offers {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
    z-index: 10;
}

.hero-offer-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid #008f4c;
    padding: 20px;
    border-radius: 15px;
    text-align: right;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.offer-box-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1rem;
}

.offer-box-content strong {
    color: #00ff88;
    font-size: 1.5rem;
}

.btn-offer-small {
    display: inline-block;
    background: #008f4c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-offer-small:hover {
    background: #00b35f;
    transform: translateY(-2px);
}

/* =========================================
   FLOATING SOCIAL ICONS (Creative Glass)
   ========================================= */
.social-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icon:hover {
    transform: translateY(-10px) rotate(360deg);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-icon.insta:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */
.gallery-page {
    background-color: #0f0f11;
}

.gallery-header {
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(rgba(1, 2, 3, 0.5), rgba(1, 2, 3, 0.95)), 
        url('header-bg.jpg') center/cover no-repeat fixed;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-title-box {
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.gallery-title-box h1 {
    font-size: 3.5rem;
    color: #ffaa00;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-title-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-container {
    padding: 70px 7vw;
    position: relative;
}

.gallery-container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 170, 0, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 170, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(50%) blur(1px);
}

.gallery-info {
    position: absolute;
    bottom: -100%;
    left: 10px;
    right: 10px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    text-align: center;
    opacity: 0;
    z-index: 3;
}

.gallery-item:hover .gallery-info {
    bottom: 10px;
    opacity: 1;
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #fff;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-title-below {
    text-align: center;
    color: #ffaa00;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.gallery-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   PREMIUM LOCATION CARDS SECTION
   ========================================= */
.locations-section {
    width: 100%;
    padding: 80px 5vw;
    background: linear-gradient(135deg, #0a1c12 0%, #163824 50%, #0a1911 100%);
    position: relative;
}

.loc-header {
    text-align: center;
    margin-bottom: 50px;
}

.loc-header h2 {
    font-size: 3rem;
    color: #ffaa00;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
    font-weight: 700;
}

.loc-header p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 10px;
    background: rgba(255, 170, 0, 0.15);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.loc-scroll-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.loc-scroll-container::-webkit-scrollbar { width: 8px; }
.loc-scroll-container::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.loc-scroll-container::-webkit-scrollbar-thumb { background: #ffaa00; border-radius: 10px; }
.loc-scroll-container::-webkit-scrollbar-thumb:hover { background: #ff5e00; }

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.loc-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px; 
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.loc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: #ffaa00;
}

.loc-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.loc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.loc-card:hover .loc-image {
    transform: scale(1.1);
}

.loc-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffaa00;
    color: #000;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 170, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loc-details {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.loc-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.loc-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-price {
    font-size: 1.8rem;
    color: #00ff88;
    font-weight: 700;
}

.loc-price span {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
    margin-top: 3px;
}

.btn-book-large {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #ffaa00;
    border: 2px solid #ffaa00;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loc-card:hover .btn-book-large {
    background: #ffaa00;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* =========================================
   SPECIAL OFFERS & REFRESHMENTS STYLES
   ========================================= */
.special-offer-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.special-offer-badge span {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.special-offer-badge span i {
    color: #ffaa00;
    font-size: 1rem;
}

.special-offer-badge .divider {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

.refreshment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.refreshment-badge span {
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: slightBounce 3s infinite ease-in-out;
}

.refreshment-badge span:nth-child(2) {
    animation-delay: 1.5s;
}

/* =========================================
   OUR SERVICES STYLES
   ========================================= */
.services-section {
    padding: 80px 5%;
    background: #0a0a0a;
    text-align: center;
}

.sec-header {
    margin-bottom: 50px;
}

.sec-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.sec-header h2 span {
    color: #ffaa00;
}

.sec-header p {
    color: #aaaaaa;
    font-size: 1.1rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #ffaa00;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.15);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.service-box:hover .service-icon {
    background: #ffaa00;
    color: #111111;
    transform: scale(1.1) rotate(5deg);
}

.service-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-box p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-page, .contact-page, .offers-page {
    background: linear-gradient(135deg, #0a1c12 0%, #163824 50%, #0a1911 100%);
    padding-top: 120px;
    min-height: 100vh;
}

.about-section {
    padding: 50px 5vw;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 170, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1.5;
    padding: 50px;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.about-text h2 span {
    color: #ffaa00;
}

.about-text h3 {
    color: #00ff88;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ffaa00;
}

.feature i {
    font-size: 2rem;
    color: #ffaa00;
    margin-bottom: 10px;
}

.feature h4 {
    color: #fff;
    margin-bottom: 5px;
}

.feature p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* =========================================
   CONTACT US PAGE STYLES
   ========================================= */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 3rem;
    color: #ffaa00;
    font-weight: 700;
}

.contact-header p {
    color: #e0e0e0;
    font-size: 1.2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5vw 50px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.4s;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: #ffaa00;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #fff;
    margin-bottom: 5px;
}

.info-card p {
    color: #ccc;
}

.contact-form-box {
    flex: 1.5;
    padding: 40px;
    border-radius: 20px;
    min-width: 300px;
}

.contact-form-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

/* =========================================
   OFFERS PAGE STYLES
   ========================================= */
.offers-section {
    padding: 50px 5vw;
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-header h2 {
    font-size: 3rem;
    color: #fff;
}

.offers-header h2 span {
    color: #ffaa00;
}

.offers-header p {
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 10px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #ffaa00;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.offer-icon {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    text-align: left;
    color: #e0e0e0;
}

.offer-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.offer-list li i {
    color: #ffaa00;
    margin-right: 10px;
}

/* =========================================
   LOGIN / REGISTER BUTTONS & MODALS
   ========================================= */
.auth-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    align-items: center;
}

.btn-login, .btn-register {
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-login {
    background: transparent;
    border: 2px solid #ffaa00;
    color: #ffaa00;
}

.btn-login:hover {
    background: rgba(255, 170, 0, 0.1);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #ffaa00, #ff5e00);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.5);
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.auth-modal.active {
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.auth-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #aaa;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff5e00;
    transform: rotate(90deg);
}

/* Forms inside modal */
.auth-form h2 {
    color: #111;
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.auth-form p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a5aa;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-box .form-control {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: #f4f6f9;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box; /* අනිවාර්යයෙන්ම මේක තියෙන්න ඕන කොටුව එළියට පනින්නෙ නැති වෙන්න */
}

.input-box .form-control:hover {
    background: #fff;
    border-color: #d0d5db;
}

.input-box .form-control:focus {
    border-color: #008f4c;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 143, 76, 0.15);
}

.input-box:focus-within i {
    color: #008f4c;
}

.message-box i {
    top: 22px;
    transform: none;
}

.message-box textarea.form-control {
    resize: none;
    padding-top: 18px; 
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #008f4c, #00b35f);
    border: none;
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 143, 76, 0.25);
    margin-top: 10px;
}

.btn-auth:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 143, 76, 0.4);
    background: linear-gradient(45deg, #00b35f, #008f4c);
}

.switch-form {
    margin-top: 25px;
    font-size: 0.95rem;
}

.switch-form a {
    color: #008f4c;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.switch-form a:hover {
    color: #ffaa00;
}

/* =========================================
   BIRD ANIMATION FOR MODAL
   ========================================= */
.bird-modal-content {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    text-align: center;
    border: 2px solid #ffaa00;
    opacity: 0; 
}

.fly-in {
    animation: birdFlyIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes birdFlyIn {
    0% { transform: translate(100vw, -100vh) rotate(-15deg) scale(0.5); opacity: 0; }
    60% { transform: translate(-5vw, 5vh) rotate(5deg) scale(1.05); opacity: 1; }
    80% { transform: translate(2vw, -2vh) rotate(-2deg) scale(0.98); opacity: 1; }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
}

.orange-bird {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #ffaa00;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
    animation: birdFlap 0.5s infinite alternate ease-in-out;
}

.orange-bird::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: #ffaa00;
}

@keyframes birdFlap {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   THE CLOUD / MIST ANIMATION EFFECT
   ========================================= */
.mist-effect {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(240,242,245,0.8) 40%, transparent 80%);
    filter: blur(40px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 2500;
    transition: opacity 0.8s ease-in-out, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.mist-effect.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2.5);
}

/* =========================================
   DAY TOUR PACKAGE (Liquid Glass Effects)
   ========================================= */
.day-tour-section {
    position: relative;
    width: 100%;
    padding: 100px 5vw;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.liquid-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: liquidMove 15s infinite alternate ease-in-out;
}

.shape1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 143, 76, 0.4);
    top: 0;
    left: 10%;
}

.shape2 {
    width: 450px;
    height: 450px;
    background: rgba(255, 170, 0, 0.4);
    bottom: 0;
    right: 10%;
    animation-duration: 20s;
    animation-direction: alternate-reverse;
}

@keyframes liquidMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(100px, 50px) scale(1.2) rotate(180deg); border-radius: 40% 60% 70% 30%; }
    100% { transform: translate(-50px, -100px) scale(0.9) rotate(360deg); border-radius: 60% 40% 30% 70%; }
}

.tour-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(45deg, #ff5e00, #ffaa00);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 170, 0, 0.4);
    animation: pulseOffer 2s infinite;
    letter-spacing: 1px;
}

@keyframes pulseOffer {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(255, 170, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(255, 170, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(255, 170, 0, 0.4); }
}

.tour-header h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 5px;
    font-weight: 700;
}

.tour-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.tour-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #008f4c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 143, 76, 0.1);
}

.tour-price {
    background: linear-gradient(to right, rgba(0, 143, 76, 0.05), rgba(0, 143, 76, 0.1), rgba(0, 143, 76, 0.05));
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 143, 76, 0.2);
}

.old-price {
    font-size: 1.6rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
    font-weight: 600;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #008f4c;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.per-day {
    font-size: 1.3rem;
    color: #555;
    font-weight: 600;
}

.tour-places h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 20px;
}

.places-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    text-align: left;
    margin-bottom: 45px;
}

.places-list li {
    font-size: 1.05rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.8);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.9);
    transition: 0.3s;
    font-weight: 500;
}

.places-list li:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    border-color: #ffaa00;
}

.places-list li i {
    color: #ffaa00;
    font-size: 1.1rem;
}

.btn-get-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-get-package:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* =========================================
   GOOGLE REVIEW SECTION (Liquid Glass)
   ========================================= */
.review-section {
    position: relative;
    width: 100%;
    padding: 100px 5vw;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    border-top: 1px solid rgba(0,0,0,0.05);
}

.liquid-shape-rev {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); 
    z-index: 0;
    animation: liquidMove 15s infinite alternate ease-in-out;
}

.shape-rev1 {
    width: 450px;
    height: 450px;
    background: rgba(66, 133, 244, 0.25); 
    top: -100px;
    right: 15%;
}

.shape-rev2 {
    width: 400px;
    height: 400px;
    background: rgba(251, 188, 5, 0.25); 
    bottom: -100px;
    left: 15%;
    animation-duration: 18s;
    animation-direction: alternate-reverse;
}

.review-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.review-google-icon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.review-header h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}

.review-header p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.review-message {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: left; 
}

.review-message p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-message .greeting {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
}

.review-message .thank-you {
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #4285F4, #357ae8);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(66, 133, 244, 0.4);
    background: linear-gradient(45deg, #357ae8, #4285F4);
}

.btn-review i {
    color: #F4B400; 
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-review:hover i {
    transform: rotate(20deg) scale(1.2);
}

/* =========================================
   LIQUID GLASS FOOTER (Light Theme)
   ========================================= */
.footer-glass-container {
    position: relative;
    width: 100%;
    background-color: #f4f6f9; 
    overflow: hidden; 
    padding: 0;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #00ff88; 
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px); 
    z-index: 1; 
    animation: blobFloat 20s infinite alternate ease-in-out;
    opacity: 0.7;
}

.blob1 {
    width: 500px;
    height: 500px;
    background-color: #00ff88; 
    top: -100px;
    left: -150px;
}

.blob2 {
    width: 450px;
    height: 450px;
    background-color: #128C7E; 
    bottom: -150px;
    right: -100px;
    animation-duration: 25s;
    animation-direction: alternate-reverse;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    33% { transform: translate(100px, 100px) scale(1.1); border-radius: 40% 60% 70% 30%; }
    66% { transform: translate(-50px, 150px) scale(0.9); border-radius: 60% 40% 30% 70%; }
    100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
}

.footer-glass-card {
    position: relative;
    z-index: 2; 
    background: rgba(255, 255, 255, 0.45); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    margin: 40px 5vw; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: #111;
}

.footer-logo span {
    color: #00ff88; 
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col p {
    color: #444; 
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-socials a:hover {
    background: #00ff88;
    color: #fff;
    border-color: #00ff88;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #00ff88;
    border-radius: 3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-col ul li a i {
    color: #00ff88;
    font-size: 0.8rem;
}

.footer-col ul li a:hover {
    color: #00ff88;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-contact li i {
    color: #00ff88;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom-glass {
    text-align: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.3); 
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 0.85rem;
}

/* Page Load Animation */
.fade-in {
    animation: fadeIn 1.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   ULTIMATE RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */

/* Desktop එකේදි Menu Icon එක හංගනවා */
.menu-toggle {
    display: none !important;
    cursor: pointer;
    font-size: 2rem;
    color: #ffaa00;
    z-index: 2000;
}

/* -----------------------------------------
   TABLET VIEW (1024px දක්වා)
   ----------------------------------------- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .floating-side-offers { right: 20px; transform: translateY(-30%); }
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-glass-card { padding: 40px 30px; }
}

/* -----------------------------------------
   MOBILE & TABLET VIEW (768px ට වඩා අඩු වෙද්දි)
   ----------------------------------------- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: rgba(10, 28, 18, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 170, 0, 0.2);
    }

    .nav-menu.active {
        right: 0; 
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links li a { font-size: 1.2rem; }

    .auth-buttons {
        flex-direction: column;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        gap: 15px;
    }
    
    .btn-login, .btn-register { width: 200px; padding: 12px; text-align: center; }

    /* Hero Section Mobile View */
    .hero-content {
        padding-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem; 
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .experience-badge {
        font-size: 1rem;
        padding: 8px 15px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column; 
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .btn-book, .btn-special {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .floating-side-offers {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        align-items: center;
        margin-top: 30px;
        gap: 15px;
        text-align: center;
    }

    .hero-offer-box {
        background: rgba(0, 0, 0, 0.8);
        border-right: none;
        border-bottom: 3px solid #008f4c;
        padding: 15px;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .offer-box-content {
        justify-content: center;
        flex-direction: column;
        font-size: 1rem;
    }
    
    .offer-box-content strong { font-size: 1.3rem; }

    /* Cards & Grids */
    .loc-grid, .offers-grid, .places-list { grid-template-columns: 1fr; }
    .about-text, .contact-form-box { padding: 30px 20px; }
    .contact-container { flex-direction: column; }
    
    /* Tour Package Mobile */
    .tour-glass-card { padding: 30px 15px; border-radius: 20px; }
    .tour-header h2 { font-size: 2rem; }
    .new-price { font-size: 2.5rem; }
    .old-price { font-size: 1.2rem; }
    .per-day { font-size: 1rem; }
    .btn-get-package { width: 100%; padding: 18px; }
    
    /* Reviews & Footer */
    .review-glass-card { padding: 40px 20px; }
    .review-header h2 { font-size: 2rem; }
    .review-header p { font-size: 1rem; }
    .review-message { padding: 20px; }
    .review-message p { font-size: 1rem; }
    .btn-review { width: 100%; padding: 15px; font-size: 1.1rem; }
    
    .footer-glass-card { margin: 20px; }
    .footer-container { padding: 40px 20px; gap: 30px; }
    .footer-bottom-glass { padding: 20px; }
    .liquid-blob { filter: blur(60px); width: 300px; height: 300px; }
}

/* -----------------------------------------
   SMALL PHONES (480px දක්වා)
   ----------------------------------------- */
@media (max-width: 480px) {
    .navbar { padding: 15px; }
    .logo { font-size: 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .btn-book, .btn-special { width: 100%; font-size: 1rem; }
    .discount-badge-large { font-size: 0.9rem; padding: 10px 15px; }
    
    .tour-header h2 { font-size: 1.8rem; }
    .loc-header h2 { font-size: 2.2rem; }
}