        /* Reset default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Roboto', 'Segoe UI', sans-serif;
        }

        body {
            background: #f4f4f4;
            color: #333;
            line-height: 1.6;
            font-size: clamp(16px, 2.8vw, 18px);
        }

        /* Modal Styles */
        .open-modal {
            padding: 16px 30px;
            font-size: 20px;
            background: #6C63FF;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 20px auto;
            display: block;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .modal-box {
            background: white;
            border-radius: 14px;
            width: 95%;
            max-width: 600px;
            animation: fadeIn 0.4s ease;
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(90deg, #6C63FF, #3F51B5);
            padding: 20px;
            color: white;
        }

        .modal-header h2 {
            font-size: 28px;
            margin-bottom: 6px;
        }

        .modal-header p {
            font-size: 16px;
            opacity: 0.9;
        }

        .form-body {
            padding: 24px;
            max-height: 65vh;
            overflow-y: auto;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 6px;
            display: block;
            color: #444;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #6C63FF;
            outline: none;
        }

        .phone-wrapper {
            display: flex;
            gap: 10px;
        }

        .phone-wrapper select {
            width: 35%;
            font-size: 16px;
        }

        .phone-wrapper input {
            width: 65%;
        }

        .preview-image {
            display: none;
            max-width: 100%;
            max-height: 200px;
            margin-top: 10px;
            border-radius: 6px;
        }

        .modal-footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 24px;
            background: #f1f1f1;
            border-top: 1px solid #ddd;
        }

        .modal-footer button {
            flex: 1;
            margin: 0 5px;
            padding: 14px;
            font-size: 18px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        .submit-btn {
            background: linear-gradient(to right, #6C63FF, #3F51B5);
            color: white;
        }

        .close-btn {
            background: #eee;
            color: #333;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Top Bar */
        .top-bar {
            background-color: rgb(21, 68, 199);
            color: white;
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: clamp(14px, 2.8vw, 16px);
            flex-wrap: wrap;
        }

        .top-left i,
        .top-left span {
            margin-right: 8px;
        }

        .top-left a,
        .top-right a {
            color: white;
            margin-left: 10px;
            text-decoration: none;
            font-size: clamp(14px, 2.8vw, 16px);
        }

        .top-left a:hover,
        .top-right a:hover {
            text-decoration: underline;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Header */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding: 15px 5%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex-wrap: wrap;
            position: relative;
        }

        .logo img {
            height: clamp(50px, 10vw, 70px);
            width: auto;
        }

        .nav-menu {
            flex: 1;
            margin-left: 20px;
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: clamp(5px, 1vw, 10px);
            padding: 0;
            margin: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 10px;
            color: #000;
            font-weight: bold;
            text-decoration: none;
            font-size: clamp(16px, 2.8vw, 18px);
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ff5e3a;
        }

        .paynow a {
            display: inline-block;
            padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
            background-color: #ff5e3a;
            color: white;
            border-radius: 20px;
            font-weight: 500;
            font-size: clamp(14px, 2.2vw, 18px);
            text-decoration: none;
            transition: background-color 0.3s, transform 0.2s;
            white-space: nowrap;
        }

        .paynow a:hover {
            background-color: #e04e2a;
            color: white;
            transform: scale(1.05);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
            color: #000;
            padding: 5px 10px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: Historic Site;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            top: 100%;
            left: 0;
            z-index: 1000;
        }

        .dropdown-content a {
            padding: 4px 12px;
            color: #333;
            white-space: nowrap;
            display: block;
            font-size: clamp(18px, 2.8vw, 20px);
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #ff5e3a;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: linear-gradient(to bottom, #6b48ff, #4b2dc1);
            color: white;
            list-style: none;
            margin: 0;
        }

        .breadcrumbs li {
            margin-right: 10px;
        }

        .breadcrumbs li a {
            color: white;
            text-decoration: none;
            font-size: clamp(1.3rem, 2.8vw, 1.5rem);
            transition: text-decoration 0.3s;
        }

        .breadcrumbs li a:hover {
            text-decoration: underline;
        }

        .breadcrumbs li::after {
            content: "•";
            margin-left: 10px;
            color: #ff6347;
        }

        .breadcrumbs li:last-child::after {
            content: "";
        }

        /* Footer Section */
        footer {
            background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
            color: #fff;
            padding: 3rem 1.2rem 1.5rem;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            z-index: 1;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
            opacity: 0.15;
            z-index: 1;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-content .locations {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(6px);
        }

        .footer-content .locations p:first-child {
            font-weight: 700;
            font-size: clamp(1.6rem, 3.2vw, 1.8rem);
            margin-bottom: 0.8rem;
            color: #fff;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .footer-content .locations p:last-child {
            color: #e0e7ff;
            max-width: 1000px;
            margin: 0 auto;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
            font-weight: 400;
            line-height: 2;
        }

        .footer-section {
            margin-bottom: 1.5rem;
        }

        h4 {
            font-size: clamp(1.5rem, 3.2vw, 1.7rem);
            margin-bottom: 1.2rem;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.8rem;
        }

        h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #ff5e3a, #ff8c68);
            border-radius: 3px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 0.8rem;
        }

        footer ul li a {
            color: #e0e7ff;
            text-decoration: none;
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            transition: color 0.3s, transform 0.3s;
            font-weight: 400;
            display: inline-block;
            position: relative;
        }

        footer ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        footer ul li a:hover::before {
            width: 100%;
        }

        footer ul li a:hover {
            color: #ff5e3a;
            transform: translateX(8px);
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            color: #e0e7ff;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 400;
            transition: color 0.3s;
        }

        .contact-info p:hover {
            color: #ff5e3a;
        }

        .contact-info p i {
            color: #ff5e3a;
            font-size: clamp(1.6rem, 3.8vw, 2rem);
            transition: transform 0.3s;
        }

        .contact-info p:hover i {
            transform: scale(1.2);
        }

        .social-container {
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            text-align: center;
            margin-top: 1.5rem;
            transition: background 0.3s;
        }

        .social-title {
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: clamp(1.5rem, 3.2vw, 1.7rem);
            color: #fff;
            letter-spacing: 1.2px;
        }

        .Social-icons {
            display: flex;
            gap: 1.2rem;
            margin-top: 0.8rem;
            justify-content: center;
        }

        .Social-icons a {
            color: #e0e7ff;
            font-size: clamp(1.8rem, 3.8vw, 2rem);
            transition: color 0.3s, transform 0.3s;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .Social-icons a:hover {
            color: #fff;
            transform: scale(1.2);
            background: #ff5e3a;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            width: 100%;
            max-width: 1600px;
            text-align: center;
            padding: 1.5rem 0.75rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: #e0e7ff;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 400;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            position: relative;
        }

        .footer-bottom p {
            margin: 0;
            letter-spacing: 0.6px;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, #ff5e3a, #ff8c68);
            border-radius: 3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                font-size: clamp(13px, 2.5vw, 15px);
            }

            .top-left,
            .top-right {
                justify-content: center;
                width: 100%;
            }

            .top-left a,
            .top-right a {
                font-size: clamp(13px, 2.5vw, 15px);
            }

            .main-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px 5%;
            }

            .nav-menu {
                display: none;
                width: 100%;
                margin-left: 0;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-menu.active {
                display: block;
            }

            .nav-menu ul {
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                padding: 10px 15px;
                width: 100%;
                font-size: clamp(15px, 2.5vw, 17px);
            }

            .paynow a {
                width: calc(100% - 30px);
                margin: 10px 15px;
                text-align: center;
                padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
                font-size: clamp(13px, 2.2vw, 16px);
            }

            .hamburger {
                display: block;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                background-color: #f9f9f9;
                padding-left: 20px;
                min-width: 100%;
            }

            .dropdown-content a {
                padding: 4px 12px;
                font-size: clamp(17px, 2.5vw, 19px);
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.2rem;
                padding: 0 1.2rem;
            }

            .footer-content .locations {
                padding: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .footer-content .locations p:first-child {
                font-size: clamp(1.4rem, 3.2vw, 1.6rem);
                margin-bottom: 0.6rem;
            }

            .footer-content .locations p:last-child {
                font-size: clamp(1rem, 2.8vw, 1.2rem);
            }

            h4 {
                font-size: clamp(1.3rem, 3.2vw, 1.5rem);
                margin-bottom: 1rem;
            }

            footer ul li {
                margin-bottom: 0.5rem;
            }

            footer ul li a,
            .contact-info p {
                font-size: clamp(0.95rem, 2.8vw, 1.1rem);
            }

            .contact-info p {
                margin-bottom: 0.5rem;
            }

            .contact-info p i {
                font-size: clamp(1.6rem, 3.5vw, 1.8rem);
            }

            .social-container {
                padding: 1.5rem 0.8rem;
                margin-top: 1.5rem;
            }

            .social-title {
                font-size: clamp(1.3rem, 3.2vw, 1.5rem);
                margin-bottom: 0.5rem;
            }

            .Social-icons {
                gap: 0.9rem;
                margin-top: 0.5rem;
            }

            .Social-icons a {
                font-size: clamp(1.6rem, 3.5vw, 1.8rem);
                width: 40px;
                height: 40px;
            }

            .footer-bottom {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                padding: 1rem 0.5rem;
                margin-top: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .modal-box {
                border-radius: 0;
                width: 100%;
                height: 100%;
            }

            .modal-footer {
                flex-direction: column;
            }

            .modal-footer button {
                margin: 5px 0;
            }

            .logo img {
                height: 50px;
            }

            .top-bar {
                font-size: clamp(13px, 2.2vw, 14px);
                padding: 8px 3%;
            }

            .top-left i,
            .top-left span,
            .top-right a {
                margin-right: 5px;
                margin-left: 5px;
                font-size: clamp(13px, 2.2vw, 14px);
            }

            .paynow a {
                width: calc(100% - 20px);
                margin: 8px 10px;
                padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 15px);
                font-size: clamp(12px, 2.2vw, 14px);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 0.6rem;
                padding: 0 0.8rem;
            }

            .footer-content .locations {
                padding: 0.8rem;
                margin-bottom: 1rem;
            }

            .footer-content .locations p:first-child {
                font-size: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.4rem;
            }

            .footer-content .locations p:last-child {
                font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            }

            h4 {
                font-size: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.8rem;
            }

            footer ul li {
                margin-bottom: 0.4rem;
            }

            footer ul li a,
            .contact-info p {
                font-size: clamp(0.85rem, 2.2vw, 0.95rem);
            }

            .contact-info p {
                margin-bottom: 0.4rem;
            }

            .contact-info p i {
                font-size: clamp(1.4rem, 3.2vw, 1.6rem);
            }

            .social-container {
                padding: 0.8rem 0.4rem;
                margin-top: 0.8rem;
            }

            .social-title {
                font-size: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.4rem;
            }

            .Social-icons {
                gap: 0.6rem;
                margin-top: 0.4rem;
            }

            .Social-icons a {
                font-size: clamp(1.4rem, 3.2vw, 1.6rem);
                width: 36px;
                height: 36px;
            }

            .footer-bottom {
                font-size: clamp(0.8rem, 2vw, 0.9rem);
                padding: 0.6rem 0.3rem;
                margin-top: 0.8rem;
            }
        }