/* ========================================
   LeisureHoppers DMC - Custom Styles
   ======================================== */

/* Using system fonts instead of local fonts */

/* Root Variables */
:root {
    --primary-color: #db2859;
    --primary-hover: #b91e48;
    --primary-light: #ff4d7f;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    
    /* Brand colors */
    --brand-pink: #db2859;
    --brand-white: #ffffff;
    
    /* Override Bootstrap primary color */
    --bs-primary: #db2859;
    --bs-primary-rgb: 220, 39, 90;
    
    /* Font family */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: auto; /* Lenis will handle smooth scrolling */
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

.btn {
    font-family: var(--font-primary);
}

input, textarea, select {
    font-family: var(--font-primary);
}

/* Override Bootstrap Primary Colors */
.bg-primary {
    background-color: #db2859 !important;
}

.text-primary {
    color: #db2859 !important;
}

.btn-primary {
    background-color: #db2859 !important;
    border-color: #db2859 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #b91e48 !important;
    border-color: #b91e48 !important;
}

.btn-outline-primary {
    color: #db2859 !important;
    border-color: #db2859 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #db2859 !important;
    border-color: #db2859 !important;
    color: #ffffff !important;
}

.border-primary {
    border-color: #db2859 !important;
}

.badge.bg-primary {
    background-color: #db2859 !important;
}

.alert-primary {
    background-color: rgba(220, 39, 90, 0.1) !important;
    border-color: #db2859 !important;
    color: #db2859 !important;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white-color);
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #db2859 0%, #b91e48 100%);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease-out;
    overflow: hidden;
    max-height: 50px;
}

.top-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
}

.top-bar-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.top-bar-item a {
    color: var(--white-color)!important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--white-color);
    opacity: 0.8;
}


/* Main Navbar Styles */
.main-navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.main-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 50px;
    width: auto;
    /* max-width: 200px; */
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    opacity: 0.8;
}

