@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300..700&display=swap');

:root {
    --primary-pink: #e80b5b;
    /* Bright Pink/Magenta */
    --secondary-cyan: #06bcc1;
    /* Bright Cyan */
    --accent-yellow: #a2c616;
    /* Lime Green/Yellow */
    --dark-blue: #0b1d2e;
    /* Dark Navy Blue */
    --light-bg: #f8fcfd;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography Variables */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Custom spacing for themed sections */
.custom-pad {
    padding: 80px 5% !important;
}

.spacer-y,
.space {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.top-title {
    color: var(--secondary-cyan);
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    font-weight: 700;
}

/* Utilities */
.spacer-y {
    padding-top: 140px;
    padding-bottom: 140px;
}

.bg-light-gray {
    background-color: #f7f9fb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Premium Contact Layout */
.contact-section {
    position: relative;
    z-index: 5;
    background: var(--white);
    display: block;
    clear: both;
}

.contact-card-premium {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    margin-top: -100px;
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    /* Align all to right */
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-contacts a {
    color: var(--white);
    text-decoration: underline;
}

.top-contacts .divider {
    color: rgba(255, 255, 255, 0.5);
}

.video-chat-btn {
    background-color: var(--primary-pink);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Header Base Styles */
.main-header {
    position: fixed;
    top: 45px;
    /* Below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.main-header.scrolled {
    background-color: var(--white);
    top: 0;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Elements to change color when header is white */
.main-header.scrolled .logo a {
    color: var(--dark-blue);
}

.main-header.scrolled .nav-menu ul li a {
    color: var(--text-dark);
}

.main-header.scrolled .nav-menu ul li a.active,
.main-header.scrolled .nav-menu ul li a:hover {
    color: var(--primary-pink);
}

.main-header.scrolled .icon-btn {
    color: var(--dark-blue);
    border-color: rgba(11, 29, 46, 0.2);
}

.main-header.scrolled .icon-btn:hover {
    background: rgba(11, 29, 46, 0.05);
}

.main-header.scrolled .menu-text {
    color: var(--dark-blue);
}

.main-header.scrolled .hamburger span {
    background-color: var(--dark-blue);
}

.header-container {
    width: 95%;
    /* Wider like screenshot */
    max-width: 1600px;
    margin: 0 auto;
}

/* Flex only for header/top-bar instances to avoid body content side-by-side corruption */
.main-header .header-container,
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    display: inline-block;
}

.logo span {
    color: var(--primary-pink);
    font-weight: 400;
}

.logo small {
    font-size: 0.7rem;
    color: var(--accent-yellow);
    letter-spacing: 2px;
    font-weight: 300;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu ul li a.active {
    color: var(--accent-yellow);
}

.nav-menu ul li a:hover {
    color: var(--secondary-cyan);
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn-wrap {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.menu-text {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-center-content {
    margin-top: 120px;
    width: 100%;
}

.page-hero .main-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero .sub-heading {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slider .swiper-slide {
    height: 100%;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 29, 46, 0.6) 0%, rgba(11, 29, 46, 0) 30%, rgba(11, 29, 46, 0.8) 100%);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background-color: var(--white);
}

.hero-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin-top: 50px;
    /* Offset for header */
}

.main-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 15px;
}

.sub-heading {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.heading-divider {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

/* Slide Animations */
.hero-slider .swiper-slide-active .main-heading {
    animation: heroFadeInUp 1s both;
}

.hero-slider .swiper-slide-active .sub-heading {
    animation: heroFadeInUp 1s both 0.3s;
}

.hero-slider .swiper-slide-active .heading-divider {
    animation: heroScaleIn 1s both 0.6s;
}

.hero-slider .swiper-slide-active .hero-location-info {
    animation: heroFadeInLeft 1s both 0.8s;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

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

.hero-bottom-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-controls-fixed {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    /* Let clicks pass through except for buttons */
}

.hero-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
    pointer-events: auto;
}

.hero-pagination {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-yellow);
    width: 60px;
}

.hero-location-info {
    color: var(--white);
    max-width: 500px;
}

.hero-location-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.hero-location-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.see-more-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.see-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-yellow);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 100px;
    /* Moved up to make room for scroll-top */
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}

.floating-actions .whatsapp-fab {
    background: #25d366;
}

.floating-actions .whatsapp-fab:hover {
    background: #1da851;
}

/* Scroll Top Customization */
.scroll-top {
    border-radius: 50% !important;
}

.scroll-top::after {
    color: var(--secondary-cyan) !important;
    border: 2px solid var(--secondary-cyan) !important;
}

.scroll-top .progress-circle path {
    stroke: var(--secondary-cyan) !important;
}


/* Welcome Section */
.welcome-section {
    background-color: var(--white);
    padding-left: 3% !important;
    padding-right: 3% !important;
    max-width: 100%;
    overflow: hidden;
}

.welcome-flex {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.welcome-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(232, 11, 91, 0.1);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.welcome-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Pin image to bottom */
}

.welcome-image-container {
    position: relative;
    width: 80%;
    height: 130%;
    transform: translateX(40%);
    /* Reduced from 70% to match the wider layout */
}

.decor-circle {
    position: absolute;
    top: -20px;
    right: -20%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(232, 11, 91, 0.1), rgba(11, 29, 46, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.welcome-image img {
    position: absolute;
    top: -60px;
    /* Start slightly above the top padding */
    bottom: -80px;
    /* Go all the way to the bottom padding */
    right: -5%;
    /* Reset to stick to the right of the container */
    height: calc(100% + 140px);
    /* Fill the full height of the container including top/bottom padding */
    width: auto;
    /* Auto scale width to keep aspect ratio */
    max-width: none;
    object-fit: contain;
    /* Ensure the person fits without cropping, but takes full height */
    object-position: right bottom;
    /* Pin to bottom right */
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.experience-badge {
    bottom: 20px;
    left: -250px;
    /* Pull further left to compensate for translateX */
}

.reviews-badge {
    top: 180px;
    left: -350px;
    /* Change from right to left to keep it visible on the screen */
    right: auto;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.badge-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}

.review-avatars {
    display: flex;
    align-items: center;
}

.review-avatars img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border: 3px solid var(--white) !important;
    object-fit: cover !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin-left: -15px !important;
    max-width: 45px !important;
    filter: none !important;
}

.review-avatars img:first-child {
    margin-left: 0 !important;
    z-index: 2;
}

.review-avatars img:nth-child(2) {
    z-index: 1;
}

.avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--white);
    margin-left: -15px;
    z-index: 0;
    font-size: 0.9rem;
}

.badge-desc {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 3px;
    display: block;
}

.badge-num-small {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
    display: block;
}

/* Daring Banner Section */
.banner-section {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1544482084-25e1719a844b?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 46, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.banner-content h2 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-cyan);
}

/* Journey Section */
.journey-section {
    background-color: var(--white);
    padding: 80px 0 40px;
}

.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-main-title {
    font-size: 3rem;
    color: var(--dark-blue);
    margin: 10px 0 5px;
    font-weight: 600;
}

.journey-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.journey-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent-yellow);
    color: var(--white);
}

.journey-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex: 1;
}

.journey-category {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.cat-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 4px;
    border: 1px dashed transparent;
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.journey-category.active .cat-img-wrap,
.journey-category:hover .cat-img-wrap {
    border-color: var(--primary-pink);
    border-style: dotted;
    border-width: 2px;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.journey-category h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--dark-blue);
    line-height: 1.1;
    font-weight: 500;
}

.journey-category p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Dynamic Banner Area */
.journey-banner {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: background-image 0.5s ease-in-out;
}

.banner-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(11, 29, 46, 0.8), transparent);
}

