/* ===================================
   CSS Variables & Base Styles
   =================================== */
:root {
    --primary-color: #0d6efd; /* bootstrap primary blue */
    --primary-dark: #0057b8; /* darker blue for hover */
    --secondary-color: #4dabf7; /* lighter blue variant */
    --accent-color: #08306b; /* deep navy for headings */
    --text-dark: #08306b;
    --text-light: #6c757d;
    --bg-light: #f8fbff; /* very light blue-ish white */
    --white: #ffffff;
    --green-bullet: #28a745;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===================================
   Skip Link (Accessibility)
   =================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation Bar with Responsive Menu
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.cta-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 600;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 100px 30px 30px;
        gap: 1.5rem;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        align-items: flex-start;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .cta-link {
        width: 100%;
        text-align: center;
    }

    /* Overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

/* ===================================
   Animation Keyframes
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

.slide-in-delay {
    animation: slideIn 0.8s ease-out 0.2s both;
}

.slide-in-delay-2 {
    animation: slideIn 0.8s ease-out 0.4s both;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===================================
   Sections
   =================================== */
.services-preview,
.features,
.story-section,
.values-section,
.services-detail,
.about-content,
.contact-section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===================================
   Service Cards
   =================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.attraction-list {
    list-style: none;
    margin: 1rem 0;
}

.attraction-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.attraction-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--green-bullet);
    font-size: 1.2rem;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.card-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ===================================
   About Page
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-section {
    background: var(--bg-light);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* ===================================
   Services Detail Page
   =================================== */
.services-detail {
    padding: 80px 20px;
    background: #f8fbff;
    font-family: 'Poppins', sans-serif;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-header h2 {
    color: #0d6efd;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 10px;
}

.service-header p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Destination Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.destination-item {
    display: flex;
    align-items: flex-start;
    background: rgba(13, 110, 253, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-5px);
    background: rgba(13, 110, 253, 0.12);
}

.dest-icon {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    line-height: 1.2;
}

.dest-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #0d6efd;
}

.dest-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-card {
        padding: 30px 20px;
    }
    .destination-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .service-header h2 {
        font-size: 1.6rem;
    }
    .dest-content strong {
        font-size: 1rem;
    }
    .dest-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .carousel-image {
        object-fit: contain;   /* Show full image */
        object-position: center bottom; /* Adjust position if needed */
        height: auto;          /* Let height adjust automatically */
        width: 100%;           /* Full width */
    }

    .hero-full {
        height: auto;          /* Adjust height to fit image */
        min-height: 400px;     /* Optional: minimum height */
    }
}

/* ===================================
   Contact Page
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.contact-method:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-method h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-light);
    margin: 0.2rem 0;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.quick-call-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quick-call-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ===================================
   Booking Form
   =================================== */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===================================
   Floating Call Button
   =================================== */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    }
    50% {
        box-shadow: 0 4px 25px rgba(13, 110, 253, 0.45);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .services-preview,
    .features,
    .story-section,
    .values-section,
    .services-detail,
    .about-content,
    .contact-section {
        padding: 50px 0;
    }

    .service-grid,
    .features-grid,
    .values-grid,
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .floating-call {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.1rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 80px 0 40px;
    }
}

/* Hero Carousel */
/* Fullscreen Hero Section */
.hero-full {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Carousel styling */
.hero-carousel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Hero text */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #ffcc00;
    color: #000;
}

.btn-primary:hover {
    background: #ffaa00;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== MODERN DESTINATION SECTION ====== */
.services-preview.modern {
    background: radial-gradient(circle at top left, #fffdf6, #f3faff);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fancy-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* CARD STYLE */
.destination-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.destination-card.active {
    opacity: 1;
    transform: translateY(0);
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 35px rgba(255, 170, 0, 0.3);
}

/* Image */
.destination-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

/* Content */
.destination-content {
    padding: 22px;
    text-align: left;
    background: linear-gradient(145deg, #fffefb, #f8fbff);
}

.destination-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff7b00;
    margin-bottom: 4px;
}

.destination-content p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
}

.destination-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.destination-content li {
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
    position: relative;
}

.destination-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: bold;
}

/* Button */
.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff7b00, #ffcc00);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: linear-gradient(90deg, #ffaa00, #ff7b00);
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.6);
}

