/* 
 * SU Tour and Travel - Design System & Custom CSS
 * Premium aesthetic focused on trust, spirituality, and adventure.
 */

/* =========================================
   CSS Variables (Design System Token)
   ========================================= */
:root {
    /* Color Palette */
    --primary: #f97316;
    /* Saffron/Orange - Spiritual/Adventure */
    --primary-dark: #ea580c;
    --primary-light: #ffedd5;

    --secondary: #2563eb;
    /* Calm Blue - Trust/Reliability */
    --secondary-dark: #1d4ed8;

    --dark: #0f172a;
    --dark-muted: #334155;
    --text: #475569;
    --light: #f8fafc;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-floating: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Spacing */
    --section-padding: 5rem 0;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

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

.mt-5 {
    margin-top: 3rem;
}

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

.bg-dark {
    background-color: var(--dark);
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-block {
    width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Top Bar & Header
   ========================================= */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--primary);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    display: block;
    line-height: 1.2;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
    display: none;
    /* Hidden on desktop by default */
}

.logo-socials {
    display: none;
    /* Hidden on desktop */
    gap: 0.6rem;
    margin-top: 6px;
    align-items: center;
}

.logo-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    /* Saffron circle */
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.logo-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.4);
}

.logo-accent {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-muted);
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

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

.service-image-wrapper {
    width: 100%;
    height: 160px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--primary-light);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    /* Minus header height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-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, transform 4s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero .subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero .title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 2rem;
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-floating);
    text-align: center;
    border-left: 4px solid var(--primary);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-list li:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   Travel Categories Area (Hills, Adventure, Pilgrimage)
   ========================================= */
.categories-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-card.featured {
    border: 1.5px solid var(--primary);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.15);
}

.category-card.featured:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 30px -5px rgba(249, 115, 22, 0.25);
}

.category-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

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

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

.category-info {
    padding: 24px 20px;
    text-align: center;
    background: var(--white);
}

.category-info h3 {
    color: var(--secondary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h3,
.category-card.featured .category-info h3 {
    color: var(--primary);
}

.category-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Category Grid Responsive */
@media (max-width: 992px) {
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-section {
        padding-bottom: 3rem;
        padding-top: 1rem;
    }
}

/* =========================================
   Packages Section
   ========================================= */
#hills-packages,
#adventure-packages,
#holy-packages {
    display: none;
}

/* Show sections on the dedicated packages page */
.packages-page #hills-packages,
.packages-page #adventure-packages,
.packages-page #holy-packages {
    display: block;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
}

.package-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.package-content {
    padding: 1.5rem;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--dark-muted);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-meta i {
    color: var(--primary);
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.package-desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

/* =========================================
   Services Section (Features)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.875rem;
    margin-bottom: 0px;
}

.service-explore {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.service-card:hover .service-explore {
    gap: 0.8rem;
    border-bottom-color: var(--primary);
}

/* =========================================
   Contact Section
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    background-color: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background-color: var(--white);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #020617;
    /* Very dark blue */
    color: #94a3b8;
    padding: 2rem 0;
    font-size: 0.875rem;
}

/* =========================================
   Elegant Icons & Badges
   ========================================= */
.elegant-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    font-size: 1.25rem !important;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.elegant-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.5);
}

.elegant-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    color: #4ade80 !important;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: verifiedPulse 2s infinite alternate ease-in-out;
}

@keyframes verifiedPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(74, 222, 128, 0.15);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(74, 222, 128, 0.35);
    }
}

.elegant-verified-badge:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.5);
    animation-play-state: paused;
}

.elegant-verified-badge i {
    font-size: 1.1rem;
}

.icon.instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    font-size: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.contact-item:hover .instagram-gradient {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.6);
}

/* =========================================
   Google Reviews Slider — Premium Edition
   ========================================= */
.google-reviews {
    overflow: hidden;
    padding-bottom: 3rem;
    position: relative;
    background: linear-gradient(180deg, var(--light) 0%, #fff5eb 40%, #fff9f0 70%, var(--light) 100%);
}

/* Decorative floating orbs for depth */
.google-reviews::before,
.google-reviews::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.google-reviews::before {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
    top: -50px;
    left: -100px;
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.google-reviews::after {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 70%);
    bottom: -40px;
    right: -80px;
    animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.google-reviews .container,
.google-reviews .reviews-slider-wrapper {
    position: relative;
    z-index: 1;
}

/* Rating Summary Badge */
.google-rating-summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 235, 0.95));
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: ratingBadgeGlow 3s ease-in-out infinite alternate;
}

