  /* ===== GLOBAL ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 300;
            overflow-x: hidden; /* keep horizontal scroll hidden */
            overflow-y: auto;   /* allow vertical scroll */
        }

        /* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: #f0f0f0;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

nav a:not(.nav-btn):hover {
    color: #ffcc00;
}

nav a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

nav a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 25px;
    background: #ffcc00;
    color: #111 !important;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

/* ===== MOBILE MENU ICON ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 75px;
        right: 5%;
        padding: 30px;
        border-radius: 12px;
        width: 250px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        gap: 20px;
    }

    nav a {
        margin: 0;
        text-align: center;
        width: 100%;
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }
}


        /* ===== SLIDESHOW ===== */
        .slideshow {
            position: relative;
            height: 100vh;
            width: 100%;
        }
        .slide {
            position: absolute;
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Overlay for readability */
        }
        .slide.active {
            opacity: 1;
        }

/* ===== CAPTION ANIMATION ===== */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px); /* Start slightly lower */
    text-align: center;
    color: white;
    padding: 2vw 3vw;
    border-radius: 8px;
    max-width: 90%;
    z-index: 2;
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    text-transform: uppercase !important;
}

.slide.active .caption {
    transform: translate(-50%, -50%) translateY(0); /* Slide up into place */
    opacity: 1;
}



     /* ===== CAPTIONS ===== */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 2vw 3vw;
    border-radius: 8px;
    max-width: 90%;
    z-index: 2;
}

.caption h2,
.caption p {
    white-space: nowrap; /* Prevent line break */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if text overflows */
}

.caption h2 {
    font-size: clamp(16px, 3vw, 40px); /* Shrinks instead of wrapping */
    margin-bottom: 10px;
    line-height: 1.2;
}

.caption p {
    font-size: clamp(12px, 1.5vw, 20px);
    margin-bottom: 15px;
}

.caption a {
    background: #ffcc00;
    padding: 0.8em 1.5em;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-size: clamp(12px, 1vw, 16px);
}

.caption a:hover {
    background: #e6b800;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .caption {
        padding: 15px;
    }
    .caption h2 {
        font-size: clamp(14px, 5vw, 28px);
    }
    .caption p {
        font-size: clamp(12px, 3vw, 18px);
    }
}

@media (max-width: 480px) {
    .caption h2 {
        font-size: clamp(12px, 6vw, 24px);
    }
    .caption p {
        font-size: clamp(10px, 4vw, 16px);
    }
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 120px 5%;
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    color: #222;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Roboto", sans-serif;
    position: relative;
}
.intro h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: #ffcc00;
    margin: 20px auto 0;
    border-radius: 5px;
}
.intro p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* ===== SPECIAL PACKAGES SECTION ===== */
.packages {
    padding: 100px 5%;
    text-align: center;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.packages h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
}

.packages h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ffcc00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0 40px 0; /* Space for shadows */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 25px; /* Consistent gap */
    padding-left: 10px;
}

/* Card Style */
.package-card {
    min-width: 320px;
    height: 480px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Gradient Overlay */
.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    transition: background 0.3s ease;
}

.package-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

/* Content Overlay */
.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: left;
    color: white;
    z-index: 2;
    background: transparent;
}

.package-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.package-overlay p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #f0f0f0;
    line-height: 1.5;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.btn-learn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffcc00;
    color: #111;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-learn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.8;
}

.carousel-btn:hover {
    background: #ffcc00;
    color: #111;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .packages {
        padding: 60px 5%;
    }
    .package-card {
        min-width: 280px;
        height: 420px;
    }
    .packages h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}




/* ===== TOURS SECTION ===== */
.tours {
    padding: 100px 5%;
    background: #ffffff;
    text-align: center;
}
.tours h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
}
.tours h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ffcc00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover img {
    transform: scale(1.05);
}
.tour-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
}
.tour-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}
.book-btn {
    display: inline-block;
    background: transparent;
    color: #111;
    font-weight: bold;
    padding: 12px 0;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 2px solid #ffcc00;
    width: fit-content;
}
.book-btn:hover {
    color: #ffcc00;
    background: transparent;
}

.view-all {
    margin-top: 60px;
}
.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #111;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.view-all-btn:hover {
    background: #ffcc00;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .tours {
        padding: 60px 5%;
    }
    .tours h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .tour-card {
        max-width: 100%;
    }
}

/* ===== Charaty ===== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .tuke-charity {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        
        .charity-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .charity-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1e293b;
        }
        
        .charity-content h2 span {
            background: linear-gradient(135deg,#ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        
        .charity-content h2 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ffcc00);
            border-radius: 3px;
        }
        
        .charity-content p {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 30px;
        }
        
        .btn-donate {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg,#ffcc00);
            color: rgb(0, 0, 0);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-donate:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
        }
        
        .btn-donate:active {
            transform: translateY(0);
        }
        
        .btn-donate::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-donate:hover::before {
            left: 100%;
        }
        
        .charity-media {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .charity-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 400px;
        }
        
        .charity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .charity-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .charity-card:hover img {
            transform: scale(1.05);
        }
        
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: white;
            padding: 30px 25px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .charity-card:hover .overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .overlay h3 i {
            color:#ffcc00;
        }
        
        .overlay p {
            font-size: 1.1rem;
            line-height: 1.5;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .tuke-charity {
                gap: 40px;
                margin: 50px auto;
            }
            
            .charity-content h2 {
                font-size: 2.2rem;
            }
            
            .charity-content p {
                font-size: 1.1rem;
            }
            
            .charity-media {
                grid-template-columns: 1fr;
            }
            
            .charity-card {
                height: 350px;
            }
        }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
}

.testimonials h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ffcc00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 5px solid transparent;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 5px solid #ffcc00;
}

/* Quote Icon */
.testimonial::before {
    content: '\201C';
    font-size: 60px;
    color: #ffcc00;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

.stars {
    font-size: 1rem;
    color: #ffcc00;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}


/* WHY BOOK WITH*/
/* ===== WHY BOOK GRID SECTION ===== */
.why-book-grid {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
}

.why-book-grid h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
}

.why-book-grid h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ffcc00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Grid Layout */
.why-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Cards */
.reason-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
    border-color: #ffcc00;
}

.reason-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.reason-card:hover img {
    transform: scale(1.1) rotate(5deg);
    background: #ffcc00;
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.reason-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-book-grid {
        padding: 60px 5%;
    }
    .why-book-grid h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}


/* CONTACT / NEWSLETTER */
.contact-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: white;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
}

.contact-cta p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form input {
    flex: 1;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
}

.cta-form input::placeholder {
    color: #999;
}

.cta-form button {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    background: #ffcc00;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-form button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
    }
    .cta-form input {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    .cta-form button {
        width: 100%;
    }
}

/* FOOTER */
footer {
    background: #111;
    color: #b0b0b0;
    padding: 80px 5% 30px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ffcc00;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-logo {
    width: 160px;
    margin-top: 20px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a img {
    width: 18px;
    height: 18px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.socials a:hover {
    background: #ffcc00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
        margin: 10px auto 0;
    }
    .footer-logo {
        margin: 20px auto;
    }
    .socials {
        justify-content: center;
    }
}

/* Initial hidden state */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when visible */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}
