/* css/style.css */
:root {
    --primary-orange: #FF8C00; /* Sunset Orange from Logo */
    --primary-yellow: #FFD700; /* Golden Yellow */
    --earth-brown: #3E2723;    /* Deep Brown from Text/Elephants */
    --warm-beige: #FFF8E1;     /* Light background tone */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Ensure you link this font in HTML head */
}

body {
    background-color: var(--warm-beige);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Typography & Utilities --- */
h1, h2, h3 {
    color: var(--earth-brown);
    font-weight: 700;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: var(--earth-brown);
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

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

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

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

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- Header & Navigation (3-Lines Hamburger) --- */
header {
    background-color: var(--earth-brown);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 60px; /* Adjust based on actual logo size preferences */
    transition: transform var(--transition-speed);
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--warm-beige);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width var(--transition-speed);
}

.nav-links li a:hover::after {
    width: 80%;
}

/* Hamburger Menu Style */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 5px;
    transition: all var(--transition-speed) ease;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--earth-brown);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform var(--transition-speed) ease-in;
        z-index: 999;
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

/* Burger Animation when Active */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

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

/* --- Footer --- */
footer {
    background-color: var(--earth-brown);
    color: var(--warm-beige);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}
.footer-section h4 { color: var(--primary-orange); margin-bottom: 15px; }
.footer-section ul { list-style: none; text-align: left; display: inline-block;}
.footer-section ul li { margin-bottom: 10px; }
/* --- WhatsApp Integration Styles --- */

/* --- WhatsApp Integration Styles --- */

/* 1. Footer Button Style (Ensuring the logo is small) */
.whatsapp-btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Reduced gap */
    background-color: #25D366; 
    color: white;
    padding: 8px 18px; /* Slightly smaller padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem; /* Slightly smaller text */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-btn-footer svg {
    width: 18px;  /* Force width */
    height: 18px; /* Force height */
}

.whatsapp-btn-footer:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* 2. Floating Sticky Button (RESIZED TO BE SMALLER) */
.float-whatsapp {
    position: fixed;
    width: 50px;  /* Changed from 60px to 50px */
    height: 50px; /* Changed from 60px to 50px */
    bottom: 30px; /* Moved slightly closer to bottom */
    right: 30px;  /* Moved slightly closer to right */
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-whatsapp img {
    width: 28px;  /* Changed from 35px to 28px */
    height: 28px; /* Changed from 35px to 28px */
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Animation Pulse (Adjusted for size) */
@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-whatsapp {
    animation: pulse-green 2s infinite;
}

/* css/style.css - FULLY RESPONSIVE VERSION */

:root {
    --primary-orange: #FF8C00; /* Sunset Orange */
    --primary-yellow: #FFD700; /* Golden Yellow */
    --earth-brown: #3E2723;    /* Deep Brown */
    --warm-beige: #FFF8E1;     /* Light BG */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--warm-beige);
    color: var(--text-dark);
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    font-size: 16px; /* Base font size */
}

/* --- Typography --- */
h1 { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; color: var(--earth-brown); }
h2 { font-size: 2rem; margin-bottom: 20px; color: var(--earth-brown); }
h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--earth-brown); }
p { line-height: 1.6; margin-bottom: 15px; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: var(--earth-brown);
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Side padding for mobile */
}

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

/* --- Header & Nav --- */
header {
    background-color: var(--earth-brown);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.logo img { height: 50px; transition: transform var(--transition-speed); }
.logo img:hover { transform: scale(1.05); }

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    color: var(--warm-beige);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}
.nav-links li a:hover { color: var(--primary-yellow); }

/* Hamburger Menu */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--primary-yellow); margin: 5px; transition: all 0.3s ease; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.8s ease-out forwards; }

/* --- WhatsApp Styles --- */
.whatsapp-btn-footer {
    display: inline-flex; align-items: center; gap: 8px;
    background-color: #25D366; color: white; padding: 8px 18px;
    border-radius: 50px; text-decoration: none; font-weight: bold;
    font-size: 0.9rem; transition: 0.3s;
}
.whatsapp-btn-footer svg { width: 18px; height: 18px; }

.float-whatsapp {
    position: fixed; width: 50px; height: 50px; bottom: 20px; right: 20px;
    background-color: #25D366; color: #FFF; border-radius: 50%;
    text-align: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; display: flex; justify-content: center; align-items: center;
}
.float-whatsapp img { width: 28px; height: 28px; }

/* --- Footer --- */
footer { background-color: var(--earth-brown); color: var(--warm-beige); padding: 50px 0 20px; text-align: center; }
.footer-content {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    max-width: 1200px; margin: auto;
}
.footer-section { flex: 1; min-width: 250px; margin-bottom: 30px; padding: 0 15px; }

/* =========================================
   RESPONSIVE MEDIA QUERIES (The Magic)
   ========================================= */

/* Tablets and Small Laptops (Max width 1024px) */
@media screen and (max-width: 1024px) {
    .container { padding: 0 30px; }
    h1 { font-size: 2.2rem; }
}

/* Mobile Devices (Max width 768px) */
@media screen and (max-width: 768px) {
    body { overflow-x: hidden; }
    
    /* Navigation: Switch to Side Drawer */
    .nav-links {
        position: absolute; right: 0px; height: 95vh; top: 70px; /* Adjust based on header height */
        background-color: var(--earth-brown); display: flex; flex-direction: column;
        align-items: center; width: 60%; transform: translateX(100%);
        transition: transform 0.5s ease-in; z-index: 999; padding-top: 50px;
    }
    .nav-links li { opacity: 0; margin: 20px 0; }
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }

    /* Typography Adjustments */
    h1 { font-size: 1.8rem; line-height: 1.2; }
    h2 { font-size: 1.5rem; }
    p { font-size: 0.95rem; }

    /* Hero Section Adjustments */
    .hero { height: 60vh !important; } /* Make hero shorter on mobile */
    .hero h1 { font-size: 2rem !important; }

    /* Forms */
    form { padding: 20px !important; }
    .form-grid { grid-template-columns: 1fr !important; } /* Force single column forms */
    
    /* Footer */
    .footer-content { flex-direction: column; }
    .footer-section { margin-bottom: 40px; text-align: center; }
}

/* Small Mobile Phones (Max width 480px) */
@media screen and (max-width: 480px) {
    .logo img { height: 40px; }
    .nav-links { width: 100%; } /* Full width menu on small phones */
    
    h1 { font-size: 1.5rem !important; }
    .btn { padding: 10px 20px; font-size: 0.9rem; width: 100%; text-align: center; }
    
    /* Package Cards */
    .package-card h3 { font-size: 1.2rem; }
    .package-card .price { font-size: 1.2rem; }
}

/* Grid Helper for Responsiveness */
.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}