.journey-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.journey-banner-content h2 {
    font-size: 6rem;
    color: var(--white);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.view-tours a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Map Section */
.map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.map-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.map-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.map-locations {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.loc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.loc-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    padding: 2px;
}

.left .loc-item {
    justify-content: flex-end;
    text-align: right;
}

.left .loc-item div {
    order: 1;
}

.left .loc-item .loc-img {
    order: 2;
}

.loc-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.loc-item p {
    font-size: 0.8rem;
    color: var(--secondary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Experience Visual Journey Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.grid-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 46, 0.9) 0%, rgba(11, 29, 46, 0) 60%);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.grid-item:hover::before {
    opacity: 1;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item.tall {
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.grid-overlay span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
}

.grid-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Packages UI Image Match */
.packages-section.container-fluid {
    padding: 0;
    max-width: 100%;
}

/* Packages Slider Styles */
.packages-slider-wrap {
    width: 100%;
    padding: 0 60px;
    /* More space for arrows */
}

.packages-slider {
    width: 100%;
    padding-bottom: 60px !important;
}

.packages-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.packages-navigation button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.packages-navigation button:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(232, 11, 91, 0.3);
}

.packages-pagination {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.packages-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--dark-blue);
    opacity: 0.15;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.packages-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-pink);
    width: 35px;
    border-radius: 10px;
}

