/* ==========================================
   HARVANA.IN - MAIN STYLESHEET
   ========================================== */

:root {
    --primary-blue: #003B8E;
    --secondary-green: #4CAF50;
    --dark-blue: #002C6A;
    --light-bg: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.7;
}

/* HEADER */

header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

/* HERO SECTION */

.hero {
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #ffffff 50%,
        #f0fff4 100%
    );
    padding: 100px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h2 {
    color: var(--secondary-green);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 500;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-blue);
}

.btn-secondary {
    background: var(--secondary-green);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
}

/* SECTIONS */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* SERVICES */

.services {
    background: var(--light-bg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    margin-bottom: 10px;
}

/* WHY CHOOSE US */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-left: 5px solid var(--secondary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* DESTINATIONS */

.destinations {
    background: var(--light-bg);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card h4 {
    text-align: center;
    padding: 15px;
    color: var(--primary-blue);
}

/* CONTACT */

.contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.contact-form button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    cursor: pointer;
}

/* FOOTER */

footer {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer h3 {
    margin-bottom: 10px;
}

footer p {
    margin-bottom: 10px;
}

/* WHATSAPP BUTTON */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/ 9993557976 /

@media(max-width:768px){

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}