/* ============================================
   Varanasi Tour Travel - Modern CSS Stylesheet
   ============================================ */

:root {
    /* Primary Colors */
    --primary-color: #de822d;
    --primary-dark: #c46f1f;
    --primary-light: #f0a857;
    
    /* Secondary Colors */
    --secondary-color: #0c182e;
    --secondary-dark: #050d1a;
    --secondary-light: #1a2a4a;
    
    /* Accent Colors */
    --accent-color: #ffffff;
    --accent-light: #f5f5f5;
    
    /* Neutral Colors */
    --dark-color: #0c182e;
    --light-color: #ffffff;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e6ed;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #de822d 0%, #f0a857 100%);
    --gradient-secondary: linear-gradient(135deg, #0c182e 0%, #1a2a4a 100%);
    --gradient-dark: linear-gradient(135deg, #0c182e 0%, #1a2a4a 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    font-weight: 400;
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
    background: linear-gradient(135deg, #1a3a52 0%, #0f2438 100%);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
	z-index: 1030;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
}

.navbar-brand:hover {
    transform: translateX(2px);
    color: var(--primary-light) !important;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.dropdown-menu {
    background: var(--dark-color);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ============================================
   Top Info Bar
   ============================================ */

.top-info-bar {
    background: linear-gradient(90deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.top-info-bar a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.top-info-bar a:hover {
    color: var(--primary-color);
}

.top-info-bar i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-section .carousel-item {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
    z-index: 1;
	pointer-events: none;
}

.hero-section .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 1rem;
    z-index: 2;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease-out;
    color: #ffffff;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    animation: slideInUp 0.8s ease-out 0.2s both;
    color: #ffffff;
    line-height: 1.5;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
	z-index: 5;

}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:focus {
    box-shadow: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.btn-warning:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Cards
   ============================================ */

.card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.card-header {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Tour Cards
   ============================================ */

.tour-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.tour-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .card-img-top {
    transform: scale(1.08);
}

.tour-card .card-body {
    padding: 1.5rem;
}

.tour-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.tour-card .price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.tour-card .duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ============================================
   Service Cards
   ============================================ */

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Place Cards
   ============================================ */

.place-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 300px;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.place-card:hover img {
    transform: scale(1.1);
}

.place-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: white;
    z-index: 2;
    transition: var(--transition);
}

.place-card:hover .place-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.place-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   Forms
   ============================================ */

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Badges
   ============================================ */

.badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.badge.bg-warning {
    background: var(--gradient-primary) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #3498db 100%) !important;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: linear-gradient(135deg, #0d1f2d 0%, #1a3a52 100%);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5rem;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

footer a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition);
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* ============================================
   WhatsApp Widget
   ============================================ */

.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: bounce 2s infinite;
}

.whatsapp-chat:hover {
    background: #1ebd56;
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
    animation: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   Sections & Spacing
   ============================================ */

section {
    padding: 0.25rem 0;
}

section.py-5 {
    padding: 4rem 0 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ============================================
   Links
   ============================================ */

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ============================================
   Tables
   ============================================ */

.table {
    border-collapse: collapse;
    margin-bottom: 0;
}

.table thead th {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
    background-color: var(--light-color);
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* ============================================
   Alerts
   ============================================ */

.alert {
    border: none;
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* ============================================
   Animations
   ============================================ */

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ============================================
   Utility Classes
   ============================================ */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-secondary {
    background: var(--gradient-secondary) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }
    
    .hero-section .carousel-item {
        height: 350px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .tour-card .card-img-top {
        height: 200px;
    }
    
    .place-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-section .carousel-item {
        height: 250px;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 50px;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .navbar,
    footer,
    .whatsapp-chat,
    .btn-outline-danger {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* ============================================
   Accessibility
   ============================================ */

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Scrollbar Styling
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* ============================================
   Modern Card Styling
   ============================================ */

.modern-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.modern-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.modern-card .card-footer {
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.modern-card .card-footer .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.modern-card .card-footer .btn-outline-primary {
    border: 2px dashed #de822d;
    color: #de822d;
    background: transparent;
}

.modern-card .card-footer .btn-outline-primary:hover {
    background: #de822d;
    color: white;
    border-color: #de822d;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .modern-card:hover {
        transform: translateY(-8px);
    }
}


/* ============================================
   Floating Buttons (WhatsApp & Enquire)
   ============================================ */

.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    bottom: auto;
    right: auto;
}

/* WhatsApp Button */
.floating-whatsapp {
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #20ba61 100%);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background: #1ebd56;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}

/* Enquire Button */
.floating-enquire {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #de822d 0%, #f0a857 100%);
    animation: pulse 2s infinite;
}

.floating-enquire:hover {
    background: linear-gradient(135deg, #c46f1f 0%, #de822d 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(222, 130, 45, 0.4);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
}

.modal-body {
    padding: 2rem;
}

.form-control, .form-select {
    border: 2px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.form-control:focus, .form-select:focus {
    border-color: #de822d;
    box-shadow: 0 0 0 0.2rem rgba(222, 130, 45, 0.15);
}

.page-header-section {
    background: #ffffff;
    padding: 1.75rem 0;
    border-bottom: 1px solid #eceff2;
}

.breadcrumb-steps {
    display: inline-flex;
    box-shadow: 0 4px 16px rgba(26, 58, 82, 0.08);
    border-radius: 8px;
    overflow: visible;
}

.breadcrumb-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem 0.7rem 1.4rem;
    background: #eef1f4;
    color: #6c7a89;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
    margin-right: -14px;
    transition: var(--transition);
}

.breadcrumb-step:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.breadcrumb-step:last-child {
    margin-right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-right: 1.5rem;
}

.breadcrumb-step i {
    font-size: 0.85rem;
}

.breadcrumb-step:hover {
    color: var(--secondary-color);
}

.breadcrumb-step.active {
    background: var(--primary-color);
    color: #fff;
    z-index: 1;
    position: relative;
}

.breadcrumb-step.active:hover {
    color: #fff;
}

.page-header-section h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Welcome Popup */
#welcomeContent {
    border-radius: 1rem;
    overflow: hidden;
}

#welcomeContent img {
    width: 100%;
    height: auto;
    display: block;
}

#welcomeContent video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
    }
    
    .floating-enquire {
        bottom: 20px;
        right: 20px;
    }
}