.packages-grid.contained {
    display: none;
    /* Replaced by Swiper */
}

@media (max-width: 767px) {
    .packages-slider-wrap {
        padding: 0 15px;
    }

    .packages-navigation {
        display: none;
    }
}

.package-card2 {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.pkg-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.package-card2:hover .pkg-img-wrap img {
    transform: scale(1.05);
}

.pkg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 90%);
}

.pkg-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pkg-duration {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: var(--body-font);
}

.pkg-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--title-font);
    color: #fff !important;
}

.pkg-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font);
}

.pkg-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0055, #ffb539);
}

.pkg-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px;
    max-width: 90%;
}

.pkg-brand {
    font-size: 14px;
    color: #c9d233;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--body-font);
}

.pkg-view-btn {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.pkg-view-btn:hover {
    color: #c9d233;
}

.pkg-view-btn i {
    font-size: 12px;
}

/* New Special Offers Section */
.premium-offers-section {
    position: relative;
    padding: 80px 0 100px;
    background: url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?q=80&w=1600') center/cover no-repeat;
}

.offers-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.view-all-offers-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--body-font);
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.view-all-offers-btn:hover {
    color: var(--secondary-cyan) !important;
}

.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.sp-offer-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.sp-offer-card:hover {
    transform: translateY(-10px);
}

.sp-img-box {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.sp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sp-offer-card:hover .sp-img-box img {
    transform: scale(1.05);
}

.sp-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

.sp-save-tag {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--body-font);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-save-tag i {
    color: #c9d233;
}

.sp-content-box {
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sp-title {
    font-size: 26px;
    font-weight: 400;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-family: var(--title-font);
}

.sp-price-start {
    font-size: 14px;
    font-weight: 600;
    color: #c9d233;
    margin-bottom: 25px;
    font-family: var(--body-font);
}

.sp-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: var(--body-font);
    flex-grow: 1;
}

.sp-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #c9d233;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--body-font);
    transition: color 0.3s ease;
}

.sp-enquire-btn:hover {
    color: var(--secondary-cyan);
}

