 html {
    scroll-padding-top: 80px; /* Height of your sticky header */
}

/* ================= PRELOADER ================= */
#loading-area.loading-page-2 {
    background: #faf8f2;
}

#loading-area.loading-page-2 .loading-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
}

#loading-area.loading-page-2 .loading-inner img {
    width: 92px;
    position: relative;
    z-index: 2;
    animation: leopathLoaderPulse 1.6s ease-in-out infinite;
}

#loading-area.loading-page-2 .loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation: leopathLoaderSpin 0.9s linear infinite;
}

@keyframes leopathLoaderPulse {

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

    50% {
        transform: scale(0.9);
        opacity: 0.82;
    }
}

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

@media (prefers-reduced-motion: reduce) {

    #loading-area.loading-page-2 .loading-inner img,
    #loading-area.loading-page-2 .loader-ring {
        animation: none;
    }
}

 /* Travel Section */
 .travel-section {
     position: relative;
     min-height: 100vh;
     /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
     padding: 80px 0;
     overflow: hidden;
 }

 /* Decorative Background Elements */
 .bg-decoration {
     position: absolute;
     border-radius: 50%;
     background: rgb(187 160 71 / 11%);
     z-index: 1;
 }

 .bg-decoration:nth-child(1) {
     width: 400px;
     height: 400px;
     top: -100px;
     left: -100px;
     animation: float 8s ease-in-out infinite;
 }

 .bg-decoration:nth-child(2) {
     width: 300px;
     height: 300px;
     bottom: -50px;
     right: -50px;
     animation: float 10s ease-in-out infinite reverse;
 }

 @keyframes float {
     0%, 100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(30px, 30px);
     }
 }

 .container {
     position: relative;
     z-index: 10;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px;
 }

 /* Split Layout Container */
 .split-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     min-height: 80vh;
 }

 /* Left Side - Content */
 .left-content {
     animation: slideInLeft 1s ease;
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-80px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .logo-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 20px;
     margin-bottom: 30px;
     animation: fadeIn 1s ease 0.2s backwards;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .logo {
     width: auto;
     /* height: 100px; */
     border-radius: 15px;
     /* object-fit: cover; */
     /* border: 4px solid #667eea; */
     /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
     transition: transform 0.4s ease;
 }

 .logo:hover {
     transform: scale(1.1);
     /* only grows slightly */
     transition: transform 0.3s ease;
     /* smooth animation */

 }

 .logo-text h2 {
     /* font-size: 3em; */
     /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
     /* -webkit-background-clip: text; */
     /* -webkit-text-fill-color: transparent; */
     /* background-clip: text; */
     font-weight: 700;
     margin-bottom: 5px;
     /* letter-spacing: 1px; */
 }

 /* .logo-text .tagline {
            font-size: 1.2em;
            color: #764ba2;
            font-style: italic;
            font-weight: 400;
        } */

 .description-content {
     background: white;
     padding: 15px;
     border-radius: 5px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
     animation: fadeInUp 1s ease 0.4s backwards;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

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

 .description-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     /* background: linear-gradient(90deg, #000000 0%, #ffffff 100%); */
 }

 /* .description-content p {
            font-size: 1.15em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        } */

 .description-content p:last-child {
     margin-bottom: 0;
 }

 .highlight {
     /* color: #667eea; */
     font-weight: 700;
 }

 .cta-button {
     display: inline-block;
     margin-top: 30px;
     padding: 18px 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-size: 1.2em;
     font-weight: 600;
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     animation: fadeIn 1s ease 0.6s backwards;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
 }

 /* Right Side - Images */
 .right-images {
     position: relative;
     height: 600px;
 }

 .image-card {
     position: absolute;
     border-radius: 5px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .image-card:hover {
     transform: scale(1.05);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
     z-index: 10;
 }

 .image-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 /* Image 1 - Top Left */
 .image-card-1 {
     width: 350px;
     height: 280px;
     top: 0;
     left: 0;
     animation: slideInRight 1s ease 0.3s backwards;
     z-index: 2;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(80px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Image 2 - Bottom Right */
 .image-card-2 {
     width: 380px;
     height: 300px;
     bottom: 0;
     right: 0;
     animation: slideInRight 1s ease 0.6s backwards;
     z-index: 3;
 }

 /* Decorative Dots Pattern */
 .dots-pattern {
     position: absolute;
     width: 100px;
     height: 100px;
     background-image: radial-gradient(circle, var(--secondary) 2px, transparent 2px);
     background-size: 20px 20px;
     opacity: 0.3;
     z-index: 1;
 }

 .dots-pattern-1 {
     top: 50px;
     right: 20px;
     animation: fadeIn 1s ease 1s backwards;
 }

 .dots-pattern-2 {
     bottom: 100px;
     left: 40px;
     animation: fadeIn 1s ease 1.2s backwards;
 }

 /* Loading Animation Overlay */
 .loading-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     animation: fadeOut 0.8s ease forwards;
     animation-delay: 0.5s;
 }

 @keyframes fadeOut {
     to {
         opacity: 0;
         visibility: hidden;
     }
 }

 .loading-spinner {
     width: 50px;
     height: 50px;
     border: 4px solid rgba(255, 255, 255, 0.3);
     border-top-color: white;
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

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

 /* Responsive Design */
 @media (max-width: 1024px) {
     .split-container {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .right-images {
         height: 500px;
         margin: 0 auto;
         max-width: 600px;
     }

     .image-card-1 {
         width: 300px;
         height: 240px;
     }

     .image-card-2 {
         width: 320px;
         height: 260px;
     }
 }

 @media (max-width: 768px) {
     .container {
         padding: 0 20px;
     }

     .logo-wrapper {
         flex-direction: column;
         text-align: center;
     }

     .logo-text h2 {
         font-size: 2.2em;
     }

     .logo-text .tagline {
         font-size: 1em;
     }

     .description-content {
         padding: 30px 20px;
     }

     .description-content p {
         font-size: 1.05em;
     }

     .right-images {
         height: 450px;
     }

     .image-card-1 {
         width: 250px;
         height: 200px;
     }

     .image-card-2 {
         width: 270px;
         height: 220px;
     }

     .cta-button {
         padding: 15px 35px;
         font-size: 1.1em;
     }
 }

 @media (max-width: 480px) {
     .logo {
         width: 80px;
         height: 80px;
     }

     .logo-text h2 {
         font-size: 1.8em;
     }

     .right-images {
         height: 400px;
     }

     .image-card-1 {
         width: 200px;
         height: 160px;
         left: 10px;
     }

     .image-card-2 {
         width: 220px;
         height: 180px;
         right: 10px;
     }
 }

 /* Parallax Section */
 .parallax-section {
     position: relative;
     height: 500px;
     background-image: url('../img/leopath-home-para-bg.jpg');
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .parallax-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgb(0 0 0 / 24%);
 }

 .parallax-content {
     position: relative;
     z-index: 10;
     text-align: center;
     color: white;
     padding: 40px;
 }

 .parallax-content h2 {
     font-size: 3.5em;
     margin-bottom: 20px;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
     animation: fadeInScale 1s ease;
     color: wheat;
 }

 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.8);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .parallax-content p {
     font-size: 1.5em;
     max-width: 700px;
     margin: 0 auto;
     text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease 0.3s backwards;
 }

 @media (max-width: 768px) {
     .parallax-section {
         background-attachment: scroll;
         height: 400px;
     }

     .parallax-content h2 {
         font-size: 2.5em;
     }

     .parallax-content p {
         font-size: 1.2em;
     }
 }

 /* travel section  */
 .travel-section .cta-section {
     background: linear-gradient(135deg, #ffffff 0%, #f8f5eb 100%);
     color: #bba047;
     padding: 1rem 2rem;
     text-align: center;
     margin-top: 1rem;
 }

 .travel-section .cta-section p {
     font-size: 1rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 .travel-section-contact {
    background: linear-gradient(135deg, #28282B, #4B4B4F);
  
}

.travel-section-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.travel-section-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.email-btn {
    background-color: #ffffff17;
    color: #fff;
}

.email-btn:hover {
    background-color: #ffffffbe;
    color: #000;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
        color: #fff;
}

.contact-links i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 500px) {
    .contact-links {
        flex-direction: column;
    }
}


 .travel-section-contact {
     background: linear-gradient(135deg, rgba(31, 31, 34, 0.82), rgb(60 60 64 / 26%)), url(../img/cta-bg.jpg) center / cover no-repeat;
     color: white;
     padding: 4rem 2rem;
     text-align: center;
 } /*

 .travel-section-contact h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .travel-section-contact p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }
.travel-section-contact .btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s 
ease;
    box-shadow: 0 5px 20px rgb(255 255 255 / 28%);
}
*/
/* EVENTS SEction  */
   .section-title {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ffffff, var(--secondary));
            border-radius: 2px;
        }

        .intro-text {
            text-align: center;
            font-size: 1.05rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .event-card {
            background: white;
            border-radius: 14px;
            padding: 2rem 1.6rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
        }

        .event-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.2rem;
            border-radius: 50%;
            background: #f8f5eb;
            color: var(--secondary);
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .event-card h3 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
        }

        .event-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.92rem;
            margin-bottom: 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .service-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: #fff;
            box-shadow: 0 4px 15px rgba(139, 26, 79, 0.1);
            transform: translateX(5px);
        }

        .service-item h3 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .service-item i {
            color: var(--secondary);
            font-size: 1.3rem;
        }

        .service-item p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .cta-section {
            background: #2d2d2d;
            color: white;
            padding: 3rem 1.5rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.5rem;
            /* background: linear-gradient(45deg, #8b1a4f, #ff6b9d); */
            /* color: white; */
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            /* box-shadow: 0 4px 15px rgba(139, 26, 79, 0.3); */
        }

        .btn:hover {
            transform: translateY(-2px);
            /* box-shadow: 0 6px 20px rgba(139, 26, 79, 0.5); */
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
            font-size: 0.9rem;
            margin: 0.3rem 0;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }

            .logo-subtitle {
                font-size: 1.1rem;
            }

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

            .events-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* COr section  */
      
        .corporate-section {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            padding: 2.5rem 1.5rem;
            /* margin-top: 2rem; */
        }

        /* .corporate-content {
            max-width: 900px;
            margin: 0 auto;
        } */
     .services-list {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .service-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
            
        }

        .service-row:last-child {
            border-bottom: none;
        }

        .service-row:hover {
            background: #f8f9fa;
            padding-left: 1.5rem;
        }

        .service-row .service-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-row .service-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .service-details {
            flex: 1;
            display: flex;
            justify-content:flex-start;
            align-items: center;
            gap: 0rem;
        }

        .service-details p {
            color: #2d2d2d;
            font-size: 1rem;
            font-weight: 400;
            margin: 0;
            text-align: left;
        }


         /* Email Section */
        .email-section {
            background: white;
            padding: 35px 30px;
            margin-bottom: 25px;
            /* border: 1px solid #e8e8e8;
            border-left: 3px solid #1a1a1a; */
        }

        .email-section-title {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }

        .email-list {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .email-item {
            display: flex;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }

        .email-item:last-child {
            border-bottom: none;
        }

        .email-item:hover {
            padding-left: 10px;
            background: #fafafa;
        }

        .email-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
           
                border: 1px solid #e0e0e0;
    background: #f4f1e7;
    border-radius: 50%;
        }

        .email-icon i {
            font-size: 16px;
            color: #1a1a1a;
        }

        .email-details {
            flex: 1;
        }

        .email-label {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
            text-transform: capitalize;
        }

        .email-link {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .email-link:hover {
            color: #1a1a1a;
        }


        /* Banner styles */
         .banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
         height: 100vh;
         text-align: left;
 

        position: relative;
        z-index: 2;
   
    }

    .banner-content .top-content {
        max-width: 800px;
        
        margin: 0 auto;
    }

    .carousel-item {
        height: 100vh;
    }

    /* ================= TRUST STRIP ================= */
    .trust-strip {
        background: #fff;
        padding: 40px 0;
        border-bottom: 1px solid #f0eee5;
        position: relative;
        z-index: 2;
    }

    .trust-strip .trust-item {
        text-align: center;
    }

    .trust-strip .trust-item i {
        font-size: 1.9rem;
        color: var(--secondary);
        margin-bottom: 10px;
        display: block;
    }

    .trust-strip .trust-item h6 {
        font-weight: 700;
        margin-bottom: 2px;
        color: var(--primary);
        font-size: 1rem;
    }

    .trust-strip .trust-item p {
        font-size: 0.82rem;
        color: #888;
        margin: 0;
    }

    @media (max-width: 575px) {
        .trust-strip .trust-item i {
            font-size: 1.5rem;
        }

        .trust-strip .trust-item h6 {
            font-size: 0.85rem;
        }

        .trust-strip .trust-item p {
            font-size: 0.72rem;
        }
    }

    /* ================= DIVISIONS ================= */
    .division-section {
        background: #fbfaf6;
    }

    .division-section .section-sub-text {
        max-width: 640px;
        margin: 0 auto;
        color: #666;
    }

    .division-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 10px;
    }

    .division-card {
        position: relative;
        display: block;
        border-radius: 18px;
        overflow: hidden;
        min-height: 430px;
        background-size: cover;
        background-position: center;
        text-decoration: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .division-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.92) 100%);
        transition: background 0.45s ease;
    }

    .division-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
    }

    .division-card:hover::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.95) 100%);
    }

    .division-icon {
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 2;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--secondary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(187, 160, 71, 0.5);
    }

    .division-body {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 28px 26px;
        color: #fff;
    }

    .division-body h3 {
        color: #fff;
        font-size: 1.45rem;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .division-body p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.93rem;
        margin-bottom: 14px;
        max-width: 320px;
    }

    .division-link {
        display: inline-flex;
        align-items: center;
        font-weight: 600;
        color: var(--secondary);
        letter-spacing: 0.3px;
    }

    .division-card:hover .division-link {
        color: #fff;
    }

    .division-card:hover .division-body p {
        color: rgba(255, 255, 255, 0.95);
    }

    @media (max-width: 991px) {
        .division-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 767px) {
        .division-grid {
            grid-template-columns: 1fr;
        }

        .division-card {
            min-height: 320px;
        }
    }

    /* ================= ABOUT LEOPATH ================= */
    .about-leopath-section {
        padding: 90px 0;
        background: #fff;
        overflow: hidden;
    }

    .about-highlights {
        list-style: none;
        padding: 0;
        margin: 22px 0;
    }

    .about-highlights li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        color: #333;
        font-weight: 500;
    }

    .about-highlights li i {
        color: var(--secondary);
        margin-top: 3px;
    }

    .about-collage {
        position: relative;
        min-height: 420px;
    }

    .about-collage .collage-img {
        position: absolute;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        width: 78%;
    }

    .about-collage .collage-img-1 {
        height: 340px;
        top: 0;
        right: 0;
        z-index: 1;
    }

    .about-collage .collage-img-2 {
        width: 54%;
        height: 220px;
        bottom: 0;
        left: 0;
        z-index: 2;
        border: 6px solid #fff;
    }

    @media (max-width: 991px) {
        .about-collage {
            min-height: 360px;
            margin-top: 20px;
        }

        .about-collage .collage-img-1 {
            height: 280px;
        }

        .about-collage .collage-img-2 {
            height: 180px;
        }
    }

    @media (max-width: 575px) {
        .about-collage {
            min-height: 260px;
        }

        .about-collage .collage-img-1 {
            width: 100%;
            height: 230px;
        }

        .about-collage .collage-img-2 {
            display: none;
        }
    }

    /* ================= HOME GALLERY PREVIEW ================= */
    .home-gallery-preview {
        padding: 90px 0;
        background: #f8f7f2;
    }

    .home-gallery-preview .section-sub-text {
        max-width: 640px;
        margin: 0 auto;
        color: #666;
    }

    .home-gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-top: 10px;
    }

    .home-gallery-grid a {
        display: block;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
    }

    .home-gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .home-gallery-grid a:hover img {
        transform: scale(1.08);
    }

    .home-gallery-grid a::after {
        content: '\f00e';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.4rem;
        background: rgba(0, 0, 0, 0);
        opacity: 0;
        transition: all 0.35s ease;
    }

    .home-gallery-grid a:hover::after {
        opacity: 1;
        background: rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 767px) {
        .home-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* ================= HOME GALLERY LIGHTBOX ================= */
    .home-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 100000;
        background: rgba(0, 0, 0, 0.92);
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .home-lightbox.is-open {
        display: flex;
        opacity: 1;
    }

    .home-lightbox-stage {
        max-width: 88vw;
        max-height: 84vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-lightbox-img {
        max-width: 88vw;
        max-height: 84vh;
        width: auto;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .home-lightbox-img.is-loaded {
        opacity: 1;
        transform: scale(1);
    }

    .home-lightbox-close,
    .home-lightbox-nav {
        position: absolute;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.25s ease;
    }

    .home-lightbox-close:hover,
    .home-lightbox-nav:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        color: #000;
    }

    .home-lightbox-close {
        top: 22px;
        right: 22px;
        width: 44px;
        height: 44px;
        font-size: 26px;
        line-height: 1;
    }

    .home-lightbox-nav {
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .home-lightbox-prev {
        left: 22px;
    }

    .home-lightbox-next {
        right: 22px;
    }

    .home-lightbox-counter {
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 14px;
        letter-spacing: 0.5px;
        opacity: 0.8;
        margin: 0;
    }

    @media (max-width: 575px) {
        .home-lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 15px;
        }

        .home-lightbox-prev {
            left: 10px;
        }

        .home-lightbox-next {
            right: 10px;
        }

        .home-lightbox-close {
            top: 12px;
            right: 12px;
            width: 38px;
            height: 38px;
            font-size: 22px;
        }
    }

    /* ================= FLOATING WHATSAPP ================= */
    .floating-whatsapp {
        position: fixed;
        bottom: 26px;
        right: 26px;
        z-index: 999;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #25D366;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-decoration: none;
    }

    .floating-whatsapp:hover {
        transform: scale(1.1);
        color: #fff;
    }

    @media (max-width: 575px) {
        .floating-whatsapp {
            width: 50px;
            height: 50px;
            font-size: 24px;
            bottom: 16px;
            right: 16px;
        }
    }

    /* ================= BACK TO TOP (stacked above WhatsApp) ================= */
    .scroltop {
        right: 26px;
        bottom: 96px;
        width: 54px;
        height: 54px;
        line-height: 54px;
        border-radius: 50%;
    }

    /* ================= TRAVEL PACKAGES & DESTINATIONS ================= */
    .travel-packages-section {
        background: #f8f7f3;
    }

    .travel-packages-section .section-sub-text {
        max-width: 720px;
        margin: 0 auto;
        color: #666;
    }

    .packages-gallery-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        margin-top: 10px;
    }

    .packages-gallery-grid a {
        display: block;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 3 / 4;
        background: #eee9da;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .packages-gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .packages-gallery-grid a:hover img {
        transform: scale(1.08);
    }

    .packages-gallery-grid a::after {
        content: '\f00e';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        background: rgba(0, 0, 0, 0);
        opacity: 0;
        transition: all 0.35s ease;
    }

    .packages-gallery-grid a:hover::after {
        opacity: 1;
        background: rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 991px) {
        .packages-gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 575px) {
        .packages-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
    }

    .package-note {
        margin-top: 40px;
        padding-top: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        color: #777;
        font-size: 0.88rem;
    }

    @media (max-width: 767px) {
        .package-card-img {
            aspect-ratio: 16 / 10;
        }
    }

    /* ================= TRAVEL HERO ================= */
    .travel-hero-section {
        padding: 90px 0;
        background: #fff;
        overflow: hidden;
    }

    .travel-hero-badge {
        display: inline-flex;
        align-items: center;
        background: #000000;
        border-radius: 10px;
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .travel-hero-badge img {
        /* height: 22px; */
        width: auto;
        display: block;
    }

    .travel-hero-section .section-head {
        margin-bottom: 18px;
    }

    .travel-trust-chips {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        padding: 0;
        margin: 6px 0 30px;
    }

    .travel-trust-chips li {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f8f5eb;
        color: #333;
        font-size: 0.88rem;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 50px;
    }

    .travel-trust-chips li i {
        color: var(--secondary);
    }

    .travel-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .travel-hero-actions .btn-outline-dark {
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
    }

    @media (max-width: 575px) {
        .travel-hero-actions .btn {
            width: 100%;
            text-align: center;
        }
    }

    /* ================= TRAVEL ITINERARIES ================= */
    .travel-itineraries-section {
        background: #fff;
    }

    .itinerary-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 950px;
        margin: 0 auto;
    }

    .itinerary-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background: #f8f7f3;
        border-radius: 12px;
        padding: 22px 26px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .itinerary-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        background: #fff;
    }

    .itinerary-thumb {
        position: relative;
        flex-shrink: 0;
        width: 110px;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        overflow: hidden;
        background: #eee9da;
    }

    .itinerary-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .itinerary-pdf-badge {
        position: absolute;
        bottom: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #e6483a;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }

    .itinerary-content {
        flex-grow: 1;
        min-width: 0;
    }

    .itinerary-tag {
        display: inline-block;
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        color: var(--secondary);
        margin-bottom: 4px;
    }

    .itinerary-content h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #1a1a1a;
    }

    .itinerary-content p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 0;
    }

    .itinerary-actions {
        flex-shrink: 0;
    }

    .itinerary-actions .btn {
        border-radius: 50px;
        white-space: nowrap;
        padding: 10px 20px;
    }

    .itinerary-footnote {
        margin: 30px 0 0;
        color: #777;
        font-size: 0.88rem;
    }

    @media (max-width: 575px) {
        .itinerary-item {
            flex-wrap: wrap;
            text-align: center;
            justify-content: center;
            padding: 22px;
        }

        .itinerary-thumb {
            width: 160px;
        }

        .itinerary-content {
            width: 100%;
        }

        .itinerary-actions {
            width: 100%;
        }

        .itinerary-actions .btn {
            display: block;
            width: 100%;
        }
    }

    /* ================= TRAVEL CTA ================= */
    .travel-section-contact {
        position: relative;
    }

    .travel-cta-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: var(--secondary);
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    @media (max-width: 575px) {
        .scroltop {
            right: 16px;
            bottom: 78px;
            width: 46px;
            height: 46px;
            line-height: 46px;
        }
    }

    /* ================= MODERN INNER PAGE BANNER ================= */
    /* Applies to every inner-page banner (Travel, Events, Corporate, Gallery,
       Terms, Privacy) since they all share .dz-bnr-inr.style-1.overlay-primary-dark. */
    .dz-bnr-inr.style-1.overlay-primary-dark {
        min-height: 300px;
        align-items: flex-end;
    }

    .dz-bnr-inr.style-1.overlay-primary-dark:before {
        background: linear-gradient(180deg, rgba(15, 15, 18, 0.25) 0%, rgba(15, 15, 18, 0.55) 55%, rgba(10, 10, 12, 0.88) 100%);
        opacity: 1;
    }

    .dz-bnr-inr.style-1.text-center {
        text-align: left !important;
    }

    .dz-bnr-inr.style-1 .dz-bnr-inr-entry {
        text-align: left;
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .dz-bnr-inr.style-1 h1,
    .dz-bnr-inr.style-1 .h1 {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 0.3px;
        margin-bottom: 0;
        display: inline-block;
    }

    .dz-bnr-inr.style-1 h1::after,
    .dz-bnr-inr.style-1 .h1::after {
        content: '';
        display: block;
        width: 64px;
        height: 3px;
        border-radius: 2px;
        background: var(--secondary);
        margin-top: 16px;
    }

    .dz-bnr-inr.style-1 .breadcrumb-row {
        margin-top: 14px;
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul {
        background: transparent;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul li {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul li a {
        color: #fff;
        transition: color 0.25s ease;
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul li a:hover {
        color: var(--secondary);
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul .breadcrumb-item.active {
        color: var(--secondary);
        font-weight: 600;
    }

    .dz-bnr-inr.style-1 .breadcrumb-row ul .breadcrumb-item+.breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.45);
        font-size: 18px;
        padding-right: 8px;
    }

    @media (max-width: 991px) {
        .dz-bnr-inr.style-1.overlay-primary-dark {
            min-height: 240px;
        }

        .dz-bnr-inr.style-1 h1,
        .dz-bnr-inr.style-1 .h1 {
            font-size: 32px;
        }
    }

    @media (max-width: 767px) {
        .dz-bnr-inr.style-1.overlay-primary-dark {
            min-height: 210px;
        }

        .dz-bnr-inr.style-1 h1,
        .dz-bnr-inr.style-1 .h1 {
            font-size: 28px;
        }
    }

    @media (max-width: 575px) {
        .dz-bnr-inr.style-1.overlay-primary-dark {
            min-height: 190px;
        }

        .dz-bnr-inr.style-1 h1,
        .dz-bnr-inr.style-1 .h1 {
            font-size: 24px;
        }

        .dz-bnr-inr.style-1 .breadcrumb-row ul li {
            font-size: 13px;
        }
    }

    /* ================= EVENTS HERO ================= */
    .events-hero-section {
        padding: 90px 0;
        background: #fff;
        overflow: hidden;
    }

    .events-hero-badge {
        display: block;
        height: 34px;
        width: auto; 
  
        background: #000000;
        border-radius: 10px;
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .events-hero-section .section-head {
        margin-bottom: 18px;
    }

    .events-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 6px;
    }

    .events-hero-actions .btn-outline-dark {
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
    }

    @media (max-width: 575px) {
        .events-hero-actions .btn {
            width: 100%;
            text-align: center;
        }
    }

    /* ================= EVENT TYPES ================= */
    .event-types-section {
        background: #f8f7f3;
    }

    .event-types-section .section-sub-text {
        max-width: 640px;
        margin: 0 auto;
        color: #666;
    }

    /* ================= PARTNERSHIPS ================= */
    .partners-section .section-sub-text {
        max-width: 640px;
        margin: 0 auto;
        color: #666;
    }

    .partners-strip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 10px;
    }

    .partner-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #f8f5eb;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 14px 26px;
        border-radius: 50px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .partner-chip:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    .partner-chip i {
        color: var(--secondary);
        font-size: 1.1rem;
    }

    /* ================= EVENT SUPPORT SERVICES ================= */
    .event-services-section {
        background: #fff;
    }

    .event-services-section .section-sub-text {
        max-width: 680px;
        margin: 0 auto;
        color: #666;
    }

    /* ================= INNER PAGE CTA (Events / Corporate / Travel) ================= */
    .events-cta-section,
    .corporate-cta-section,
    .travel-section-contact {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 4rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .events-cta-section h2,
    .corporate-cta-section h2,
    .travel-section-contact h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        font-weight: 700;
        color: #fff;
    }

    .events-cta-section p,
    .corporate-cta-section p,
    .travel-section-contact p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.85);
    }

    .events-cta-icon,
    .corporate-cta-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: var(--secondary);
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* ================= PORTFOLIO GALLERY ================= */
    .portfolio-section .section-sub-text {
        max-width: 680px;
        margin: 0 auto;
        color: #666;
    }

    .portfolio-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .portfolio-tab {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        color: #333;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 10px 26px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .portfolio-tab:hover {
        border-color: var(--secondary);
        color: var(--secondary);
    }

    .portfolio-tab.active {
        background: var(--secondary);
        border-color: var(--secondary);
        color: #fff;
    }

    .portfolio-masonry {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-masonry-col {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-item {
        display: block;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.06);
    }

    .portfolio-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 55%);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .portfolio-item:hover::after {
        opacity: 1;
    }

    .portfolio-badge {
        position: absolute;
        left: 14px;
        bottom: 14px;
        z-index: 1;
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 6px 14px;
        border-radius: 50px;
        opacity: 0;
        transform: translateY(6px);
        transition: all 0.35s ease;
    }

    .portfolio-item:hover .portfolio-badge {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .portfolio-masonry,
        .portfolio-masonry-col {
            gap: 12px;
        }

        .portfolio-item {
            border-radius: 10px;
        }

        .portfolio-badge {
            opacity: 1;
            transform: translateY(0);
            font-size: 0.62rem;
            padding: 4px 10px;
            left: 8px;
            bottom: 8px;
        }

        .portfolio-item::after {
            opacity: 0.55;
        }
    }

/* ================= FOOTER - COLOR REFRESH ================= */
.site-footer.style-2 .footer-top {
    background-color: var(--secondary)
}

.site-footer.style-2 .footer-top:before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(4, 43, 53, 0.93) 0%, rgba(15, 15, 15, 0.9) 55%, rgba(187, 160, 71, 0.4) 100%);
}