@keyframes ratingBadgeGlow {
    0% {
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    100% {
        box-shadow: 0 6px 30px rgba(249, 115, 22, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08);
    }
}

.google-logo-img {
    height: 24px;
    width: auto;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars-display {
    display: flex;
    gap: 3px;
}

.stars-display i {
    color: #fbbc04;
    font-size: 1rem;
    animation: starTwinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(251, 188, 4, 0.4));
}

.stars-display i:nth-child(1) {
    animation-delay: 0s;
}

.stars-display i:nth-child(2) {
    animation-delay: 0.15s;
}

.stars-display i:nth-child(3) {
    animation-delay: 0.3s;
}

.stars-display i:nth-child(4) {
    animation-delay: 0.45s;
}

.stars-display i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(251, 188, 4, 0.4));
    }

    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px rgba(251, 188, 4, 0.7));
    }
}

.review-stars i {
    color: #fbbc04;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 2px rgba(251, 188, 4, 0.3));
}

.rating-text {
    font-size: 0.9rem;
    color: var(--dark-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Slider Wrapper with premium fade */
.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.reviews-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: reviewsScroll 55s linear infinite;
}

.reviews-slider-wrapper:hover .reviews-slider-track {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Premium Review Card */
.review-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.95));
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(249, 115, 22, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animated gradient border glow on hover */
.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), #fbbf24, #4285F4, var(--primary));
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientBorderShift 4s ease infinite;
}

@keyframes gradientBorderShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.review-card:hover::before {
    opacity: 1;
}

/* Inner background to cover the gradient border */
.review-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 245, 0.98));
    border-radius: 19px;
    z-index: -1;
}

/* Decorative quote icon */
.review-card .review-text::before {
    content: '\201C';
    font-size: 3.5rem;
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgba(249, 115, 22, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.review-card:hover .review-text::before {
    color: rgba(249, 115, 22, 0.12);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

/* Glowing Avatar */
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #fbbf24);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(249, 115, 22, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0 !important;
    color: var(--dark);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.review-time {
    font-size: 0.75rem;
    color: var(--dark-muted);
    position: relative;
    z-index: 1;
}

/* Google Icon with subtle animation */
.review-google-icon {
    color: #4285F4;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(66, 133, 244, 0.2));
    position: relative;
    z-index: 1;
}

.review-card:hover .review-google-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 2px 6px rgba(66, 133, 244, 0.4));
}

/* Stars */
.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.review-stars i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.review-card:hover .review-stars i {
    animation: starPop 0.4s ease forwards;
}

.review-card:hover .review-stars i:nth-child(1) {
    animation-delay: 0s;
}

.review-card:hover .review-stars i:nth-child(2) {
    animation-delay: 0.05s;
}

.review-card:hover .review-stars i:nth-child(3) {
    animation-delay: 0.1s;
}

.review-card:hover .review-stars i:nth-child(4) {
    animation-delay: 0.15s;
}

.review-card:hover .review-stars i:nth-child(5) {
    animation-delay: 0.2s;
}

@keyframes starPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 4px rgba(251, 188, 4, 0.6));
    }
}

/* Review Text */
.review-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: max-height 0.4s ease;
}

.review-card:hover .review-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

/* Responsive Review Cards */
@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 1.25rem;
    }

    .google-reviews::before,
    .google-reviews::after {
        display: none;
    }

    .google-rating-summary {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .rating-info {
        flex-direction: column;
        gap: 0.35rem;
    }

    .rating-text {
        font-size: 0.8rem;
    }

    .review-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* =========================================
   Animations (Scroll Reveal)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero .title {
        font-size: 3rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* Hide top bar on mobile for cleaner look */
    .hero .title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.25rem;
        /* Smaller font to fit in one line */
    }

    .logo-subtitle {
        display: block;
        /* Show phone number below logo on mobile */
    }

    .logo-socials {
        display: flex;
        /* Show tiny social icons below mobile number */
        gap: 0.8rem;
        margin-top: 6px;
        align-items: center;
    }

    .logo-socials a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        background-color: var(--primary) !important;
        color: var(--white) !important;
        border-radius: 50% !important;
        font-size: 0.8rem !important;
        box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3) !important;
    }
}



