/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Satisfy&display=swap');

/* CSS Variables & Tokens */
:root {
    --primary-green: #1E5E3A;
    --primary-green-rgb: 30, 94, 58;
    --vibrant-green: #2E7D32;
    --vibrant-green-hover: #1B5E20;
    --light-green-bg: #F4F9F5;
    --light-green-bg-2: #E8F5E9;
    --accent-gold: #FFB300;
    --accent-gold-hover: #FFA000;
    --text-dark: #2E4031;
    --text-muted: #6A806D;
    --white: #FFFFFF;
    --body-bg: #FCFDFD;
    --card-border-radius: 16px;
    --shadow-soft: 0 10px 30px rgba(30, 94, 58, 0.04);
    --shadow-medium: 0 15px 40px rgba(30, 94, 58, 0.08);
    --shadow-hover: 0 20px 50px rgba(30, 94, 58, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--body-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-green);
}

a {
    color: var(--vibrant-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--vibrant-green-hover);
}

/* Typography Utility */
.font-script {
    font-family: 'Satisfy', cursive;
    color: var(--vibrant-green);
    font-size: 2.2rem;
    line-height: 1.2;
}

.text-muted-custom {
    color: var(--text-muted);
}

/* Custom Buttons */
.btn-green-primary {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-green-primary:hover {
    background-color: var(--vibrant-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}

.btn-green-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.btn-green-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
}

.btn-white:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Header & Navigation */
.top-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    padding: 8px 0;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-brand img {
    height: 48px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 16px;
    background-color: var(--vibrant-green);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--vibrant-green) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

/* Hero Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 90vh;
    min-height: 550px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white) !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h2 .font-script {
    color: #A9DFBF !important;
    font-size: 2.8rem;
}

.hero-content span.text-uppercase {
    color: #A9DFBF !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.15rem;
    color: #E2ECE6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-prev, .hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-prev:hover, .hero-next:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* About Us Section */
.about-images-wrapper {
    position: relative;
    height: 480px;
}

.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--white);
    transition: var(--transition-smooth);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10 !important;
    box-shadow: var(--shadow-hover);
}

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

.about-img-1 {
    width: 65%;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 50%;
    height: 200px;
    top: 80px;
    right: 0;
    z-index: 2;
}

.about-img-3 {
    width: 40%;
    height: 180px;
    bottom: 0;
    left: 120px;
    z-index: 3;
}

.about-feature-card {
    background: var(--white);
    border: 1px solid rgba(30, 94, 58, 0.05);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(30, 94, 58, 0.15);
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--light-green-bg);
    border: 1.5px dashed var(--vibrant-green);
    color: var(--vibrant-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-feature-card h6 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Tour Packages Section */
.section-title-wrapper {
    margin-bottom: 45px;
}

.package-card {
    background: var(--white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 94, 58, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 94, 58, 0.1);
}

.package-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 2;
}

.package-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    font-size: 0.85rem;
    color: var(--vibrant-green);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.package-features span i {
    color: var(--vibrant-green);
    margin-right: 4px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.package-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.package-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.package-rating i {
    color: var(--accent-gold);
}

.package-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.package-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 8px 12px;
}

/* Redesigned Premium Beauty of Sundarban Section */
.beauty-premium-container {
    background: linear-gradient(135deg, #F0F5F1 0%, #E6ECE8 100%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(30, 94, 58, 0.08);
    box-shadow: 0 15px 40px rgba(30, 94, 58, 0.05);
}

.beauty-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--white);
    transition: var(--transition-smooth);
}

.beauty-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.beauty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.checklist-item i {
    color: var(--vibrant-green);
    font-size: 1.15rem;
    margin-top: 3px;
}

/* Hotels Section */
.hotel-card {
    background: var(--white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 94, 58, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 94, 58, 0.1);
}

.hotel-img-wrapper {
    position: relative;
    height: 220px; /* standard fixed size */
    overflow: hidden;
}

.hotel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hotel-card:hover .hotel-img-wrapper img {
    transform: scale(1.1);
}

.hotel-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.hotel-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.hotel-footer {
    display: flex;
    align-items: center;
    justify-content: justify;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.hotel-price {
    font-size: 1.05rem;
    color: var(--vibrant-green);
    font-weight: 700;
}

/* Sightseeing Section */
.sightseeing-card {
    position: relative;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    height: 260px; /* Increased Height */
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.sightseeing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sightseeing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
}

.sightseeing-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    text-align: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.sightseeing-info h5 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.sightseeing-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.8;
}

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

.sightseeing-card:hover .sightseeing-info {
    transform: translateY(-5px);
}

/* Gallery Section */
.gallery-slider {
    width: 100%;
    padding: 20px 0;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    height: 240px; /* Increased Height */
    box-shadow: var(--shadow-soft);
}

