/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --background-color: #fefefe;
    --text-color: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #4ecdc4 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #ffe66d 100%);
    --gradient-accent: linear-gradient(135deg, #ffe66d 0%, #ff6b9d 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 230, 109, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ===== LOGO STYLING ===== */
.logo-text {
    font-size: 1.5rem;
    display: inline-block;
    animation: logoBounce 2s ease-in-out infinite;
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Logo Styling */
.logo-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
}

.footer .logo-img {
    height: 35px;
    width: auto;
    max-width: 100px;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
   
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.3rem;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.03em;
    margin-bottom: 0.3em;
    text-shadow: 0 2px 8px rgba(106,17,203,0.08);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
    border-radius: 2px;
    margin: 0.5em auto 0 auto;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(80,80,80,0.04);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }
    .section-title::after {
        width: 40px;
        height: 3px;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(254, 254, 254, 0.95) !important;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Mobile Dropdown Fixes */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        border: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-soft);
        border-radius: var(--border-radius);
        margin-top: 0.5rem;
        position: static !important;
        float: none;
        width: 100%;
        transform: none !important;
    }
    
    .navbar-nav .dropdown-item {
        color: var(--text-color) !important;
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
        margin: 0.25rem;
        transition: var(--transition);
        display: block;
        width: 100%;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: var(--gradient-primary);
        color: white !important;
        transform: translateX(5px);
    }
    
    .navbar-nav .dropdown-toggle::after {
        margin-left: 0.5rem;
        float: right;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .dropdown {
        position: static;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure proper spacing in mobile menu */
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 107, 157, 0.1);
    }
}

/* Desktop Dropdown Styling */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        border: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-soft);
        border-radius: var(--border-radius);
        margin-top: 0.5rem;
        min-width: 200px;
    }
    
    .navbar-nav .dropdown-item {
        color: var(--text-color) !important;
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
        margin: 0.25rem;
        transition: var(--transition);
    }
    
    .navbar-nav .dropdown-item:hover {
        background: var(--gradient-primary);
        color: white !important;
        transform: translateX(5px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    background: var(--gradient-primary);
}

.btn-outline-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-outline-primary:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.7; 
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    min-height: auto !important;
    background: none !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 230, 109, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    animation: rotate 20s linear infinite;
}