.navbar-toggler {
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 1040;
    position: relative;
    transition: opacity 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Menu Slide from Right */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: var(--white-color);
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1035;
        display: block !important;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-collapse.collapsing {
        height: 100vh;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .navbar-collapse.collapsing.show {
        transform: translateX(0);
    }
    
    /* Close Button */
    .navbar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border: none;
        background: var(--light-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--dark-color);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .navbar-close:hover {
        background: var(--primary-color);
        color: var(--white-color);
        transform: rotate(90deg);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link.active {
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .btn-gradient {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }
    
    /* Mobile Menu Backdrop */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.4s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    padding: 8px 16px !important;
    margin: 0 4px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #db2859 0%, #b91e48 100%);
    color: var(--white-color);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 90, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #b91e48 0%, #a01a3d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 90, 0.4);
    color: var(--white-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    overflow: hidden;
    --parallax-y: 0px;
}

.hero-video {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0, var(--parallax-y), 0) scale(1.15);
    backface-visibility: hidden;
    perspective: 1000px;
    z-index: -2;
    animation: zoomIn 1.2s ease-out;
}

.hero-section::before {
    display: none;
}

@keyframes zoomIn {
    from {
        transform: translate3d(0, 0, 0) scale(1.25);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0) scale(1.15);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(0px);
    z-index: -1;
    animation: overlayFadeIn 0.8s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: contentFadeIn 1s ease-out 0.3s both;
}

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

.hero-content .row {
    min-height: 60vh;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Counter Section */
.counter-item i {
    opacity: 0.9;
}

.counter {
    font-size: 3rem;
}

/* Trust Feature Items */
.trust-feature-item {
    transition: all 0.3s ease;
    padding: 15px;
}

.trust-feature-item i {
    opacity: 0.95;
    transition: all 0.3s ease;
}


.trust-feature-item h5 {
    font-size: 1.1rem;
}

.trust-feature-item p {
    opacity: 0.9;
}

.trust-feature-icon {
    width: 80px;
    height: 80px;
    opacity: 0.95;
    transition: all 0.3s ease;
}


.why-icon-img {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    transition: all 0.3s ease;
}



/* Service Cards */
.service-card {
    background: var(--white-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 3rem;
}

/* Package Cards */
.package-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.package-content h4 {
    color: var(--dark-color);
}

.package-content ul li {
    margin-bottom: 0.5rem;
}

/* Single Package Page Styles */
.package-details-content {
    background: var(--white-color);
    padding: 0;
}

.package-details-content h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.content-text p {
    margin-bottom: 1.2rem;
}

.highlight-item {
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #fff5f8 !important;
    transform: translateX(5px);
}

.package-sidebar {
    position: sticky;
    top: 120px;
}

.package-sidebar .card {
    border-radius: 12px;
}

.package-gallery img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Package Listing Page */
.template-packages .package-card {
    height: 100%;
}

/* Special Offer Popup */
.offer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.offer-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.offer-popup-content {
    position: relative;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.offer-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.offer-popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.offer-popup-inner {
    display: flex;
    min-height: 400px;
}

.offer-popup-left {
    flex: 1;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-illustration {
    position: relative;
    text-align: center;
}

.offer-icon {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.offer-sparkles {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
}

.offer-sparkles i {
    position: absolute;
    color: #fff;
    font-size: 1rem;
    animation: sparkle 1.5s infinite;
}

.offer-sparkles i:nth-child(1) {
    left: 10px;
    animation-delay: 0s;
}

.offer-sparkles i:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.offer-sparkles i:nth-child(3) {
    right: 10px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.offer-popup-right {
    flex: 1.2;
    padding: 40px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-text {
    margin-bottom: 30px;
}

.offer-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    line-height: 1;
}

.offer-discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(219, 40, 89, 0.2);
}

.offer-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1;
}

.offer-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.btn-offer-primary {
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-offer-primary:hover {
    background: #555;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-offer-primary i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-offer-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-offer-secondary:hover {
    border-color: #999;
    color: #333;
    background: #f8f9fa;
}

.offer-disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .offer-popup {
        padding: 15px;
    }
    
    .offer-popup-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .offer-popup-left {
        flex: none;
        padding: 30px 20px;
    }
    
    .offer-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .offer-popup-right {
        flex: none;
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-discount {
        font-size: 2rem;
    }
    
    .offer-cta-text {
        font-size: 1rem;
    }
    
    .btn-offer-primary,
    .btn-offer-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .offer-popup-content {
        border-radius: 15px;
    }
    
    .offer-popup-right {
        padding: 25px 15px;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-discount {
        font-size: 1.8rem;
    }
    
    .offer-cta-text {
        font-size: 0.9rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 10px 0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.breadcrumbs ol {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.breadcrumbs .breadcrumb_last {
    color: #333;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-method-card {
    background: var(--white-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(219, 40, 89, 0.1);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.support-info {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

/* Contact Page Responsive Styles */
.contact-info-card {
    min-height: 400px; /* Reduced height for image only */
}

.office-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.office-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.office-card .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
}

@media (max-width: 992px) {
    .contact-form-card {
        margin-bottom: 30px;
    }
    
    .contact-method-card {
        margin-bottom: 20px;
    }
    
    .contact-info-card {
        min-height: auto; /* Remove min-height on mobile */
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 20px !important;
    }
    
    .contact-info-card {
        margin-top: 30px;
        padding: 20px !important;
    }
    
    .contact-method-card {
        margin-bottom: 20px;
    }
    
    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .support-info {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .support-info i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .contact-form-card,
    .contact-info-card {
        padding: 15px !important;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-method-card h5 {
        font-size: 1.1rem;
    }
    
    .contact-method-card p {
        font-size: 0.9rem;
    }
    
    .support-info {
        padding: 15px 10px;
    }
    
    .support-info h5 {
        font-size: 1.1rem;
    }
    
    .support-info p {
        font-size: 0.9rem;
    }
    
    /* Form responsive improvements */
    .contact-form-card .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .contact-form-card .form-control,
    .contact-form-card .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    .contact-form-card .form-label {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Contact info responsive */
    .contact-info-card .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-info-card .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-info-card h6 {
        font-size: 0.9rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    /* Button improvements for mobile */
    .contact-method-card .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Why Cards */
.why-card {
    background: var(--white-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 39, 90, 0.1);
}
.why-icon img{
    filter: invert(100%);
    -webkit-filter: invert(100%); /* Safari/Chrome */
    -moz-filter: invert(100%); /* Firefox */
    -ms-filter: invert(100%); /* IE */
    -o-filter: invert(100%); /* Opera */
}
.why-icon i {
    font-size: 3.5rem;
}
.testimonials{
    overflow: hidden;
}
/* Testimonials Swiper Slider */
.testimonials-swiper {
    padding: 20px 0;
    overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card .testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card .testimonial-text {
    flex-grow: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Partner Logos */
.partner-logo {
    background: var(--white-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 60px;
    object-fit: contain;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e91e63 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

.lh-logo {
    margin: 0 auto 20px;
    display: block;
}

/* SVG Letter Animations */
.lh-letter {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLetter 2s ease-in-out forwards;
}

.lh-l {
    animation-delay: 0.2s;
}

.lh-h {
    animation-delay: 0.8s;
}

/* Drawing Animations */
@keyframes drawLetter {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.preloader-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.preloader-subtitle {
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    margin-bottom: 0;
}

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

.preloader-fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Safari fallback - hide preloader after 5 seconds even if JS fails */
#preloader {
    animation: preloader-timeout 5s forwards;
}

@keyframes preloader-timeout {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: -1;
    }
}

/* Contact Form */
.contact-form-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-item h6 {
    color: var(--white-color);
}

.contact-item .social-links a {
    border-color: var(--white-color) !important;
    color: var(--white-color) !important;
    background: transparent !important;
}

.contact-item .social-links a:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    transform: translateY(-3px);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 39, 90, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: var(--white-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 90, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

/* Responsive Design */

/* Extra Large Devices (1600px and up) */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section .lead {
        font-size: 1.75rem;
    }
}

/* Large Desktop (1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

/* Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .service-icon i,
    .why-icon i {
        font-size: 3rem;
    }
}

/* Tablet Landscape / Small Desktop (992px) */
@media (max-width: 992px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-info {
        gap: 15px;
    }
    
    .top-bar-item {
        font-size: 0.8rem;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 160px;
    }
    
    .hero-video {
        top: -15%;
        bottom: -15%;
        height: 130%;
        transform: translate3d(0, var(--parallax-y), 0) scale(1.1);
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .trust-feature-item h5 {
        font-size: 1rem;
    }
    
    .trust-feature-item i {
        font-size: 3rem !important;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-info {
        justify-content: center;
    }
    
    .hero-section {
        min-height: calc(100vh - 110px);
        padding: 120px 15px 60px;
    }
    
    .hero-content .row {
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .trust-feature-item h5 {
        font-size: 0.95rem;
    }
    
    .trust-feature-item i {
        font-size: 2.5rem !important;
    }
    
    .trust-feature-item p {
        font-size: 0.85rem;
    }
    
    .service-icon i,
    .why-icon i {
        font-size: 2.5rem;
    }
    
    .package-image {
        height: 250px;
    }
    
    .testimonials-swiper {
        padding: 10px 0;
    }
    
    /* Tablet Button Styles */
    .btn {
        font-size: 16px;
    }
}

/* Mobile Landscape / Large Phones (576px) */
@media (max-width: 576px) {
    .top-bar {
        padding: 6px 0;
    }
    
    .main-navbar {
        padding: 10px 0;
    }
    
    .hero-section {
        min-height: calc(100vh - 100px);
        padding: 100px 15px 40px;
    }
    
    .hero-content .row {
        min-height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }
    
    .trust-feature-item {
        padding: 10px;
    }
    
    .trust-feature-item h5 {
        font-size: 0.9rem;
    }
    
    .trust-feature-item i {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .trust-feature-item p {
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        min-width: 100%;
        width: 100%;
    }
    
    /* Mobile Button Styles */
    .btn {
        font-size: 16px !important;
        padding: 0.5rem 1rem !important;
    }
    
    .btn-lg {
        font-size: 16px !important;
        padding: 0.65rem 1.25rem !important;
    }
    
    .btn-sm {
        font-size: 14px !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .btn-gradient {
        font-size: 16px !important;
        padding: 0.6rem 1.2rem !important;
    }
}

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

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Transitions */
a {
    transition: all 0.3s ease;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):not(.social-link):not(.whatsapp-float):not(.footer-link):not(.footer-links a) {
    color: #db2859;
    text-decoration: none;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):not(.social-link):not(.whatsapp-float):not(.footer-link):not(.footer-links a):hover {
    color: #b91e48;
}

/* Exclude all footer section links from brand color */
.footer-section a:not(.btn):not(.social-link) {
    color: inherit;
}

/* Counter styles - smooth counting without zoom effect */
.counter {
    transition: opacity 0.3s ease;
}

/* ========================================
   Guide Page Styles
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

/* Guide Cards */
.guide-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.guide-card-header {
    position: relative;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.guide-badge {
    z-index: 2;
}

.guide-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.guide-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 40, 89, 0.1);
    border-radius: 50%;
    z-index: 1;
}

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

.guide-card-body {
    padding: 30px;
}

.guide-card-body h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
}

.guide-features {
    font-size: 0.9rem;
}

.guide-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.guide-features i {
    font-size: 1rem;
    margin-top: 2px;
}

/* Responsive Guide Page */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .guide-card-header {
        padding: 20px 20px 15px;
    }
    
    .guide-icon {
        width: 60px;
        height: 60px;
    }
    
    .guide-icon i {
        font-size: 1.5rem;
    }
    
    .guide-card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header .lead {
        font-size: 1rem;
    }
    
    .form-select,
    .form-control {
        font-size: 16px;
    }
    
    .form-label {
        font-size: 16px;
    }
}

/* ========================================
   Gallery Page Styles
   ======================================== */

/* Gallery Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white-color);
    border: 2px solid #e9ecef;
    color: var(--dark-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/2;
    background: var(--light-color);
    min-height: 280px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay-content {
    color: var(--white-color);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay-content h5 {
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.gallery-link:hover .gallery-overlay-content {
    transform: translateY(0);
}

/* GLightbox Custom Styling */
.gslide-description {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 8px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 8px 18px;
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-image {
        min-height: 220px;
    }
    
    .gallery-overlay-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        min-height: 250px;
    }
}

/* ========================================
   Footer Styles
   ======================================== */

.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h4,
.footer-widget h5,
.footer-widget h6 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-widget p {
    line-height: 1.4;
}

.text-light-gray {
    color: #b8b8b8 !important;
    line-height: 1.4;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-contact p {
    line-height: 1.4;
}

.footer-contact h6 {
    line-height: 1.3;
}

.footer-contact a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #db2859;
}

/* Footer Links */
.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\F285';
    font-family: 'Bootstrap-icons';
    position: absolute;
    left: 0;
    color: #db2859;
    font-size: 0.8rem;
    transition: left 0.3s ease;
}

.footer-links a:hover {
    color: #db2859;
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 5px;
}

/* Footer Newsletter */
.footer-newsletter .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.footer-newsletter .form-control {
    border: none;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px 0 0 50px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: none;
}

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
}

.footer-newsletter .btn:hover {
    transform: none;
}

.footer-newsletter .btn i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-newsletter .btn:hover i {
    transform: translate(3px, -3px) scale(1.1);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: #db2859;
    color: #ffffff;
    transform: translateY(-5px);
}

.social-link i {
    line-height: 1;
}

/* Footer Logo Section */
.footer-logo-section {
    background-color: #1a1a1a;
}

.footer-partner-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-partner-logo:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background-color: #111111;
}

.footer-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #db2859;
}

/* Responsive Footer */

/* Footer - Desktop (1200px) */
@media (max-width: 1200px) {
    .footer-widget h5 {
        font-size: 1.1rem;
    }
}

/* Footer - Tablet (992px) */
@media (max-width: 992px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0;
    }
}

/* Footer - Tablet Portrait (768px) */
@media (max-width: 768px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-widget {
        text-align: left;
    }
}

/* Footer - Mobile (576px) */
@media (max-width: 576px) {
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-widget h5 {
        font-size: 1rem;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-partner-logo {
        max-height: 40px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
}

