        /* --- RESET & BASE --- */
        :root {
            /* Font Update: Nunito */
            --body-font: 'Nunito', sans-serif;
            --heading-font: 'Nunito', sans-serif;

            --primary-blue: #255bb5;
            /* Darkened for Accessiblity (Contrast > 4.5:1) */
            /* Contrast Fix: Darkened from #e04e21 to #c93309 for better legibility and WCAG compliance */
            --primary-red: #c93309;

            --primary-color: var(--primary-red);
            --secondary-color: var(--primary-blue);
            --tertiary-color: #8559E6;
            /* Purple from index.php scheme */

            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-color: #606060;
            --text-dark: #1a1a1a;
            --border-color: #eee;
        }

        .p-30 {
            padding: 30px !important;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: var(--body-font) !important;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            /* Applied Outfit Font via Variable */
            font-family: var(--body-font);
            line-height: 1.7;
            font-weight: 400;
            color: var(--text-color);
            background: #fff;
            overflow-x: hidden;
            padding-top: 0;
            /* Hero handles spacing */
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        a:hover {
            color: var(--primary-color);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        p {
            margin-bottom: 1rem;
        }

        /* --- LAYOUT GRID --- */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .gx-5 {
            --bs-gutter-x: 3rem;
        }

        .gx-5 .col-lg-4,
        .gx-5 .col-sm-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        [class*="col-"] {
            padding: 0 15px;
            width: 100%;
        }

        @media (min-width: 768px) {
            .col-md-3 {
                width: 25%;
            }

            .col-md-6 {
                width: 50%;
            }

            .col-md-12 {
                width: 100%;
            }

            .col-sm-6 {
                width: 50%;
            }
        }

        @media (min-width: 992px) {
            .col-lg-4 {
                width: 33.333%;
            }

            .col-lg-5 {
                width: 41.666%;
            }

            .col-lg-6 {
                width: 50%;
            }

            .col-lg-7 {
                width: 58.333%;
            }

            .col-lg-8 {
                width: 66.666%;
            }

            .col-lg-12 {
                width: 100%;
            }

            .offset-lg-1 {
                margin-left: 8.333%;
            }

            .offset-lg-3 {
                margin-left: 25%;
            }

            .order-lg-1 {
                order: 1;
            }

            .order-lg-2 {
                order: 2;
            }
        }

        @media (min-width: 992px) {

            /* Hide header initially on desktop - FORCED */
            #header:not(.header-sticky) {
                transform: translateY(-100%) !important;
                opacity: 0 !important;
                visibility: hidden !important;
                pointer-events: none !important;
            }

            /* Show header when sticky - FORCED */
            #header.header-sticky {
                transform: translateY(0) !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: all !important;
            }

            /* Adjust layout since header is gone */
            .col-lg-12 {
                width: 100%;
            }

            /* Hide mobile menu overlay on desktop */
            .mobile-menu-overlay {
                display: none !important;
            }
        }

        /* --- HEADER & MENU --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: transform 0.4s ease-in-out, background 0.4s ease, padding 0.4s ease;
            /* Enhanced transition */
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.header-sticky {
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid transparent;
            backdrop-filter: blur(10px);
        }

        header.header-sticky #mainmenu a {
            color: #333;
        }

        header.header-sticky #logo .logo-main {
            display: none;
        }

        header.header-sticky #logo .logo-scroll {
            display: block;
        }

        header.header-sticky .mobile-menu-btn {
            color: #333;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #logo img {
            height: 40px;
            width: auto;
            transition: 0.3s;
        }

        #logo .logo-scroll {
            display: none;
        }

        /* Hidden initially */

        #mainmenu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        #mainmenu li {
            position: relative;
        }

        #mainmenu a {
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            color: #fff;
            padding: 10px 0;
            letter-spacing: 0.5px;
        }

        /* Dropdown Simple */
        #mainmenu li ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 200px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
        }

        #mainmenu li:hover ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #mainmenu li ul li {
            padding: 0 20px;
        }

        #mainmenu li ul a {
            color: #333;
            display: block;
            font-size: 13px;
            text-transform: none;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }

        #mainmenu li ul li:last-child a {
            border-bottom: none;
        }

        .mobile-menu-btn {
            display: none;
            color: #fff;
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

        @media (max-width: 991px) {
            #mainmenu {
                display: none;
            }

            /* Mobile Menu Implementation needed */
            .mobile-menu-btn {
                display: block;
            }

            /* Mobile Overlay */
            .mobile-menu-overlay {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                width: 80%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.85);
                /* Frosted Glass Base */
                backdrop-filter: blur(10px);
                /* Frosted Glass Blur */
                -webkit-backdrop-filter: blur(10px);
                /* Safari support */
                z-index: 1001;
                padding: 40px;
                padding-bottom: 120px;
                /* Ensure bottom content is visible */
                transition: 0.4s;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                overflow-y: scroll;
                /* Force scrollbar */
                display: flex;
                flex-direction: column;
                -webkit-overflow-scrolling: touch;
                /* Smooth scroll iOS */
            }

            .mobile-menu-overlay.open {
                right: 0;
            }

            .mobile-menu-overlay a {
                color: #333;
                display: block;
                font-size: 18px;
                font-weight: 700;
                border-bottom: 1px solid #eee;
                padding: 15px 0;
            }
        }

        /* --- UTILITIES --- */
        .d-flex {
            display: flex;
        }

        .flex-column {
            flex-direction: column;
        }

        .align-items-center {
            align-items: center;
        }

        .justify-content-center {
            justify-content: center;
        }

        .justify-content-between {
            justify-content: space-between;
        }

        .text-center {
            text-align: center;
        }

        .text-end {
            text-align: right;
        }

        .text-start {
            text-align: left;
        }

        .w-100 {
            width: 100%;
        }

        .h-100 {
            height: 100%;
        }

        .mb-0 {
            margin-bottom: 0;
        }

        .mb-3 {
            margin-bottom: 1rem;
        }

        .mb-4 {
            margin-bottom: 1.5rem;
        }

        .p-2 {
            padding: 0.5rem;
        }

        .p-4 {
            padding: 1.5rem;
        }

        .py-4 {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        .px-3 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .rounded-1 {
            border-radius: 0.5rem;
        }

        .fw-bold {
            font-weight: 700;
        }

        .fs-12 {
            font-size: 12px;
        }

        .fs-14 {
            font-size: 14px;
        }

        .fs-18 {
            font-size: 18px;
        }

        .fs-20 {
            font-size: 20px;
        }

        .fs-24 {
            font-size: 24px;
        }

        .fs-40 {
            font-size: 40px;
        }

        .op-5 {
            opacity: 0.5;
        }

        .op-3 {
            opacity: 0.3;
        }

        .text-muted {
            color: #6c757d;
        }

        .text-white {
            color: #fff;
        }

        /* Shadows & Backgrounds */
        .shadow-sm {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .shadow-sm:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .bg-light {
            background-color: var(--light-bg);
        }

        .bg-color {
            background-color: var(--primary-color);
        }

        .bg-color-2 {
            background-color: var(--secondary-color);
        }

        .bg-color-3 {
            background-color: var(--tertiary-color);
        }

        /* Custom List Style from index.php */
        ol.ol-style-1 {
            list-style-type: none;
            counter-reset: ordered;
            margin-left: 20px;
            padding: 0;
            text-align: left;
        }

        /* --- DESKTOP DROPDOWN CSS --- */
        #mainmenu li {
            position: relative;
        }

        #mainmenu li ul.dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-radius: 4px;
            z-index: 999;
            transform: translateY(10px);
            border-top: 3px solid var(--primary-color);
        }

        #mainmenu li:hover ul.dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #mainmenu li ul.dropdown-menu li {
            margin: 0;
            display: block;
            margin-left: 0 !important;
            position: relative;
            /* For nested dropdown positioning */
        }

        #mainmenu li ul.dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Nested Dropdown (Level 3) */
        #mainmenu li ul.dropdown-menu li ul.submenu {
            position: absolute;
            left: 100%;
            top: 0;
            width: 200px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            list-style: none;
            padding: 10px 0;
            border-radius: 4px;
            border-left: 3px solid var(--primary-color);
        }

        #mainmenu li ul.dropdown-menu li:hover>ul.submenu {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Sub-submenu */
        .mobile-sub-submenu {
            display: none;
            padding-left: 20px;
            background: rgba(0, 0, 0, 0.05);
            border-left: 2px solid var(--primary-color);
        }

        #mainmenu li ul.dropdown-menu li:last-child a {
            border-bottom: none;
        }

        #mainmenu li ul.dropdown-menu li a:hover {
            color: var(--primary-color);
            background: #f9f9f9;
            padding-left: 25px;
            /* Slight movement effect */
        }

        ol.ol-style-1 li {
            font-weight: 500;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
        }

        ol.ol-style-1 li::before {
            background: var(--primary-color);
            border-radius: 50%;
            color: #ffffff;
            content: counter(ordered);
            counter-increment: ordered;
            display: inline-block;
            font-weight: 700;
            margin-left: -50px;
            margin-top: -5px;
            padding: 5px 0;
            position: absolute;
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 30px;
            /* Align vertical center */
        }

        ol.ol-style-1.color-2 li::before {
            background: var(--secondary-color);
        }

        /* FAQ Accordion Styles adapted from index.php */
        .accordion-section-title {
            color: #35404e;
            width: 100%;
            padding: 15px 0;
            cursor: pointer;
            font-family: var(--body-font);
            display: inline-block;
            font-size: 17px;
            transition: all linear 0.3s;
            text-decoration: none;
            font-weight: 600;
            overflow: hidden;
            border-bottom: solid 1px #dddddd;
            text-align: left;
            position: relative;
        }

        .accordion-section-title:after {
            content: "\25BC";
            float: right;
            color: var(--secondary-color);
            text-align: center;
            padding: 0 8px;
            font-size: 12px;
            width: 30px;
            transition: transform 0.3s;
        }

        .accordion-section-title.active:after {
            content: "\25B2";
            transform: rotate(180deg);
        }

        .accordion-section-title.active {
            margin-bottom: 0px;
            text-decoration: none;
            border-bottom: none;
        }

        .accordion-section-content {
            padding-top: 15px;
            padding-bottom: 20px;
            display: none;
            margin-bottom: 10px;
            text-align: left;
            color: var(--text-color);
            border-bottom: 1px solid #eee;
        }

        .accordion.secondary .accordion-section-content {
            border-bottom-color: var(--secondary-color);
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .m-2 {
            margin: 0.5rem;
        }

        .mx-2 {
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }

        .gap-2 {
            gap: 10px;
        }

        @media (max-width: 991px) {
            .mobile-spacing {
                margin-top: 50px;
            }
        }

        /* --- ANIMATIONS (CSS-only) --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 30px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .wow {
            opacity: 0;
        }

        /* JS triggers this */

        /* --- COMPONENTS --- */

        /* Hero Section */
        #section-hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: #fff;
            margin-top: 0;
            padding-top: 0;

        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.90) saturate(1.2);
            /* Brighter and more colorful */
        }

        .text-3d {
            text-shadow: 2px 2px 8px rgba(26, 46, 82, 0.5);
            /* Blue-ish shadow instead of black */
        }

        /* Buttons */
        .btn-main {
            background: linear-gradient(45deg, var(--primary-color), #900, var(--primary-color));
            background-size: 200% auto;
            border: none;
            color: #fff;
            transition: all 0.5s ease;
            font-size: 14px;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            /* text-transform: uppercase; */
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-main:hover {
            background-position: right center;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(227, 6, 19, 0.4);
            color: #fff;
        }

        .btn-main:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
        }

        /* Shine effect */
        .btn-main::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
            transform: skewX(-25deg);
            transition: none;
        }

        .btn-main:hover::after {
            animation: shine 0.75s;
        }

        @keyframes shine {
            100% {
                left: 200%;
            }
        }

        .btn-main-dark {
            background-color: #333;
            border: 2px solid #333;
            color: #fff;
        }

        .btn-main-dark:hover {
            background-color: #000;
            border-color: #000;
        }

        .btn-line {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
        }

        .btn-line:hover {
            background: #fff;
            color: #111;
            border-color: #fff;
        }

        /* Carousel Arrows */
        .owl-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-dark);
            /* font-size removed as we use svg */
            transition: 0.3s;
            opacity: 0.8;
            border: none;
        }

        .owl-nav-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .owl-nav-btn:hover {
            background: var(--primary-color);
            color: #fff;
            opacity: 1;
        }

        .owl-prev {
            left: -20px;
        }

        .owl-next {
            right: -20px;
        }

        /* Carousel Container */
        .carousel-wrap {
            position: relative;
        }

        .owl-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding-bottom: 30px;
            scrollbar-width: none;
            scroll-behavior: smooth;
        }

        .owl-carousel::-webkit-scrollbar {
            display: none;
        }

        .owl-carousel .item {
            flex: 0 0 100%;
            scroll-snap-align: center;
        }

        @media (min-width: 600px) {
            .owl-carousel .item {
                flex: 0 0 45%;
            }
        }

        @media (min-width: 992px) {
            .owl-carousel .item {
                flex: 0 0 32%;
            }
        }

        /* Footer */
        footer.footer-light {
            background: #f8f9fa;
            padding: 80px 0 0;
            color: #666;
            font-size: 15px;
        }

        /* Heading Fix: Using h3 for widget titles instead of h4 to maintain hierarchy from h2 */
        footer h3 {
            color: #333;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: #666;
        }

        footer ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .widget {
            margin-bottom: 30px;
        }

        .subfooter {
            background: #fff;
            border-top: 1px solid #eee;
            padding: 30px 0;
            margin-top: 50px;
        }

        .social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: #fff;
            color: #333;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            margin-right: 5px;
            transition: 0.3s;
        }

        .social-icons a svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
        }

        .id-color {
            color: var(--primary-color);
        }

        .icon-inline {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: -0.125em;
            fill: currentColor;
        }

        /* Marquee */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            background: #111;
            color: #fff;
            padding: 1.5rem 0;
        }

        /* Accordion */
        .accordion-section {
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        /* Heading hierarchy adjusted inside loops if needed */
        .accordion-section-title {
            padding: 15px 20px;
            cursor: pointer;
            background: #fff;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
        }

        .accordion-section-title.active {
            color: var(--primary-color);
            background: #fdfdfd;
        }

        .accordion-section-title::after {
            content: '+';
            font-size: 18px;
            color: #ccc;
        }

        .accordion-section-title.active::after {
            content: '-';
            color: var(--primary-color);
        }

        .accordion-section-content {
            display: none;
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .accordion-section-content.show {
            display: block;
            animation: fadeInUp 0.4s;
        }

        /* Form */
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
            font-family: inherit;
        }

        section {
            padding: 90px 0;
        }

        section.no-top {
            padding-top: 0;
        }

        section.no-bottom {
            padding-bottom: 0;
        }

        /* --- CONTACT PAGE STYLES --- */
        .contact-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            background: #ffffff;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: linear-gradient(to bottom, rgba(227, 6, 19, 0.03), transparent);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(227, 6, 19, 0.15);
            border-color: rgba(227, 6, 19, 0.1);
        }

        .contact-card:hover::before {
            height: 100%;
        }

        .icon-box {
            width: 90px;
            height: 90px;
            background: #fff;
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 36px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 25px rgba(227, 6, 19, 0.1);
            border: 1px solid rgba(227, 6, 19, 0.1);
        }

        .contact-card:hover .icon-box {
            background: var(--primary-color);
            color: #fff;
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 35px rgba(227, 6, 19, 0.4);
            border-color: transparent;
        }

        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .btn-text {
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .btn-text:hover {
            color: #b3000b;
            transform: translateX(5px);
        }

        /* WHATSAPP CARD STYLE */
        .whatsapp-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border-radius: 30px;
        }

        .whatsapp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2) !important;
            border-color: rgba(37, 211, 102, 0.3);
        }

        .whatsapp-card .icon-wrap {
            width: 50px;
            height: 50px;
            background: rgba(37, 211, 102, 0.1);
            color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .whatsapp-card:hover .icon-wrap {
            background: #25d366;
            color: #fff;
            transform: scale(1.1);
        }

        .whatsapp-card .arrow-wrap {
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .whatsapp-card:hover .arrow-wrap {
            opacity: 1;
            transform: translateX(0);
        }

        .pulse-animation {
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* MODERN INPUT STYLING */
        .contact-form-wrapper {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            padding: 50px !important;
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .input-wrapper {
            position: relative;
        }

        .custom-input {
            width: 100%;
            background: #f4f6f8;
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 18px 20px 18px 50px;
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
        }

        .custom-input:focus {
            background: #fff;
            border-color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(227, 6, 19, 0.1);
            outline: none;
        }

        .custom-input::placeholder {
            color: #aab;
            font-weight: 400;
        }

        .textarea {
            min-height: 150px;
            resize: none;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #99a;
            transition: all 0.3s ease;
        }

        .icon-textarea {
            top: 25px;
            transform: none;
        }

        .custom-input:focus+.input-icon {
            color: var(--primary-color);
        }

        /* Map Overlay */
        .map-overlay-info .bg-white {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
        }