.premium-book-btn.highlight:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
    padding: 80px 10%;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(162, 198, 22, 0.3);
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Footer Section */
.main-footer {
    background: #04111a;
    color: #fff;
    padding: 80px 10% 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Newsletter Top */
.footer-top-newsletter {
    text-align: center;
    margin-bottom: 70px;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.newsletter-form-container {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    height: 60px;
}

.input-wrapper {
    flex: 1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    text-align: left;
}

.input-label {
    color: #666;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.input-wrapper input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--primary-pink);
    font-family: 'Montserrat', sans-serif;
}

.input-wrapper input::placeholder {
    color: rgb(232, 11, 91, 0.5);
    /* lighter pink for placeholder */
}

.submit-btn {
    background-color: #8c9c08;
    /* Olive/Lime color from image */
    color: var(--white);
    border: none;
    padding: 0 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #727e05;
}

/* Columns */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.hotline-col .hotline-number {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.small-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.company-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.company-details a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.company-details a:hover {
    color: var(--white);
}

/* Stay Connected & Logos */
.footer-connected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.socials-wrap h4 {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: var(--white);
}

.social-icons {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.social-icons a i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    color: #ffffff !important;
}

.social-icons a:hover {
    background: var(--primary-pink) !important;
    border-color: var(--primary-pink) !important;
    color: var(--white) !important;
    transform: translateY(-5px) !important;
}

.footer-logo {
    text-align: right;
}

.footer-logo a {
    text-decoration: none;
    color: var(--accent-yellow);
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

/* Partners Bottom */
.footer-partners {
    padding: 30px 0;
    display: block;
}


.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 1;
}

.partner-logos img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 60px 4%;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 15px;
    }

    .top-contacts .divider {
        display: none;
    }

    .top-contacts {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .video-chat-btn {
        display: none;
    }

    .menu-btn-wrap {
        display: flex;
    }

    /* Hide on mobile for space */

    .main-header {
        top: 35px;
    }

    /* Slightly closer to top bar */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-blue);
        z-index: 1001;
        transition: 0.5s ease;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .nav-menu.active .mobile-menu-close {
        display: flex;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        color: var(--white);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        bottom: 150px;
        /* Moved up to avoid overlap */
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-location-info {
        max-width: 100%;
    }

    .hero-location-info p {
        display: none;
        /* Hide long description on mobile hover */
    }

    .hero-controls-fixed {
        bottom: 30px;
        justify-content: center;
        pointer-events: none;
    }

    .hero-controls {
        align-items: center;
        gap: 15px;
        /* Closer together on mobile */
        width: 100%;
    }

    .slider-arrows {
        gap: 20px;
    }

    .welcome-flex {
        flex-direction: column;
        gap: 60px;
    }

    .welcome-text {
        text-align: center;
    }

    .welcome-image-container {
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 50px;
    }

    .welcome-image img {
        height: 100%;
        position: relative;
        top: 0;
        bottom: 0;
        right: 0;
        margin: 0 auto;
        display: block;
    }

    .welcome-text p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .decor-circle {
        width: 250px;
        height: 250px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        right: auto;
    }

    .welcome-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .experience-badge {
        left: 5%;
        bottom: -10px;
        scale: 0.8;
    }

    .reviews-badge {
        left: auto;
        right: 5%;
        top: -20px;
        scale: 0.8;
    }

    .map-container {
        flex-direction: column;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        padding: 0 15px 20px;
    }

    /* Mobile grid horizontal scroll already handled */
    .premium-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-connected {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .search-box {
        flex-direction: column;
        gap: 10px;
    }

    .input-divider {
        width: 100%;
        height: 1px;
    }

    .search-container {
        border-radius: 20px;
    }

    .search-btn {
        width: 100%;
        border-radius: 50px;
        margin-left: 0;
        margin-top: 10px;
    }

    .newsletter-form-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .input-wrapper {
        padding: 15px 20px;
        border-radius: 5px;
    }

    .submit-btn {
        padding: 15px;
        border-radius: 5px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .main-header {
        top: 0 !important;
        padding: 10px 0;
    }

    .main-heading {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .sub-heading {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-pagination {
        bottom: 110px;
        /* Above the arrows/button */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .welcome-text h2 {
        font-size: 1.8rem;
    }

    .top-title {
        font-size: 0.8rem;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-section {
        height: 280px;
    }

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

    .grid-item.wide {
        grid-column: span 1;
    }

    .premium-offers-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center !important;
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center !important;
    }

    .journey-categories {
        flex-direction: column;
        align-items: center;
    }

    .journey-main-title {
        font-size: 2rem;
    }

    .floating-actions {
        bottom: 80px;
        /* Positioned above the back-to-top button */
        right: 15px;
        gap: 8px;
    }

    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .logo small {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions .icon-btn:first-child {
        display: none;
    }

    /* Hide Home icon on mobile */
    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .menu-text {
        font-size: 0.55rem;
    }
}


/* Fix for Destination Background Slider */
#destinationSlide12 .swiper-slide,
#destinationSlide12 .destination-img {
    height: 100% !important;
    width: 100% !important;
}

#destinationSlide12 .destination-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Premium Interactive Map Section */
.premium-map-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(11, 29, 46, 0.02) 0%, rgba(255, 255, 255, 1) 70%);
    overflow: hidden;
}

.map-showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-map {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    /* Reduced from 800px to make the map smaller */
}

.main-map-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: mapFloat 6s ease-in-out infinite;
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(232, 11, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

@keyframes mapFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Location Cards */
.floating-cards-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.map-loc-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 280px;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.map-loc-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(232, 11, 91, 0.15);
    border-color: rgba(232, 11, 91, 0.3);
}

/* Base Positions */
.pos-1 {
    top: 15%;
    left: 8%;
    animation: floatPin 5s ease-in-out infinite;
}

.pos-2 {
    top: 55%;
    left: 2%;
    animation: floatPin 6s ease-in-out infinite 1s;
}

.pos-3 {
    bottom: 20%;
    right: 12%;
    animation: floatPin 5.5s ease-in-out infinite 0.5s;
}

.pos-4 {
    top: 25%;
    right: 5%;
    animation: floatPin 6.5s ease-in-out infinite 1.5s;
}

@media (max-width: 992px) {

    .pos-1,
    .pos-2,
    .pos-3,
    .pos-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 20px auto;
        width: 90%;
        max-width: 350px;
        animation: none;
    }

    .floating-cards-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .map-showcase {
        flex-direction: column;
    }
}

@keyframes floatPin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.loc-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.loc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.map-loc-card:hover .loc-img-wrap img {
    transform: scale(1.2);
}

.loc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 46, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-loc-card:hover .loc-overlay {
    opacity: 1;
}

.loc-details h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.loc-details p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.explore-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.map-loc-card:hover .explore-btn {
    gap: 10px;
}

/* Map Markers */
.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-pink);
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 5px 15px rgba(232, 11, 91, 0.4);
}

.map-marker i {
    animation: markerBounce 2s infinite;
}

.map-marker span {
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

/* Approximate Locations on Map */
/* Beaches (Category 1) */
.beach-1 {
    top: 86%;
    left: 45%;
}

/* Mirissa */
.beach-2 {
    top: 83%;
    left: 34%;
}

/* Unawatuna */
.beach-3 {
    top: 65%;
    left: 75%;
}

/* Arugam Bay */
.beach-4 {
    top: 32%;
    left: 63%;
}

/* Nilaveli */

/* Culture (Category 2) */
.culture-1 {
    top: 38%;
    left: 45%;
}

/* Sigiriya */
.culture-2 {
    top: 30%;
    left: 35%;
}

/* Anuradhapura */
.culture-3 {
    top: 35%;
    left: 55%;
}

/* Polonnaruwa */
.culture-4 {
    top: 50%;
    left: 45%;
}

/* Kandy */

/* Safaris (Category 3) */
.safari-1 {
    top: 78%;
    left: 60%;
}

/* Yala */
.safari-2 {
    top: 73%;
    left: 50%;
}

/* Udawalawe */
.safari-3 {
    top: 45%;
    left: 50%;
}

/* Minneriya */
.safari-4 {
    top: 25%;
    left: 30%;
}

/* Wilpattu */

/* Hill Country (Category 4) */
.hill-1 {
    top: 65%;
    left: 55%;
}

/* Ella */
.hill-2 {
    top: 55%;
    left: 45%;
}

/* Nuwara Eliya */
.hill-3 {
    top: 60%;
    left: 50%;
}

/* Horton Plains */
.hill-4 {
    top: 58%;
    left: 40%;
}

/* Adam's Peak */

/* Hover Interaction to show markers */
.map-showcase:has(.cat-beaches:hover) .beach-1,
.map-showcase:has(.cat-beaches:hover) .beach-2,
.map-showcase:has(.cat-beaches:hover) .beach-3,
.map-showcase:has(.cat-beaches:hover) .beach-4,

.map-showcase:has(.cat-culture:hover) .culture-1,
.map-showcase:has(.cat-culture:hover) .culture-2,
.map-showcase:has(.cat-culture:hover) .culture-3,
.map-showcase:has(.cat-culture:hover) .culture-4,

.map-showcase:has(.cat-safaris:hover) .safari-1,
.map-showcase:has(.cat-safaris:hover) .safari-2,
.map-showcase:has(.cat-safaris:hover) .safari-3,
.map-showcase:has(.cat-safaris:hover) .safari-4,

.map-showcase:has(.cat-hills:hover) .hill-1,
.map-showcase:has(.cat-hills:hover) .hill-2,
.map-showcase:has(.cat-hills:hover) .hill-3,
.map-showcase:has(.cat-hills:hover) .hill-4 {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes markerBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}



/* Brand Section styles */
.brand-area {
    padding: 60px 0;
    background-color: #f7f9fc;
    /* Added a subtle background color for better contrast */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-area.overflow-hidden {
    overflow: hidden;
}

.brand-area .th-container {
    --main-container: 1648px;
}

.brand-box {
    width: 150px;
    height: 100px;
    /* Reduced height to be more compact */
    overflow: hidden;
    margin: auto;
    position: relative;
    display: block;
    transition: all 0.4s ease;
}

.brand-box img {
    margin: 0 auto;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 50px;
    /* Scaled down slightly for a more premium look */
    width: auto;
}

.brand-box img.gray {
    opacity: 0.7;
    /* Increased opacity from 0.6 */
    filter: grayscale(100%) brightness(0.8);
    /* Added brightness adjustment to make them darker */
}

.brand-box:hover {
    transform: scale(1.05);
}

.brand-box:hover img.gray {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -120%);
}

.brand-box:hover img.original {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.brand-box img.original {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20%);
}

/* Base adjustment for the brand slider */
.brandSlider1 {
    padding: 0;
}

.footer-brand-slider .brand-box {
    width: auto;
    height: 80px;
    opacity: 0.6;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-slider .brand-box:hover {
    opacity: 1;
}

.footer-brand-slider .brand-box img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand-slider .brand-box img.original {
    display: none;
}

.footer-brand-slider .brand-box img.gray {
    opacity: 1;
    visibility: visible;
}




/* Testimonial Section 9 */
.testiSlider9 {
    margin-top: 60px;
}

.testiSlider9 .swiper-slide {
    border-radius: 30px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.testiSlider9 .swiper-slide .box-img {
    -webkit-transform: scale(0.75) translateX(0);
    -ms-transform: scale(0.75) translateX(0);
    transform: scale(0.75) translateX(0);
}

.testiSlider9 .swiper-slide .box-img img {
    opacity: 35%;
}

.testiSlider9 .swiper-slide.swiper-slide-active .box-img {
    border-radius: 30px;
    -webkit-transform: scalex(1.3) translateX(0);
    -ms-transform: scalex(1.3) translateX(0);
    transform: scalex(1.3) translateX(0);
}

@media (max-width: 991px) {
    .testiSlider9 .swiper-slide.swiper-slide-active .box-img {
        -webkit-transform: scalex(1) translateX(0);
        -ms-transform: scalex(1) translateX(0);
        transform: scalex(1) translateX(0);
    }
}

.testiSlider9 .swiper-slide.swiper-slide-active .box-img img {
    opacity: 100%;
}

.testiSlider9 .swiper-slide.swiper-slide-active .box-content {
    opacity: 1;
    visibility: visible;
}

.testiSlider9 .swiper-wrapper {
    visibility: visible;
}

.testi-card3 {
    position: relative;
    z-index: 3;
    height: 536px;
    --space: 90px;
    margin-bottom: 97px;
}

@media (max-width: 1500px) {
    .testi-card3 {
        --space: 40px;
    }
}

@media (max-width: 1299px) {
    .testi-card3 {
        --space: 20px;
    }
}

@media (max-width: 1199px) {
    .testi-card3 {
        --space: 0px;
    }
}

@media (max-width: 991px) {
    .testi-card3 {
        --space: 20px;
    }
}

.testi-card3 .box-img {
    border-radius: 30px;
}

.testi-card3 .box-img img {
    width: 100%;
    height: 536px;
    object-fit: cover;
    border-radius: 30px;
}

.testi-card3 .box-avater {
    max-width: 150px;
    height: 150px;
    display: block;
    margin: auto auto 30px auto;
    border: 2px solid var(--white-color);
    border-radius: 100px;
    margin-top: -80px;
}

.testi-card3 .box-avater img {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100px;
}

.testi-card3 .box-content {
    position: absolute;
    bottom: 0px;
    left: var(--space);
    right: var(--space);
    -webkit-transform: translateY(17%);
    -ms-transform: translateY(17%);
    transform: translateY(17%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background-color: var(--white-color);
    box-shadow: 0px 4px 59px 9px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 0 40px 40px 40px;
    max-width: 100%;
    text-align: center;
    z-index: 2;
}

@media (max-width: 1199px) {
    .testi-card3 .box-content {
        padding: 0 20px 20px 20px;
    }
}

.testi-card3 .box-content .box-quote {
    position: absolute;
    top: 30%;
    left: 30%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testi-card3 .box-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .testi-card3 .box-text {
        font-size: 16px;
    }
}

.testi-card3 .box-title {
    margin-bottom: 0;
}

.testi-card3 .box-desig {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
    display: block;
    margin-bottom: -0.3rem;
}

/* Gallery Section 6 */
.destination-area6 .th-container {
    --main-container: 1472px;
}

.destination-slider2 .swiper-slide {
    box-shadow: none;
    border-radius: 24px;
    overflow: hidden;
}

.destination-slider2 .swiper-slide.swiper-slide-active {
    border-radius: 24px;
}

.destination-slider2 .swiper-slide.swiper-slide-active .destination-img {
    width: 425px;
    height: 470px;
    display: block;
    margin: auto;
}

.destination-slider2 .swiper-slide.swiper-slide-active .destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-box2 {
    position: relative;
}

.destination-box2 .destination-img {
    position: relative;
    border-radius: 24px;
    height: 470px;
    overflow: hidden;
    box-shadow: none;
}

.destination-box2 .destination-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 12, 0.5);
    border-radius: 24px;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

.destination-box2 .destination-img .icon-btn {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 3;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border: none;
    font-size: 40px;
    font-weight: 300;
    color: var(--white-color);
}

.destination-box2 .destination-img .icon-btn:hover {
    background-color: transparent;
}

.destination-box2 .destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.destination-box2:hover .destination-img:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.destination-box2:hover .icon-btn {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Theme Colors for Titles (Used in Gallery & Testimonials) */
.theme-sub-title {
    color: var(--secondary-cyan) !important;
}

.theme-sec-title {
    color: var(--dark-blue) !important;
}

/* Gallery Section specific overrides */
.gallery-section {
    position: relative;
    padding: 80px 0 100px;
    background: url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?q=80&w=1600') center/cover no-repeat;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

.gallery-section>.container {
    position: relative;
    z-index: 2;
}

.gallery-section .swiper-pagination-bullet-active {
    background-color: var(--secondary-cyan) !important;
    border-color: var(--secondary-cyan) !important;
}

.gallery-section .icon-btn:hover {
    color: var(--secondary-cyan) !important;
}

/* Testimonial Section specific overrides */
.testimonial-section .box-title {
    color: var(--dark-blue) !important;
}

.testimonial-section .box-desig {
    color: var(--secondary-cyan) !important;
}

.testimonial-section .swiper-pagination-bullet-active {
    background-color: var(--secondary-cyan) !important;
    border-color: var(--secondary-cyan) !important;
}

/* Premium Contact Layout */
.contact-card-premium {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Pull up into the breadcrumb/hero area */
}

.contact-info-side {
    position: relative;
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(11, 29, 46, 0.85) 0%, rgba(11, 29, 46, 0.95) 100%);
    z-index: 1;
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.info-item-wrap {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-wrap {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border-color: var(--accent-yellow);
}

.contact-socials .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.contact-socials .social-icons a:hover {
    background: var(--primary-pink) !important;
    border-color: var(--primary-pink) !important;
    transform: translateY(-5px);
}

.contact-form-side {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

/* Form Styles - Premium Upgrade */
.contact-form-side {
    padding: 60px;
    background: #ffffff;
    position: relative;
}

.custom-contact-form .row {
    --bs-gutter-y: 2rem;
}

.form-group-custom {
    position: relative;
    margin-bottom: 0px;
}

.form-group-custom label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.bg-input {
    background-color: #f9fbff !important;
    border: 1px solid #eef3fb !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    padding-right: 50px !important;
    /* Make room for icons on the right */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01) !important;
    height: auto !important;
}

.custom-input {
    width: 100%;
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 500;
    border: none !important;
    background: transparent !important;
    outline: none !important;
}

.custom-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.custom-input:focus {
    outline: none !important;
}

.form-group-custom:focus-within .bg-input {
    background-color: #ffffff !important;
    border-color: var(--primary-pink) !important;
    box-shadow: 0 10px 25px rgba(232, 11, 91, 0.08) !important;
    transform: translateY(-2px);
}

.form-group-custom i.field-icon {
    position: absolute;
    right: 20px;
    top: 50px;
    color: #cbd5e0;
    font-size: 1rem;
    transition: color 0.3s;
    pointer-events: none;
    z-index: 5;
}

.form-group-custom:focus-within i.field-icon {
    color: var(--primary-pink);
}

/* Specific Field Overrides */
select.custom-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 50px !important;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23cbd5e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 45px center !important;
    background-size: 12px !important;
}

select.custom-input:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23e80b5b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="18 15 12 9 6 15"></polyline></svg>') !important;
}

textarea.bg-input {
    min-height: 150px;
    resize: none;
}

.phone-input-wrap.bg-input {
    display: flex;
    align-items: center;
    padding: 0 20px !important;
    padding-right: 50px !important;
}

.phone-input-wrap .flag-select {
    padding-right: 15px;
    border-right: 2px solid #eef3fb;
    margin-right: 15px;
    display: flex;
    align-items: center;
    height: 52px;
}

.phone-input-wrap .custom-input {
    padding: 14px 0 !important;
}

/* Checkbox Styling */
.privacy-check {
    background: #f9fbff;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
    margin-top: 10px;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-check label {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.privacy-check label strong {
    color: var(--primary-pink);
}

/* Submit Button - Enhanced */
.custom-submit-btn {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c10045 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 15px 35px rgba(232, 11, 91, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(232, 11, 91, 0.4);
    background: var(--dark-blue);
}

/* Branch Styling */
.branch-select-custom {
    padding: 15px 25px;
    border: 1px solid #eef2f5;
    background-color: var(--white);
    font-weight: 700;
    color: var(--dark-blue);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.branch-select-custom:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 8px 25px rgba(232, 11, 91, 0.15);
}

.branch-detail-card {
    background: var(--white);
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 650px;
    margin: 0 auto;
}

.branch-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.branch-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-pink);
}

.branch-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.branch-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.branch-info p i {
    color: var(--primary-pink);
    width: 32px;
    height: 32px;
    background: rgba(232, 11, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.company-name {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.company-main-addr p {
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.company-web-link {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.company-web-link:hover {
    color: var(--dark-blue);
}

.footer-contact-cols {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #eef2f5;
}

.contact-col {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 30px;
    text-align: left;
    transition: background 0.3s ease;
}

.contact-col:hover {
    background: #f8fcfd;
}

.contact-col-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 11, 91, 0.08);
    /* Pink tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-pink);
    /* Pink icon */
    flex-shrink: 0;
}

.contact-col-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-col-text p {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Hero Section Centering */
.contact-page .hero-bottom-content {
    justify-content: center !important;
}

.breadcrumb-item a {
    color: var(--secondary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

@media (max-width: 991px) {
    .contact-card-premium {
        flex-direction: column;
        margin-top: -30px;
    }

    .contact-info-side {
        padding: 50px 30px;
        flex: auto;
    }

    .contact-form-side {
        padding: 40px 30px;
    }

    .footer-contact-cols {
        flex-direction: column;
    }

    .footer-contact-cols .col-md-5,
    .footer-contact-cols .border-end {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #eef2f5;
    }
}

@media (max-width: 768px) {

    .contact-page .page-hero,
    .about-page .page-hero {
        height: 50vh !important;
        min-height: 400px;
    }

    .contact-page .hero-bottom-content {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }

    .contact-page .hero-center-content,
    .about-page .hero-center-content,
    .page-hero .hero-center-content {
        margin-top: 80px;
        padding: 0 15px;
        width: 100%;
    }

    .contact-page .sub-heading,
    .about-page .sub-heading {
        font-size: 0.85rem !important;
        margin-bottom: 10px;
    }

    .contact-page .main-heading,
    .about-page .main-heading {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .custom-contact-form .row {
        --bs-gutter-y: 1.25rem !important;
    }

    .contact-form-side .mb-5,
    .about-page .mb-5,
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .contact-page .spacer-y,
    .about-page .spacer-y,
    .spacer-y,
    .space,
    .custom-pad {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .contact-card-premium {
        margin-top: 0;
    }

    .contact-form-side {
        padding: 40px 20px;
    }

    .contact-col {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-col-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-contact-cols .col-md-5:last-child .contact-col {
        border-bottom: none;
    }

    .branch-detail-card {
        padding: 30px 20px;
    }

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

    .company-name {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .contact-socials .social-icons {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .contact-form-side .sec-title {
        font-size: 1.8rem;
    }

    .custom-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .branch-select-custom {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .company-main-addr p {
        font-size: 1rem;
    }

    .contact-info-content h2.sec-title {
        font-size: 2rem !important;
    }
}

/* Hero Tours Button */
.hero-tour-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-pink);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-pink);
    text-transform: uppercase;
}

.hero-tour-btn:hover {
    background-color: transparent;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(223, 22, 135, 0.3);
}

@media (max-width: 768px) {
    .hero-tour-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        margin-top: 20px;
    }
}