.error-message-text {
    color: red !important;
    margin-left: 1vw;
}

.contact-section {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    padding: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 400;
}

.phone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phone-list li {
    margin-bottom: 0rem;
    padding: 0.25rem 0;
}

.phone-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

/* Compact card padding handled with Bootstrap p-4 / p-md-5 */
/* Field wrapper with left icon */
.contact-form .form-field {
    position: relative;
}

.contact-form .icon-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    color: #155EAB;
    /* match your main-600 tone */
    pointer-events: none;
}

/* Inputs / textarea */
.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: .875rem .75rem .875rem 2.6rem;
    /* room for icon */
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
    font: inherit;
}

.contact-form .form-textarea {
    min-height: 160px;
    resize: vertical;
}

/* Focus states */
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #155EAB;
    box-shadow: 0 0 0 .15rem rgba(21, 94, 171, .12);
}

/* Error text baseline */
.error-message-text {
    display: block;
    margin-top: .25rem;
    font-size: .875rem;
    color: #b42318;
}

/* Utility: hide labels but keep accessible */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Custom Tailwind-like classes */
.tw-w-300-px {
    width: 300px;
}

.tw-h-screen {
    height: 100vh;
}

.tw-p-6 {
    padding: 1.5rem;
}

.tw-z-999 {
    z-index: 999;
}

.tw--translate-x-full {
    transform: translateX(-100%);
}

.tw-pb-68 {
    padding-bottom: 4.25rem;
}

.tw-end-0 {
    right: 0;
}

.tw-me-2 {
    margin-right: 0.5rem;
}

.tw-mt-2 {
    margin-top: 0.5rem;
}

.tw-w-605 {
    width: 3.78rem;
}

.tw-h-605 {
    height: 3.78rem;
}

.tw-mt-8 {
    margin-top: 2rem;
}

.tw-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.tw-rounded-4xl {
    border-radius: 2rem;
}

.tw-pe-5 {
    padding-right: 1.25rem;
}

.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.tw-px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.tw-gap-6 {
    gap: 1.5rem;
}

.tw-gap-29 {
    gap: 7.25rem;
}

.tw-gap-2 {
    gap: 0.5rem;
}

.tw-text-9 {
    font-size: 2.25rem;
}

.max-w-200-px {
    max-width: 200px;
}

.text-main-600 {
    color: #09aed9;
}

.bg-main-600 {
    background-color: #09aed9;
}

.text-neutral-900 {
    color: #171717;
}

.bg-neutral-200 {
    background-color: #e5e5e5;
}

.text-neutral-800 {
    color: #262626;
}

.hover-bg-neutral-900:hover {
    background-color: #171717;
}

.hover-text-white:hover {
    color: white;
}

.font-dmsans {
    font-family: 'DM Sans', sans-serif;
}

.font-heading {
    font-family: 'Heading Font', sans-serif;
}

.fs-15 {
    font-size: 0.9375rem;
}

.primary-btn {
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
}

a {
    text-decoration: none !important;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    min-width: 800px;
    max-width: 1000px;
    width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #09aed9;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #09aed9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mega-menu-section {
    margin-bottom: 1rem;
}

.mega-menu-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 0.3rem;
}

.mega-menu-links a {
    display: block;
    padding: 0.4rem 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    position: relative;
}

.mega-menu-links a:hover {
    color: #09aed9;
    padding-left: 0.75rem;
    background-color: #f8fafc;
}

.mega-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #09aed9;
    transition: width 0.3s ease;
}

.mega-menu-links a:hover::before {
    width: 4px;
}

/* Hover trigger for mega menu */
.nav-menu__item.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu__item.has-mega-menu .nav-menu__link::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu__item.has-mega-menu:hover .nav-menu__link::after {
    transform: rotate(180deg);
}

/* Responsive Mega Menu */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 700px;
        max-width: 90vw;
        padding: 1.25rem;
    }

    .mega-menu-content {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        min-width: 600px;
        max-width: 95vw;
        padding: 1rem;
        max-height: 60vh;
    }

    .mega-menu-content {
        gap: 1rem;
    }

    .mega-menu-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .mega-menu-section {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95vw;
        max-width: 500px;
        max-height: 80vh;
        border-radius: 0.5rem;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .mega-menu-column {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0.8rem;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-menu-close {
        display: block;
    }
}

.mega-menu-close {
    display: none;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
}

.mega-menu-close:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Mobile dropdown styles */
/* Mobile dropdown styles */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

/* When dropdown is open */
.mobile-dropdown.show {
    max-height: 70vh;
    /* allows taller content */
    overflow-y: auto;
    /* enable scrolling */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

/* Scrollbar styling (optional) */
.mobile-dropdown::-webkit-scrollbar {
    width: 6px;
}

.mobile-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Inner items */
.mobile-dropdown .dropdown-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #09aed9;
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-dropdown .dropdown-item:hover {
    background-color: #e2e8f0;
}

.mobile-dropdown-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-dropdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #09aed9;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-toggle-icon {
    transition: transform 0.3s ease;
}

.mobile-toggle-icon.rotated {
    transform: rotate(180deg);
}

.nav-menu__item.activePage>a {
    text-decoration: none !important;
}

.nav-menu .text-main-600 {
    color: #ffffff;
}

a:hover {
    color: #2196F3 !important;
}

.header-menu {
    margin-inline-start: 0px;
}

/* Glassmorphism background for header-two */
.header.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    /* subtle transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.header-button .primary-btn {
    background: #09aed9bd !important;
    color: #ffffff !important;
}

.nav-menu__item.activePage>a {
    text-decoration: none !important;
}

.nav-menu .text-main-600 {
    color: #ffffff;
}

a:hover {
    color: #2196F3 !important;
}

.header-menu {
    margin-inline-start: 0px;
}

/* Glassmorphism background for header-two */
.header.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    /* subtle transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.header-button .primary-btn {
    background: #09aed9bd !important;
    color: #ffffff !important;
}

.progress-wrap {
    mix-blend-mode: normal !important;
}

/* Custom CSS CODES BY JOEL BENNY */
.package-details-contact input {
    padding: 0 15px;
    height: 60px;
}

.contact-ip-map iframe {
    height: 400px;
}

.contact-card {
    height: 350px;
}