/* Fade-in on scroll */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVENESS ====== */
@media (max-width: 1024px) {
    .fancy-title { font-size: 2rem; }
    .destination-img { height: 200px; }
}

@media (max-width: 768px) {
    .services-preview.modern {
        padding: 60px 15px;
    }
    .fancy-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.95rem; }
    .destination-card {
        max-width: 100%;
    }
    .destination-content {
        padding: 18px;
    }
    .destination-content h3 { font-size: 1.2rem; }
    .explore-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fancy-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 30px; }
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .destination-img { height: 180px; }
    .destination-content h3 { font-size: 1.1rem; }
    .destination-content p, .destination-content li {
        font-size: 0.85rem;
    }
}


/* ===== Prevent Line Break for "LavKush Taxi Service" ===== */
.brand-name,
.hero-text h1 {
    white-space: nowrap;
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: 1.2;
}

/* Adjust hero heading padding for small screens */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
        white-space: nowrap;
        text-align: center;
        padding: 0 10px;
    }

    .brand-name {
        font-size: 1rem;
        white-space: nowrap;
    }

    /* Keep logo and brand aligned properly */
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .brand-logo {
        width: 34px;
        height: auto;
    }
}


/* ====== WHY CHOOSE SECTION ====== */
.why-choose-us {
  background: linear-gradient(135deg, #fffaf5, #f9fcff);
  padding: 90px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.25), transparent 70%);
  z-index: 0;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 50px;
  font-size: 1.05rem;
  color: #555;
  z-index: 2;
  position: relative;
}

/* Grid Layout */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

/* Card */
.choose-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.choose-card.active {
  opacity: 1;
  transform: translateY(0);
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 170, 0, 0.25);
}

.choose-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff7b00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Fade animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .choose-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .choose-card {
    padding: 22px 18px;
  }
  .choose-card h3 {
    font-size: 1.1rem;
  }
  .choose-card p {
    font-size: 0.9rem;
  }
}


.services-detail .destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust 250px as needed */
    gap: 20px; /* space between items */
}

.destination-item {
    display: flex;
    align-items: flex-start; /* align icon and content at top */
    padding: 15px;
    background: #f9f9f9; /* optional: card background */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%; /* make it stretch to fill grid row */
}

.dest-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #ff4c60; /* optional icon color */
}

.dest-content {
    display: flex;
    flex-direction: column;
}

.dest-content strong {
    margin-bottom: 5px;
}

/* ---------- Owner Section ---------- */
.owner-section {
  background: #f8fafc;
  padding: 80px 0;
}

.owner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.owner-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #007bff;
}

.owner-info {
  max-width: 600px;
}

.owner-info h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #222;
}

.owner-info p {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ---------- Social Icons ---------- */
.owner-social {
  margin-top: 14px;
  display: flex;
  gap: 20px;
}

.owner-social a {
  font-size: 1.8rem;
  color: #007bff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.owner-social a:hover {
  transform: scale(1.2);
}

.owner-social a[aria-label="Facebook"]:hover {
  color: #1877f2;
}

.owner-social a[aria-label="YouTube"]:hover {
  color: #ff0000;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .owner-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .owner-image img {
    width: 200px;
    height: 200px;
  }

  .owner-info h3 {
    font-size: 1.6rem;
  }
}

.extra-services {
  padding: 3rem 0;
  background: #fffdfb;
  text-align: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* 🌄 Ranchi Packages - Modern Style */
.ranchi-packages {
  background: #f8f9fb;
  text-align: center;
  padding: 80px 0;
}

.package-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.package-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  z-index: 1;
}

.package-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.package-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.package-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.package-content li::before {
  content: "• ";
  color: #ffcc33;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd000;
  margin-top: 8px;
}

.parking {
  font-size: 0.95rem;
  color: #d1ffd1;
}

.package-note {
  margin-top: 50px;
}

.package-note p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

/* ✨ Fade-up Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }












