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

:root {
    --primary: #0056b3;
    --primary-alt: #004494;
    --secondary: #f67c00;
    --dark: #121212;
    --light: #fdfdfd;
    --accent-light: #eef4ff;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);
    --shadow-hard: 0 15px 45px rgba(0,0,0,0.1);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.8;
}

/* Freethinker Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-head {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-head h2 {
    font-size: 3.5rem;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-head h2 { font-size: 2.2rem; }
    .section-head p { font-size: 1rem; }
}


.section-head p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-light);
    z-index: -1;
    border-radius: 4px;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Solid Sticky Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.logo img {
    height: 80px;
    transition: var(--transition);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover:after { width: 100%; }

.menu-trigger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 3000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .menu-trigger {
        display: block;
        z-index: 3100;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

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

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 3;
}

/* Zoom In Effect */
.slide.active {
    animation: slideZoom 3.5s linear infinite;
}

@keyframes slideZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-overlay p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-slider { height: 80vh; }
    .hero-overlay { width: 95%; padding: 0 10px; }
    .hero-overlay h1 { font-size: 2.5rem; margin-bottom: 15px; }
    .hero-overlay p { 
        font-size: 1.1rem; 
        line-height: 1.6;
        max-width: 100%;
        opacity: 0.95;
    }
}


/* Service Strip as Floating Cards */
.service-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

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

.s-item {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.s-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hard);
}

.s-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

/* Advanced Package Grid */
.p-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 576px) {
    .p-grid { grid-template-columns: 1fr; }
    .p-card { height: 400px; }
    .hero-image-wrap { height: 250px; border-radius: 20px; }
}


.p-card {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    height: 500px;
    transition: var(--transition);
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.p-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.p-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: var(--white);
}

.p-tag {
    background: var(--secondary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.p-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.p-card:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.p-card:hover {
    box-shadow: var(--shadow-hard);
}

/* Stunning Why Section */
.parallax-section {
    background: var(--primary);
    padding: 100px 0;
    border-radius: 60px;
    margin: 80px 30px;
    color: var(--white);
    text-align: center;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.feat-item:hover {
    background: var(--white);
    color: var(--dark);
}

.feat-item i {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .parallax-section { margin: 40px 15px; padding: 60px 20px; border-radius: 40px; }
    .feat-grid { margin-top: 30px; gap: 20px; }
    .feat-item { padding: 30px 20px; }
    .feat-item i { font-size: 2.5rem; }
    .feat-item h3 { font-size: 1.4rem; }
    .feat-item p { font-size: 0.95rem; }
}

/* Footer Design */
footer {
    background: #080808;
    color: var(--white);
    padding: 120px 0 40px;
    border-radius: 60px 60px 0 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.foot-col h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--gray-600);
}

.foot-links li {
    list-style: none;
    margin-bottom: 15px;
}

.foot-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.6;
    transition: var(--transition);
}

.foot-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Official WhatsApp Floating Button */
.wa-action {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 65px;
    height: 65px;
    background: #25D366; /* Official WhatsApp Green */
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
    z-index: 5000;
    transition: var(--transition);
    text-decoration: none;
}

.wa-action:hover {
    transform: scale(1.1) translateY(-5px) rotate(8deg);
    background: #1eb956;
    box-shadow: 0 20px 45px rgba(37,211,102,0.5);
}

.scroll-up {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-hard);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Detail Page Improvements */
.detail-banner {
    background: var(--primary-alt);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 0 0 80px 80px;
}

.detail-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .detail-banner { height: 250px; border-radius: 0 0 40px 40px; }
    .detail-banner h1 { font-size: 2.2rem; }
}

/* Modern Booking Buttons */
.booking-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-book {
    flex: 1;
    min-width: 250px;
    padding: 18px 30px;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-phone {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.btn-phone:hover {
    background: var(--primary-alt);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
}

.btn-wa {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    background: #1eb956;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .booking-container { flex-direction: column; gap: 15px; }
    .btn-book { width: 100%; min-width: auto; padding: 20px; }
}


/* Buttons */
.btn-fancy {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
}

.btn-fancy:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 4rem; }
    .hero-image-wrap { height: 400px; margin-top: 40px; }
    .hero-text p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 992px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .parallax-section { margin: 40px 15px; padding: 60px 20px; border-radius: 30px; }
    .feat-grid { margin-top: 40px; }
    .foot-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .wa-action { width: 60px; height: 60px; left: 20px; bottom: 20px; }
    .scroll-up { width: 50px; height: 50px; right: 20px; bottom: 20px; }
}