.bg-shape-1 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.bg-shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 30%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Logo Styling */
.logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.hero-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes glow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-text {
    background: linear-gradient(45deg, #f8d733, #a03f60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-badge i {
    font-size: 1rem;
    color: #ffe66d;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* margin-bottom: 2rem; */
}

.hero-btn-primary {
    position: relative;
    background: linear-gradient(45deg, #ffe66d, #ff6b9d);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 230, 109, 0.4);
    transition: var(--transition);
    overflow: hidden;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.6);
    color: white;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover .btn-glow {
    left: 100%;
}

.hero-btn-secondary {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Stats */
/* .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
} */

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffe66d;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Enhanced Image Container */
.hero-image-container {
    position: relative;
    z-index: 3;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-main-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(78, 205, 196, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffe66d);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-border {
    opacity: 1;
}

/* Enhanced Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b9d;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    transition: var(--transition);
}

.floating-element:hover {
    transform: scale(1.2) rotate(360deg);
    background: #ff6b9d;
    color: white;
}

.floating-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    color: #4ecdc4;
}

.floating-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
    color: #ffe66d;
}

.floating-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    color: #ff6b9d;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffe66d;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.decor-dot-1 {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.decor-dot-2 {
    top: 45%;
    left: 15%;
    animation-delay: 0.5s;
    background: #4ecdc4;
}

.decor-dot-3 {
    bottom: 25%;
    right: 35%;
    animation-delay: 1s;
    background: #ff6b9d;
}

.decor-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slide 3s ease-in-out infinite;
}

.decor-line-1 {
    width: 60px;
    top: 35%;
    left: 10%;
    animation-delay: 0s;
}

.decor-line-2 {
    width: 40px;
    bottom: 40%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes slide {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.scroll-arrow i {
    color: white;
    font-size: 1.2rem;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== TYPING ANIMATION ===== */
.typing-text {
    border-right: 3px solid white;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

/* ===== SECTION SPACING ===== */
.section {
    padding: 2rem 0;
}

/* Consistent section spacing for all sections */
#play-zones,
#packages,
#menu,
#gallery,
#faq,
#contact,
#branches {
    padding: 2rem 0;
}

/* ===== PLAY ZONES ===== */
.play-zone-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.play-zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.play-zone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.play-zone-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.play-zone-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.play-zone-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.zone-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.zone-feature {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.zone-feature:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

/* ===== PACKAGES ===== */
.package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

/* ===== MENU ===== */
.nav-pills {
    padding-left: 1rem !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
}

/* .nav-pills .nav-item:first-child {
    margin-left: 30vw !important;
} */

.nav-pills .nav-link {
    border-radius: 25px;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    
}

.nav-pills .nav-link:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-2px);
}

.menu-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.menu-item img {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.menu-item h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-item .price {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.0rem;
}

/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    height: 300px;
    width: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive gallery sizing */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
    
    .gallery-content h5 {
        font-size: 1rem;
    }
    
    .gallery-content p {
        font-size: 0.8rem;
    }
}

/* ===== FAQ ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--text-color);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
}

/* ===== BRANCHES ===== */
.branch-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.branch-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.branch-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.branch-content {
    padding: 2rem;
}

.branch-content h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.branch-address, .branch-phone {
    color: #666;
    margin-bottom: 0.5rem;
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.branch-feature {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.branch-feature:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.branch-details {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.branch-info-card {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
}

.branch-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.branch-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Responsive branch sizing */
@media (max-width: 768px) {
    .branch-image {
        height: 200px;
    }
    
    .branch-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .branch-image {
        height: 180px;
    }
    
    .branch-content {
        padding: 1.5rem;
    }
    
    .branch-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ===== CONTACT ===== */
.contact-info {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.contact-form:hover {
    border-color: var(--primary-color);
}

.form-floating > .form-control {
    border-radius: var(--border-radius);
    border: 2px solid #eee;
    transition: var(--transition);
}

.form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-color) !important;
}

.footer h5, .footer h6 {
    color: white;
    font-weight: 600;
}

.footer p, .footer li {
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* ===== FLOATING BUTTONS ===== */
.floating-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-book-btn .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-back-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.btn-back-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-back-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-back-top:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: white;
}

/* ===== MODAL ===== */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-strong);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .floating-book-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-book-btn .btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .floating-back-top {
        bottom: 1rem;
        left: 1rem;
    }
    
    .btn-back-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .branch-card {
        margin-bottom: 2rem;
    }
    
    .navbar-brand .logo-img {
        height: 35px;
        max-width: 100px;
    }
    
    .footer .logo-img {
        height: 30px;
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .navbar-brand .logo-img {
        height: 30px;
        max-width: 80px;
    }
    
    .footer .logo-img {
        height: 25px;
        max-width: 70px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: var(--transition);
}

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

/* ===== CUSTOM SCROLLSPY ===== */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

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

/* ===== LAZY LOADING ===== */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-image.loaded {
    opacity: 1;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .floating-book-btn,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-title {
        color: black !important;
    }
}

/* Responsive Design for Enhanced Hero Section */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-img {
        height: 60px;
        max-width: 150px;
    }
    
    .floating-element {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .bg-circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .bg-circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .bg-circle-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    .hero-logo-img {
        height: 50px;
        max-width: 120px;
    }
    
    .floating-element {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .bg-circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .bg-circle-2 {
        width: 80px;
        height: 80px;
    }
    
    .bg-circle-3 {
        width: 60px;
        height: 60px;
    }
    
    .bg-shape-1 {
        width: 60px;
        height: 60px;
    }
    
    .bg-shape-2 {
        width: 40px;
        height: 40px;
    }
    
    /* Maintain consistent section spacing on mobile */
    .section,
    #play-zones,
    #packages,
    #menu,
    #gallery,
    #faq,
    #contact,
    #branches {
        padding: 3rem 0;
    }
    
    .play-zone-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .play-zone-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .play-zone-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section,
    .min-vh-100 {
        min-height: unset !important;
        height: auto !important;
    }
    .hero-section {
        padding-bottom: 0.5rem;
    }
    #play-zones {
        padding-top: 0.5rem;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .floating-element {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .bg-circle-1 {
        width: 80px;
        height: 80px;
    }
    
    .bg-circle-2 {
        width: 60px;
        height: 60px;
    }
    
    .bg-circle-3 {
        width: 40px;
        height: 40px;
    }
    
    .bg-shape-1 {
        width: 40px;
        height: 40px;
    }
    
    .bg-shape-2 {
        width: 30px;
        height: 30px;
    }
    
    .decor-dot {
        width: 6px;
        height: 6px;
    }
    
    .decor-line-1 {
        width: 40px;
    }
    
    .decor-line-2 {
        width: 30px;
    }
    
    /* Maintain consistent section spacing on very small screens */
    .section,
    #play-zones,
    #packages,
    #menu,
    #gallery,
    #faq,
    #contact,
    #branches {
        padding: 1rem 0.5rem;
    }
    
    .play-zone-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .play-zone-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .play-zone-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .zone-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@media (max-width: 575.98px) {
    #contact {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    #contact .mb-4, #contact .mb-5 {
        margin-bottom: 1.2rem !important;
    }
    .contact-info, .contact-form {
        padding: 1rem;
    }
    .responsive-map iframe {
        height: 200px !important;
    }
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        font-size: 0.95rem;
    }
    .contact-form .btn {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 575.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    .floating-book-btn {
        bottom: 4.5rem;
        right: 1rem;
    }
    .floating-back-top {
        bottom: 4.5rem;
        left: 1rem;
    }
    .btn-back-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    #contact, #footer-container {
        margin-bottom: 3.5rem;
    }
}

/* Enhanced Khulshi Packages Section */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  cursor: pointer;
}
.gallery-card:hover img,
.gallery-card:focus img {
  transform: scale(1.07);
  filter: brightness(1.1);
}
.gallery-card img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.3s, filter 0.3s;
}
.gallery-emoji {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 2rem;
  pointer-events: none;
  text-shadow: 0 2px 8px #fff, 0 2px 16px #0002;
}
.package-details-card {
  border: 2px solid var(--primary-color);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,107,157,0.08);
}
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 991.98px) {
  .gallery-grid {
    flex-direction: row;
    gap: 1rem;
  }
  .gallery-card {
    flex: 1 1 0;
  }
}
@media (max-width: 767.98px) {
  .gallery-grid {
    flex-direction: row;
    gap: 0.5rem;
  }
  .gallery-card {
    flex: 1 1 0;
  }
  .package-details-card {
    padding: 1.2rem;
  }
}

.feature-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe66d 0%, #ff6b9d 100%);
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 2px 8px rgba(255,107,157,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.feature-badge-card:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 18px rgba(255,107,157,0.18);
  background: linear-gradient(135deg, #ff6b9d 0%, #ffe66d 100%);
}
@media (max-width: 767.98px) {
  .feature-badge-card {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
    min-height: 40px;
  }
}

.gallery-item-large {
  height: 400px;
  max-height: 400px;
}
.gallery-item-large img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991.98px) {
  .gallery-item-large {
    height: 300px;
    max-height: 300px;
  }
}
@media (max-width: 576px) {
  .gallery-item-large {
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
    margin-bottom: 1rem;
  }
  .gallery-item-large img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
  }
  .row.g-4 > [class*='col-'] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .nav-pills .nav-item:first-child {
    margin-left: 30vw !important;
  }
} 