/* Lightbox overlay for modal image (moved from home.html) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: zoom-out;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
}

/* Image Gallery Modal Styles */
#imageGalleryModal .modal-content {
    background: #1a1a1a;
    border: none;
}

#imageGalleryModal .carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    cursor: zoom-in;
}

/* Feedback Image Modal Styles */
#feedbackImageModal .modal-content {
    background: #1a1a1a;
    border: none;
}

#feedbackImageModal .carousel-item img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

#feedbackImageModal .carousel-control-prev,
#feedbackImageModal .carousel-control-next {
    width: 5%;
}

#imageGalleryModal .carousel-item img.zoomed {
    cursor: zoom-out;
    object-fit: cover;
    height: 85vh;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #2a2a2a;
    border-top: 1px solid #444;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    border-color: #007bff;
    transform: scale(1.1);
}

.gallery-thumbnail.active {
    border-color: #dc3545;
    transform: scale(1.1);
}

.gallery-info {
    color: #fff;
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ============================================
   MODERN MORE INFO MODAL STYLES
   ============================================ */

/* Modal Container */
.modern-modal {
    border: none !important;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

/* Modal Header */
.modern-modal-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none !important;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

.modern-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.modal-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.modern-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.modern-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    opacity: 1;
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modern-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Body */
.modern-modal-body {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.5;
    max-height: 60vh;
    overflow-y: auto;
}

/* Custom Scrollbar */
.modern-modal-body::-webkit-scrollbar {
    width: 8px;
}

.modern-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 10px;
}

.modern-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

/* Content Styling */
.modern-modal-body img {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.modern-modal-body img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.modern-modal-body strong {
    font-size: 1.25rem;
    color: #dc3545;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid #dc3545;
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-title i {
    font-size: 1.2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-pax {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-pax i {
    color: #dc3545;
    font-size: 0.9rem;
}

.pricing-cost {
    font-weight: 700;
    color: #dc3545;
    font-size: 1.05rem;
}

/* Description Section */
.description-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(91, 192, 222, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #007bff;
}

.description-section p {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Inclusions Section */
.inclusions-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(92, 184, 92, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
    margin-top: 1.5rem;
}

.inclusions-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclusions-title i {
    font-size: 1.2rem;
}

.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
}

.inclusion-item i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Modal Footer */
.modern-modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none !important;
    padding: 1.25rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-modern-secondary {
    background: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-modern-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Gallery Trigger (if needed for backward compatibility) */
.gallery-trigger {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.gallery-trigger:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 767px) {
    .modern-modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header-content {
        gap: 0.75rem;
    }
    
    .modal-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modern-modal-title {
        font-size: 1.25rem;
    }
    
    .modal-subtitle {
        font-size: 0.8rem;
    }
    
    .modern-modal-body {
        padding: 1.5rem;
        max-height: 50vh;
    }
    
    .modern-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .btn-modern-secondary,
    .btn-modern-primary {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
body {
    padding-top: 140px;
    background-image: 
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(240, 248, 255, 0.6) 25%,
            rgba(230, 245, 255, 0.5) 50%,
            rgba(240, 248, 255, 0.6) 75%,
            rgba(255, 255, 255, 0.7) 100%
        ),
        url('../../Images/white_beach.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

html {
    scroll-padding-top: 150px;
    /* Hide scrollbar but keep scrolling functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

body {
    /* Hide scrollbar but keep scrolling functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/*Carousel*/
#carouselspot .carousel-item>img {
    height: 60vh;
    object-fit: cover;
    width: 100%;
}

/* Transparent headers with strong text shadows for readability */
#mission-vision h1, #services h1, #contact-us h1 {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 1px 1px 3px rgba(255, 255, 255, 0.8);
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

/* Center the main section headings */
#services h1.text-center, #contact-us h1.text-center {
    text-align: center !important;
    width: 100%;
    margin: 0 auto 2rem auto;
    display: block;
}

/* Override the inline-block for these specific centered headings */
#services h1.text-center, #contact-us h1.text-center {
    display: block !important;
}

/* Card styling with subtle transparency */
.card {
    background-color: rgba(255, 255, 255, 0.9) !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

/* Mission & Vision cards - OLD STYLES (Replaced by modern styles below) */
/* These styles are kept for reference but overridden by the modern mission-vision styles */

/* Modern Navigation Links */
.nav-link.slant {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    padding: 10px 20px !important;
    margin: 0 5px;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Remove skew transform */
.nav-link.slant span {
    display: inline-block;
    transform: none;
    position: relative;
    z-index: 2;
}

/* Hover effect with background */
.nav-link.slant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: 1;
}

.nav-link.slant:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.nav-link.slant:hover::before {
    width: 100%;
}

/* Underline accent */
.nav-link.slant::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.9), rgba(255,255,255,0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link.slant:hover::after {
    transform: scaleX(1);
}

/* Active state */
.nav-link.slant.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.nav-link.slant.active::after {
    transform: scaleX(1);
}

/* Book Now Button - Modern Style */
.slant-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #dc3545 !important;
    padding: 10px 24px !important;
    margin-left: 10px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Remove skew transform */
.slant-btn span {
    display: inline-block;
    transform: none;
    position: relative;
    z-index: 2;
}

/* Hover effect */
.slant-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.slant-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #dc3545 !important;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.slant-btn:hover::before {
    left: 0;
}

.slant-btn:hover span {
    color: #dc3545 !important;
}

/* Add spacing between all nav items */
.offcanvas-body .nav-item {
    margin-bottom: 12px;
}

/* Offcanvas Menu (Mobile) */
.offcanvas {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

/* Mobile Navigation Links */
@media (max-width: 991px) {
    .offcanvas-body .navbar-nav {
        justify-content: flex-start !important;
        align-items: stretch !important;
        flex-direction: column !important;
        width: 100%;
    }
    
    .offcanvas-body .nav-item {
        margin-bottom: 8px;
        width: 100%;
        display: block !important;
    }

    /* Make the offcanvas fill the viewport and remove internal scrolling */
    .offcanvas {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important; /* prevent offcanvas from scrolling */
    }

    .offcanvas-body {
        overflow: visible !important; /* ensure all buttons show with no scroll */
        max-height: none !important;
        padding-bottom: 1rem; /* breathing room at bottom */
    }

    /* Hide any scrollbars just in case */
    .offcanvas, .offcanvas-body {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .offcanvas::-webkit-scrollbar,
    .offcanvas-body::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .nav-link.slant {
        width: 100% !important;
        display: block !important;
        text-align: center;
        margin: 0 !important;
        padding: 12px 20px !important;
        border-radius: 12px;
    }
    
    .nav-link.slant:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .slant-btn {
        width: 100% !important;
        display: block !important;
        text-align: center;
        margin: 15px 0 0 0 !important;
        padding: 14px 24px !important;
        border-radius: 12px;
    }
    
    .offcanvas-body .nav-item:last-child {
        margin-top: 1rem;
    }
    
    .user-icon-link {
        width: 100% !important;
        display: block !important;
        text-align: center;
        margin: 15px 0 0 0 !important;
        padding: 14px 24px !important;
        border-radius: 12px;
    }
    
    /* Hide icon and show text in mobile view */
    .user-icon-link i {
        display: none !important;
    }
    
    .user-icon-link .user-link-text {
        display: inline;
        color: #ffffff !important;
        font-size: 1rem;
        font-weight: 500;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }
    
    .nav-link.slant {
        margin: 0 3px;
    }
    
    .slant-btn {
        margin-left: 15px;
    }
    
    .user-icon-link {
        margin-left: 10px;
        padding: 0;
        border: none;
        border-radius: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        color: #ffffff !important;
        text-decoration: none;
        background: transparent;
    }
    
    .user-icon-link:hover {
        background: transparent;
        transform: translateY(-2px);
        color: #ffffff !important;
        opacity: 0.8;
    }
    
    .user-icon-link.logged-in {
        color: #10b981 !important;
    }
    
    .user-icon-link.logged-in:hover {
        color: #10b981 !important;
        background: transparent;
        opacity: 0.8;
    }
    
    .user-icon-link i {
        font-size: 2.5rem;
        color: #ffffff !important;
        display: inline-block !important;
    }
    
    /* Hide text and show icon in desktop view */
    .user-icon-link .user-link-text {
        display: none !important;
    }
}

/* User Icon Link Base Styles */
.user-icon-link {
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.user-icon-link i {
    font-size: 2.2rem;
    color: #ffffff !important;
}

/* Adjust based on your header height */
#mission-vision {
  scroll-margin-top: 150px; 
}

#services {
  scroll-margin-top: 150px;
}

#contact-us {
  scroll-margin-top: 150px;
}

#van-rental {
  scroll-margin-top: 150px;
}

/* Service Card Alignment for Bliss & Diving */
.service-card-body {
    display: flex;
    align-items: center;
    gap: 18px;
}
.service-card-text {
    flex: 1;
    min-width: 180px;
}
.service-card-img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Vehicle rental list styling */
.vehicle-rental-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destination-column {
    height: 100%;
}

.vehicle-rental-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.vehicle-rental-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.vehicle-rental-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.vehicle-rental-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 600;
    color: #0f172a;
}

.vehicle-rental-item-description {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

@media (max-width: 576px) {
    .vehicle-rental-item-header {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
}

/* Feedback textarea auto-expand styles */
.feedback-area {
    min-height: 60px;
    resize: none;
    overflow: hidden;
    transition: height 0.2s ease;
    font-family: inherit;
    line-height: 1.5;
}

.feedback-area:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    border-color: #dc3545;
}

/* ============================================
   MODERN NAVBAR STYLES
   ============================================ */

nav.navbar {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar.fixed-top {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 25px rgba(220, 53, 69, 0.5) !important;
}

/* Navbar Brand / Logo */
.navbar-brand {
    padding: 0.5rem 0;
    margin-left: 1.5rem;
}

.navbar-brand img {
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    max-height: 48px;
    width: auto;
}

/* Navbar Container */
.navbar .container-fluid {
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .navbar .container-fluid {
        padding: 0 1rem;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 1) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

/* ============================================
   MODERN MISSION & VISION SECTION STYLES
   ============================================ */

#mission-vision {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Section Header Styling */
#mission-vision .display-4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.section-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

/* Mission & Vision Card Container */
.mission-vision-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Gradient Overlay for Cards */
.card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.mission-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
}

.vision-gradient {
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-icon {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.vision-icon {
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.mission-vision-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Card Typography */
.mission-vision-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    position: relative;
}

.mission-vision-card .card-text {
    color: #5a6c7d;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.mission-vision-card:nth-child(2) .decorative-line {
    background: linear-gradient(90deg, #0066ff, #00ccff);
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-vision-card {
    animation: fadeInUp 0.6s ease-out;
}

.mission-vision-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .mission-vision-card {
        margin-bottom: 1rem;
    }
    
    #mission-vision .display-4 {
        font-size: 2.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    #mission-vision .display-4 {
        font-size: 2rem;
    }
    
    .mission-vision-card .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem !important;
    }
    
    .mission-vision-card .card-title {
        font-size: 1.75rem !important;
    }
    
    .mission-vision-card .card-text {
        font-size: 1rem !important;
    }
}

/* Override old mission-vision styles to prevent conflicts */
#mission-vision h1 {
    text-shadow: none !important;
    background-color: transparent !important;
    color: inherit !important;
    font-weight: inherit !important;
    display: block !important;
}

/* ============================================
   MODERN SERVICES SECTION STYLES
   ============================================ */

#services {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Services Section Typography */
#services .display-4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

/* Package Only Heading */
.package-only-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2rem auto 1.5rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
    display: block;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-only-heading::before,
.package-only-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.package-only-heading::before {
    left: -60px;
}

.package-only-heading::after {
    right: -60px;
    background: linear-gradient(90deg, #dc3545, transparent);
}

@media (max-width: 767px) {
    .package-only-heading {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .package-only-heading::before,
    .package-only-heading::after {
        width: 30px;
    }
    
    .package-only-heading::before {
        left: -40px;
    }
    
    .package-only-heading::after {
        right: -40px;
    }
}

/* Tour Only Heading */
.tour-only-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2rem auto 1.5rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
    display: block;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.tour-only-heading::before,
.tour-only-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.tour-only-heading::before {
    left: -60px;
}

.tour-only-heading::after {
    right: -60px;
    background: linear-gradient(90deg, #dc3545, transparent);
}

@media (max-width: 767px) {
    .tour-only-heading {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .tour-only-heading::before,
    .tour-only-heading::after {
        width: 30px;
    }
    
    .tour-only-heading::before {
        left: -40px;
    }
    
    .tour-only-heading::after {
        right: -40px;
    }
}

/* Hotels Heading */
.hotels-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2rem auto 1.5rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
    display: block;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.hotels-heading::before,
.hotels-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.hotels-heading::before {
    left: -60px;
}

.hotels-heading::after {
    right: -60px;
    background: linear-gradient(90deg, #dc3545, transparent);
}

@media (max-width: 767px) {
    .hotels-heading {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .hotels-heading::before,
    .hotels-heading::after {
        width: 30px;
    }
    
    .hotels-heading::before {
        left: -40px;
    }
    
    .hotels-heading::after {
        right: -40px;
    }
}

/* Rentals Heading */
.rentals-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2rem auto 1.5rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
    display: block;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.rentals-heading::before,
.rentals-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.rentals-heading::before {
    left: -60px;
}

.rentals-heading::after {
    right: -60px;
    background: linear-gradient(90deg, #dc3545, transparent);
}

@media (max-width: 767px) {
    .rentals-heading {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .rentals-heading::before,
    .rentals-heading::after {
        width: 30px;
    }
    
    .rentals-heading::before {
        left: -40px;
    }
    
    .rentals-heading::after {
        right: -40px;
    }
}

/* Adventures Heading */
.adventures-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2rem auto 1.5rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
    display: block;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.adventures-heading::before,
.adventures-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
}

.adventures-heading::before {
    left: -60px;
}

.adventures-heading::after {
    right: -60px;
    background: linear-gradient(90deg, #dc3545, transparent);
}

@media (max-width: 767px) {
    .adventures-heading {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .adventures-heading::before,
    .adventures-heading::after {
        width: 30px;
    }
    
    .adventures-heading::before {
        left: -40px;
    }
    
    .adventures-heading::after {
        right: -40px;
    }
}

/* Service Cards */
.service-card {
    position: relative;
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(220, 53, 69, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

/* Service Badge (replaces old header styles) */
.service-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    color: #ffffff;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    z-index: 10;
}

.service-badge.bestseller {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.service-badge.adventure {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.service-badge.rental {
    background: linear-gradient(135deg, #007bff 0%, #5bc0de 100%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.service-badge.hotel {
    background: linear-gradient(135deg, #6f42c1 0%, #9b59b6 100%);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

/* Service Card Header */
.service-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-bottom: 3px solid #dc3545 !important;
    padding: 1.5rem 1.25rem !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.25rem 0 !important;
    letter-spacing: 0.5px;
}

.service-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

/* Bestseller Card Special Styling */
.bestseller-card {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 12px 45px rgba(255, 215, 0, 0.2) !important;
}

.bestseller-card:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3) !important;
}

.bestseller-card .service-card-header {
    border-bottom: 3px solid #ffd700 !important;
}

/* Service Card Body Enhancements */
.service-card .card-body {
    padding: 1.5rem;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card .service-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-media {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Price Tag Styling */
.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    font-family: 'Poppins', sans-serif;
}

.price-tag-small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Price Tag Color Variations */
.price-tag.bestseller {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.price-tag.adventure {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.price-tag.rental {
    background: linear-gradient(135deg, #007bff 0%, #5bc0de 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.price-tag.hotel {
    background: linear-gradient(135deg, #6f42c1 0%, #9b59b6 100%);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* Content Area Styling */
.service-card .content {
    background: rgba(248, 249, 250, 0.5);
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover .content {
    background: rgba(220, 53, 69, 0.05);
}

.service-card .content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Icon enhancements for service descriptions */
.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #495057;
}

.service-feature i {
    color: #dc3545;
    font-size: 1rem;
}

/* Icon Color Variations */
.service-card .content i.text-success {
    color: #28a745 !important;
}

.service-card .content i.text-primary {
    color: #007bff !important;
}

.service-card .content i.icon-hotel {
    color: #6f42c1 !important;
}

/* More Info Button Styling */
.service-card .btn-more-info {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.service-card .btn-more-info:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Button Color Variations */
.service-card .btn-more-info.btn-adventure {
    background: linear-gradient(135deg, #28a745 0%, #20893a 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.service-card .btn-more-info.btn-adventure:hover {
    background: linear-gradient(135deg, #20893a 0%, #1e7e34 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.service-card .btn-more-info.btn-rental {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.service-card .btn-more-info.btn-rental:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.service-card .btn-more-info.btn-hotel {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.service-card .btn-more-info.btn-hotel:hover {
    background: linear-gradient(135deg, #5a32a3 0%, #4e2a8e 100%);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

/* Carousel Enhancements for Service Cards */
.service-card .carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-card .carousel-item img {
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

.service-card .carousel-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Carousel Controls Enhancement */
.service-card .carousel-control-prev,
.service-card .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .carousel-control-prev,
.service-card:hover .carousel-control-next {
    opacity: 1;
}

.service-card .carousel-control-prev {
    left: 10px;
}

.service-card .carousel-control-next {
    right: 10px;
}

.service-card .carousel-control-prev:hover,
.service-card .carousel-control-next:hover {
    background: rgba(220, 53, 69, 1);
}

/* Content Text Styling */
.service-card .content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
}

/* Info Icon Styling */
.info-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 4px 12px;
    border-radius: 6px;
    color: #1976d2;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Logo in Service Cards */
.service-card .logo-small {
    max-width: 90px;
    width: 90px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .logo-small {
    opacity: 1;
    transform: scale(1.1);
}

/* Decorative Elements */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b, #dc3545);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Card Footer Enhancement */
.service-card .card-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Animation for service cards on scroll */
@keyframes fadeInUpServices {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUpServices 0.6s ease-out;
}

/* Staggered animation delay */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-title {
        font-size: 1.3rem !important;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .service-badge {
        padding: 6px 40px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    #services .display-4 {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem !important;
    }
    
    .service-subtitle {
        font-size: 0.8rem;
    }
    
    .service-badge {
        padding: 5px 35px;
        font-size: 10px;
        top: 15px;
        right: -30px;
    }
    
    .service-card-header {
        padding: 1rem !important;
    }
    
    .service-card .card-body {
        padding: 1rem;
    }
    
    .service-card .carousel-control-prev,
    .service-card .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Additional Modern Enhancements */
.service-card .ratio {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Hover glow effect */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 0.15;
}

/* Override old service heading styles */
#services h1 {
    text-shadow: none !important;
    background-color: transparent !important;
    color: inherit !important;
}

/* ============================================
   MODERN CONTACT US SECTION STYLES
   ============================================ */

#contact-us {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Contact Section Typography */
#contact-us .display-4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

/* Override old contact heading styles */
#contact-us h1 {
    text-shadow: none !important;
    background-color: transparent !important;
    color: inherit !important;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(220, 53, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #dc3545 0%, #ff6b6b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Contact Icon Wrapper */
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-icon {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.location-icon {
    background: linear-gradient(135deg, #007bff 0%, #5bc0de 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Details */
.contact-details {
    flex: 1;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.contact-link:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-numbers .contact-link {
    display: block;
}

/* Social Media Card */
.social-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #4c70ba 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(220, 53, 69, 0.1);
    height: 100%;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Form Header */
.contact-form-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

/* Form Body */
.contact-form-body {
    padding: 2rem;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.star-rating i {
    color: #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating i.fas {
    color: #ffc107;
}

#ratingText {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
}

/* Form Labels */
.contact-form-body .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Input Icon Wrapper */
.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.input-icon-wrapper:focus-within .input-icon {
    color: #dc3545;
}

/* Modern Inputs */
.modern-input {
    padding: 12px 16px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-input:focus {
    background: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    outline: none;
}

/* Modern Textarea */
.modern-textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    resize: vertical;
    min-height: 120px;
}

.modern-textarea:focus {
    background: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    outline: none;
}

/* Send Message Button */
.btn-send-message {
    position: relative;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    overflow: hidden;
}

.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.btn-send-message:active {
    transform: translateY(-1px);
}

/* Button Shine Effect */
.btn-shine {
    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.6s ease;
}

.btn-send-message:hover .btn-shine {
    left: 100%;
}

/* Animation for contact cards */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-card {
    animation: fadeInLeft 0.6s ease-out;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.contact-form-wrapper {
    animation: fadeInRight 0.6s ease-out;
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-top: 2rem;
    }
    
    .contact-card:hover {
        transform: translateX(5px);
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    #contact-us .display-4 {
        font-size: 2rem;
    }
    
    .contact-form-header {
        padding: 1.5rem;
    }
    
    .contact-form-body {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-title {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .btn-send-message {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-link:hover {
        transform: translateX(0);
    }
}

/* ============================================
   MODERN HERO SECTION STYLES
   ============================================ */

#home {
    position: relative;
    padding: 0;
    margin-top: -140px; /* Offset navbar padding */
    overflow: hidden;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 102, 255, 0.6) 100%
    );
    z-index: 1;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-text-wrapper {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    animation: underline-expand 1s ease-out;
}

@keyframes underline-expand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    height: auto;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff !important;
    border-color: #dc3545;
}

.btn-hero-primary span,
.btn-hero-primary i {
    color: #ffffff !important;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
    color: #ffffff !important;
}

.btn-hero-primary:hover span,
.btn-hero-primary:hover i {
    color: #ffffff !important;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: #dc3545;
    border: 2px solid rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    text-shadow: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #c82333;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6),
                0 0 30px rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.btn-hero-primary::before,
.btn-hero-secondary::before {
    content: '';
    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.6s ease;
}

.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before {
    left: 100%;
}

.btn-hero-primary i,
.btn-hero-secondary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i,
.btn-hero-secondary:hover i {
    transform: translateX(5px);
}

/* Fade-in Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive Design for Hero Section */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1.05rem;
        padding: 16px 38px;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .hero-video-wrapper {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
        font-size: 1rem;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Image Upload Styles */
.image-upload-wrapper {
    margin-bottom: 1rem;
}

.image-upload-preview {
    margin-top: 1rem;
}

.image-upload-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

#imagePreviewGrid {
    margin-bottom: 0.5rem;
}

#imagePreviewGrid .position-relative {
    margin-bottom: 0.5rem;
}

/* Feedback Cards */
.feedback-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.feedback-image {
    transition: transform 0.3s ease;
}

.feedback-image:hover {
    transform: scale(1.05);
}

.feedback-images-container {
    position: relative;
}

.feedback-images-container .carousel {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.feedback-images-container .carousel-indicators {
    margin-bottom: 0.5rem;
}

.feedback-images-container .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.feedback-images-container .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
}

.feedback-card .card-body {
    padding: 1.5rem;
}

.feedback-card .card-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section Header Line */
.section-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
    margin: 0 auto;
}