.gallery-slider-container .swiper-wrapper {
    transition-timing-function: linear !important;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-prev, .gallery-next {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-prev { left: -10px; }
.gallery-next { right: -10px; }

/* Why Choose Us & Stats Dark Redesign */
.why-choose-bg-dark {
    background-color: #0D2E1B !important;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-choose-bg-dark h2 {
    color: var(--white) !important;
}

.why-choose-bg-dark .font-script {
    color: var(--accent-gold) !important;
}

.why-choose-bg-dark .checklist-item {
    color: #E2ECE6;
}

.why-choose-bg-dark .checklist-item i {
    color: var(--accent-gold); /* Gold checkmarks */
}

.stat-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.stat-card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-icon-dark {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold); /* Gold icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-num-dark {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stat-label-dark {
    font-size: 0.8rem;
    color: #A9DFBF; /* light green text */
}

/* Reels Section */
.reel-card {
    position: relative;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    opacity: 0.85;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--vibrant-green);
    color: var(--white);
    opacity: 1;
}

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

.reel-title {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    color: var(--white);
    z-index: 2;
    font-weight: 600;
    text-align: center;
}

.reel-title span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Standalone Premium Blogs Section */
.blog-card-premium {
    background: var(--white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 94, 58, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 94, 58, 0.1);
}

.blog-img-premium {
    height: 200px;
    overflow: hidden;
}

.blog-img-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card-premium:hover .blog-img-premium img {
    transform: scale(1.08);
}

.blog-body-premium {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date-premium {
    font-size: 0.8rem;
    color: var(--vibrant-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title-premium {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-title-premium a {
    color: var(--primary-green);
}

.blog-title-premium a:hover {
    color: var(--vibrant-green);
}

.blog-desc-premium {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-blog-explore {
    color: var(--primary-green);
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    align-self: flex-start;
    display: inline-block;
}

.btn-blog-explore:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Testimonials & Why Visit Section */
.why-visit-box {
    background: var(--white);
    border: 1.5px dashed rgba(30, 94, 58, 0.15);
    border-radius: var(--card-border-radius);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.testimonial-box-premium {
    background: var(--white);
    border: 1px solid rgba(30, 94, 58, 0.05);
    border-radius: var(--card-border-radius);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-box-premium::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 7rem;
    font-family: serif;
    color: rgba(46, 125, 50, 0.08);
    line-height: 1;
}

.testimonial-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    position: relative;
    max-width: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-green-bg-2);
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-top: 3px;
}

/* Contact & Form */
.contact-info-card {
    background: var(--primary-green);
    color: var(--white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--white);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-method i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

.contact-method p {
    margin-bottom: 0;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(30, 94, 58, 0.05);
}

.form-control, .form-select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--vibrant-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 100%;
    min-height: 300px;
}

/* Footer Styles */
.footer {
    background: #113421;
    color: #E2ECE6;
    padding: 70px 0 25px 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--vibrant-green);
}

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

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

.footer-links a {
    color: #A9DFBF;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

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

.footer-contact-item i {
    color: var(--vibrant-green);
    margin-top: 4px;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--vibrant-green);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 50px;
}

/* Swiper Pagination and Navigation Customize */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--vibrant-green) !important;
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* REEL SWIPER RESPONSIVE ADJUSTMENT */
/* Force 2 slides per view with swipe-reel effect on mobile devices */
@media (max-width: 767.98px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-slider {
        height: 60vh;
    }

    /* Allowed Swiper.js to natively calculate slider widths based on script.js responsive breakpoints */

    .about-images-wrapper {
        height: 380px;
    }

    .about-img-1 {
        width: 70%;
        height: 200px;
    }

    .about-img-2 {
        width: 55%;
        height: 160px;
        top: 60px;
    }

    .about-img-3 {
        width: 45%;
        height: 130px;
        left: 80px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .beauty-premium-container {
        padding: 25px;
    }
}

/* Page Hero Banner Entrance Animations */
.banner-zoom-text,
.swiper-slide-active .banner-zoom-text {
    opacity: 0;
    transform: scale(0.9);
    animation: bannerZoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.banner-slide-up,
.swiper-slide-active .banner-slide-up {
    opacity: 0;
    transform: translateY(25px);
    animation: bannerSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes bannerZoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bannerSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E5E3A 0%, #0F2F1D 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.6s ease;
}

#preloader.preloader-hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader-logo-wrapper {
    margin-bottom: 20px;
    animation: loaderPulse 2s infinite ease-in-out;
}

.loader-brand-name {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.loader-progress-container {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #A9DFBF;
    border-radius: 10px;
    animation: fillProgress 3.2s linear forwards;
}

body.preloader-active {
    overflow: hidden !important;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(169, 223, 191, 0.3));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 15px rgba(169, 223, 191, 0.6));
    }
}

@keyframes fillProgress {
    to {
        width: 100%;
    }
}