.site-footer.style-2 .footer-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #bba047, #e2795a, #16808f, #bba047);
    z-index: 2;
}

.site-footer.style-2 p,
.site-footer.style-2 a,
.site-footer.style-2 span,
.site-footer.style-2 small,
.site-footer.style-2 .small,
.site-footer.style-2 li {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer.style-2 .widget_services a,
.site-footer.style-2 .widget_about a {
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-footer.style-2 .widget_services a:hover,
.site-footer.style-2 .widget_about a:hover {
    color: #d9bd6a !important;
    padding-left: 4px;
}

.site-footer.style-2 .separator-2.bg-secondary {
    background: linear-gradient(90deg, #bba047, #e2795a) !important;
}

.site-footer.style-2 .widget_locations .icon-bx-wraper {
    transition: transform 0.25s ease;
}

.site-footer.style-2 .widget_locations .icon-bx-wraper:hover {
    transform: translateX(4px);
}

.site-footer.style-2 .widget_locations .icon-md {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(187, 160, 71, 0.16);
    transition: background 0.25s ease;
}

.site-footer.style-2 .widget_locations .icon-md i {
    font-size: 19px;
    color: #d9bd6a;
}

.site-footer.style-2 .widget_locations .clearfix:nth-of-type(3) .icon-md {
    background: rgba(22, 128, 143, 0.22);
}

.site-footer.style-2 .widget_locations .clearfix:nth-of-type(3) .icon-md i {
    color: #4fc3d9;
}

.site-footer.style-2 .widget_locations .clearfix:nth-of-type(4) .icon-md {
    background: rgba(226, 121, 90, 0.2);
}

.site-footer.style-2 .widget_locations .clearfix:nth-of-type(4) .icon-md i {
    color: #e2795a;
}

.site-footer.style-2 .widget_locations a[href^="tel:"]:hover {
    color: #d9bd6a !important;
}

.site-footer.style-2 .footer-bottom {
    background: linear-gradient(90deg, #a98d3e, #bba047 45%, #cdb26a) !important;
}

.site-footer.style-2 .footer-bottom .copyright-text {
    color: #1a1a1a !important;
    font-weight: 500;
}

.site-footer.style-2 .footer-bottom .copyright-text a {
    color: #062b33 !important;
}

.site-footer.style-2 .det-license {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: -10px;
}

/* ================= CONTACT MAP ================= */
.contact-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.contact-map-wrapper iframe {
    display: block;
}