/* ========================================
   Chauni Eco Kutir - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary: #064e3b;
    --primary-light: #059669;
    --accent: #10b981;
    --accent-light: #34d399;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --white: #ffffff;
    --dark: #022c22;
}

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

body {
    font-family: "Poppins", sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
    background: #f8fffe;
}

h1,
h2,
h3,
h4,
h5,
.brand-font {
    font-family: "Playfair Display", serif;
}

/* ========================================
   Navbar Styles
   ======================================== */
.navbar {
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(6, 78, 59, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 55px;
    height: 55px;
    background: linear-gradient(
        145deg,
        var(--accent-light),
        var(--accent),
        var(--primary-light)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 12px 22px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.btn-book-nav {
    background: linear-gradient(
        135deg,
        var(--gold) 0%,
        var(--gold-light) 50%,
        var(--gold) 100%
    );
    color: var(--dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn-book-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    color: var(--dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-1 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1920&q=80");
}

.slide-2 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80");
}

.slide-3 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1920&q=80");
}

.slide-4 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.7) 0%,
        rgba(2, 44, 34, 0.4) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(6, 78, 59, 0.8) 100%
    );
    z-index: 2;
}

/* Glow Orbs */
.glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.3) 0%,
        transparent 70%
    );
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(251, 191, 36, 0.2) 0%,
        transparent 70%
    );
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(52, 211, 153, 0.25) 0%,
        transparent 70%
    );
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 60px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-badge i {
    color: var(--gold);
}

.hero-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
    display: block;
    background: linear-gradient(
        135deg,
        #fff 0%,
        var(--accent-light) 40%,
        var(--gold-light) 70%,
        #fff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-light);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 45px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.9;
}

.hero-cta {
    display: flex;
    gap: 25px;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(
        135deg,
        var(--accent-light) 0%,
        var(--accent) 50%,
        var(--primary-light) 100%
    );
    color: #fff;
    font-weight: 600;
    padding: 20px 50px;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.6);
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: 600;
    padding: 20px 50px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-3px);
}

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

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 20;
}

.slider-dot {
    width: 60px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--gold-light));
    transition: width 0.4s ease;
}

.slider-dot.active::after {
    width: 100%;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s ease;
}

.slider-arrow:hover {
    background: rgba(16, 185, 129, 0.4);
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.4);
}

.slider-arrow.prev {
    left: 40px;
}
.slider-arrow.next {
    right: 40px;
}

/* ========================================
   Availability Section
   ======================================== */
.availability-section {
    position: relative;
    margin-top: -100px;
    z-index: 100;
    padding: 0 20px;
}

.availability-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    border-radius: 30px;
    padding: 50px 70px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(6, 78, 59, 0.2);
}

.availability-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent),
        var(--gold),
        var(--accent-light),
        var(--primary)
    );
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.availability-title {
    text-align: center;
    margin-bottom: 40px;
}

.availability-title h3 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.availability-title p {
    color: #6b7280;
    font-size: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group label i {
    color: var(--accent);
}

.form-control-custom {
    width: 100%;
    padding: 20px 28px;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    font-size: 1rem;
    transition: all 0.4s ease;
    background: #fff;
    color: var(--primary);
    font-weight: 500;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
}

.btn-check-availability {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 50%,
        var(--accent) 100%
    );
    color: #fff;
    font-weight: 700;
    padding: 22px 45px;
    border-radius: 18px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    min-height: 68px;
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.4);
}

.btn-check-availability:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(6, 78, 59, 0.5);
    color: #fff;
}

/* ========================================
   Section Styles (Common)
   ======================================== */
.section-padding {
    padding: 130px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1),
        rgba(6, 78, 59, 0.08)
    );
    padding: 14px 30px;
    border-radius: 60px;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-badge i {
    color: var(--accent);
}

.section-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.15rem;
    line-height: 1.9;
}

/* ========================================
   Accommodations Section
   ======================================== */
.accommodations-section {
    background: linear-gradient(180deg, #f8fffe 0%, #fff 50%, #f0fdf9 100%);
}

.accommodation-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s ease;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.accommodation-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(6, 78, 59, 0.15);
}

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

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

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

.accommodation-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.accommodation-content {
    padding: 40px;
}

.accommodation-title {
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
}

.accommodation-features {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b7280;
}

.feature-item i {
    color: var(--accent);
}

.accommodation-description {
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.8;
}

.accommodation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid #f3f4f6;
}

.accommodation-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.accommodation-price .period {
    font-size: 0.95rem;
    color: #9ca3af;
}

.btn-view-details {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 60px;
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-view-details:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.3);
}

/* ========================================
   Amenities Section
   ======================================== */
.amenities-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
}

.amenities-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.amenities-section .section-badge span {
    color: var(--accent-light);
}

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

.amenities-section .section-description {
    color: rgba(255, 255, 255, 0.75);
}

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-15px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
    width: 95px;
    height: 95px;
    background: linear-gradient(
        145deg,
        var(--accent-light),
        var(--accent),
        var(--primary-light)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.15) rotate(8deg);
}

.amenity-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
}

.amenity-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: linear-gradient(180deg, #f0fdf9 0%, #fff 50%, #f8fffe 100%);
}

.contact-wrapper {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(6, 78, 59, 0.12);
}

.contact-info {
    background: linear-gradient(145deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.25) 0%,
        transparent 60%
    );
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.contact-info > p {
    opacity: 0.85;
    margin-bottom: 50px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 38px;
    position: relative;
    z-index: 1;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-item-icon {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--accent);
}

.contact-item-content h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.social-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(145deg, var(--accent-light), var(--accent));
    color: #fff;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
    border-color: transparent;
}

.contact-form {
    padding: 80px 60px;
}

.contact-form h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.form-floating {
    margin-bottom: 28px;
}

.form-floating .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    height: 70px;
    padding: 1.3rem 1.6rem;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.form-floating textarea.form-control {
    height: 170px;
}

.form-floating .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
}

.form-floating label {
    padding: 1.3rem 1.6rem;
    color: #9ca3af;
}

.btn-send-message {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 50%,
        var(--accent) 100%
    );
    color: #fff;
    font-weight: 700;
    padding: 22px 60px;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.35);
}

.btn-send-message:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.45);
    color: #fff;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: linear-gradient(145deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
    padding-top: 110px;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 35px;
}

.footer-brand h4 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-brand .tagline {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    margin-top: 28px;
}

.footer-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 10px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
}

.office-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.office-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.7;
}

.office-card p i {
    color: var(--accent);
    margin-top: 4px;
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 80px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-light);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        145deg,
        var(--accent-light),
        var(--accent),
        var(--primary-light)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.5);
}

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

.scroll-top:hover {
    transform: translateY(-10px) scale(1.1);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }

    .availability-card {
        padding: 45px;
    }

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

    .contact-info,
    .contact-form {
        padding: 55px 45px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        padding: 18px 35px;
    }

    .availability-section {
        margin-top: -60px;
    }

    .availability-card {
        padding: 35px 28px;
    }

    .section-padding {
        padding: 90px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 25px;
        gap: 25px;
    }

    .navbar-brand .brand-text {
        display: none;
    }

    .slider-arrow {
        display: none;
    }
}

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0fdf9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--primary-light));
    border-radius: 5px;
}

/* ========================================
   Flatpickr Custom Styles
   ======================================== */
.flatpickr-calendar {
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18) !important;
    border: none !important;
}

.flatpickr-day.selected {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.flatpickr-day:hover {
    background: rgba(16, 185, 129, 0.15) !important;
}