/* =========================================
   Premium Paper Plane Preloader (Travel Vibe)
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 400px;
}

.paper-plane-wrapper {
    position: relative;
    width: 150px;
    height: 100px;
    perspective: 1000px;
    animation: plane-glide 3s ease-in-out infinite;
}

.paper-plane-svg {
    width: 100%;
    height: 100%;
    fill: #f97316;
    filter: drop-shadow(0 15px 25px rgba(249, 115, 22, 0.2));
}

.progress-container {
    width: 80%;
    height: 6px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(249, 115, 22, 0.05);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
    animation: progress-fill 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.preloader p {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-top: -1rem;
    opacity: 0.8;
}

@keyframes plane-glide {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }

    30% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

/* =========================================
   Custom Cursor
   ========================================= */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    select {
        cursor: none;
    }

    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        background-color: var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }

    .cursor-follower {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(249, 115, 22, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            width 0.3s ease,
            height 0.3s ease,
            background-color 0.3s ease;
    }

    .cursor.hover {
        transform: translate(-50%, -50%) scale(0.5);
    }

    .cursor-follower.hover {
        width: 60px;
        height: 60px;
        background-color: rgba(249, 115, 22, 0.1);
        border-color: transparent;
    }
}

/* =========================================
   Enhanced Micro-Interactions
   ========================================= */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

.hover-zoom {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover .hover-zoom {
    transform: scale(1.05);
}

/* 3D Tilt Effect Base Styles */
.tilt-effect {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-card {
    will-change: transform;
}

/* Parallax Elements */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* =========================================
   Contact Number Highlight & Animation
   ========================================= */
.contact-highlight-animated {
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-block;
    color: var(--primary) !important;
    animation: contactPulse 1.5s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        text-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
    }
}

/* =========================================
   Email Icon & Animation
   ========================================= */
.icon.email-gradient {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc04 50%, #34a853 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.contact-item:hover .email-gradient {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.5);
}

.email-animated {
    display: inline-block;
    transition: all 0.3s ease;
}

.email-animated:hover {
    color: var(--primary) !important;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

/* =========================================
   Facebook Icon & Animation
   ========================================= */
.elegant-social-icon-fb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1877F2, #0a52c1);
    color: #fff !important;
    font-size: 1.25rem !important;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.elegant-social-icon-fb:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.5);
}

.icon.facebook-gradient {
    background: linear-gradient(135deg, #1877F2, #0a52c1) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    font-size: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.contact-item:hover .facebook-gradient {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
}

/* =========================================
   YouTube Icon & Animation
   ========================================= */
.elegant-social-icon-yt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: #fff !important;
    font-size: 1.15rem !important;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.elegant-social-icon-yt:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5);
}

.icon.youtube-gradient {
    background: linear-gradient(135deg, #FF0000, #cc0000) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    font-size: 1.6rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.contact-item:hover .youtube-gradient {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

/* =========================================
   Floating Action Buttons (WhatsApp & Phone)
   ========================================= */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
}

/* Base Pulse Animation */
.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Phone Button (Saffron/Orange) */
.phone-btn {
    background: linear-gradient(135deg, var(--primary), #fbbf24);
}

.phone-btn::before {
    background: var(--primary);
}

.phone-btn:hover {
    transform: translateY(-5px) scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* WhatsApp Button (Green) */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn::before {
    background: #25D366;
    animation-delay: 1s;
    /* Offset pulse from phone button */
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Mobile Adjustments for Floating Buttons */
@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* =========================================
   Package Details Modal
   ========================================= */
.package-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.package-modal.active {
    opacity: 1;
    visibility: visible;
}

.package-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.package-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.package-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.package-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-modal .close-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.package-modal .modal-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.package-modal .modal-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--white), transparent);
}

.package-modal .modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-modal .modal-body {
    padding: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.package-modal .modal-body h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
}

.package-modal .modal-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* =========================================
   Payment QR Code Section
   ========================================= */
.payment-qr-section {
    display: flex;
    justify-content: center;
}

.payment-qr-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 480px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.payment-qr-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.payment-qr-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.payment-qr-img-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 380px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-qr-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.payment-qr-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-qr-footer .upi-id {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}

.payment-methods {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-methods span {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .payment-qr-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .payment-qr-img-wrapper {
        max-width: 320px;
    }
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item p {
    padding: 1rem 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item summary {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-item p {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}