/* 
    Explore Gulmarg Adventure - Main Stylesheet
    Primary Colors: #a4cb32 (Green), #04619e (Blue)
    Fonts: Headings - Times New Roman, Serif; Body - 'Biryani', sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Biryani:wght@200;300;400;600;700;800;900&display=swap');

:root {
    --primary-green: #a4cb32;
    --primary-blue: #04619e;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Biryani', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 122px;
    height: 90px;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 95px;
    width: 122px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), #8bb02a);
    color: #fff;
    box-shadow: 0 10px 20px rgba(164, 203, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(164, 203, 50, 0.4);
    background: var(--primary-blue);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.choose-card {
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.choose-card i {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.choose-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-card {
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffca28; /* Golden Color */
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
}

.guest-name {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Cards */
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2));
}

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

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

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-link {
    font-weight: 800;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--primary-green);
    gap: 10px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(4, 97, 158, 0.3);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--primary-green);
    padding: 60px 0 20px;
    color: #fff;
}

footer h3 {
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer a {
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
    white-space: normal;
}

.footer-developer {
    white-space: nowrap !important;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 13px;
    }
}

/* Reusable Page Title Section */
.page-title {
    text-align: center;
    background-color: #f1f1f1 !important;
    padding: 60px 0 !important;
}

.page-title p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Package Detail Page Styles */
.package-header {
    padding: 60px 0;
    background: #f1f1f1;
    text-align: center;
}

.package-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    font-weight: 600;
}

.itinerary-day {
    margin-bottom: 30px;
    text-align: center;
}

.footer-col {
    text-align: center;
}

.booking-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.booking-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.booking-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
}

.booking-phone { background: var(--primary-blue); color: #fff; }
.booking-whatsapp { background: #25d366; color: #fff; }
.booking-email { background: #ea4335; color: #fff; }

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info div {
    margin-bottom: 30px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}

/* Reusable modern UI utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shadow-premium {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Page Headers */
.page-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive fixes */
@media (max-width: 768px) {
    nav ul { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    nav.active ul {
        display: flex;
    }

    .mobile-menu-btn { display: block; }
    .grid-3, .grid-2, .contact-container { grid-template-columns: 1fr; gap: 20px; }
    .page-hero h1, .package-header h1 { font-size: 1.8rem; line-height: 1.2; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    .hero-content h1 { font-size: 2.2rem; }
    
    .package-meta {
        flex-direction: column;
        gap: 8px;
        margin: 15px 0;
        font-size: 0.9rem;
    }

    .booking-box {
        position: static;
        margin-top: 30px;
        padding: 20px;
    }

    .package-details img {
        margin-bottom: 20px !important;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,43,91,0.6), rgba(0,43,91,0.6)), url('../Images/Hero section 3.jpg') center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 0;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0;
    color: #fff !important;
}

.contact-section {
    padding: 0 0 100px;
    background: #fdfdfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.contact-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-card .btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
    transition: var(--transition);
    gap: 12px;
    text-align: center;
    width: fit-content;
}

.contact-card .btn-contact i {
    font-size: inherit;
}

.contact-card .btn-contact:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.icon-whatsapp { color: #25D366; }
.btn-whatsapp { background: #25D366; }

.icon-email { color: #EA4335; }
.btn-email { background: #EA4335; }

.icon-insta { color: #E4405F; }
.btn-insta { background: #E4405F; }

.map-container {
    margin-top: 100px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 500px;
    border: 1px solid rgba(0,0,0,0.05);
}

.office-info {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

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

.office-info p {
    font-size: 1.25rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-grid {
        margin-top: -60px;
        gap: 20px;
    }
    
    .contact-card {
        padding: 40px 20px;
    }
    
    .contact-card .btn-contact {
        display: flex;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .office-info {
        padding: 30px 20px;
    }
}
