
        :root {
            --primary-color: #00aaff;
            --secondary-color: #ff3366;
            --dark-blue: #1e293b;
            --light-gray: #f8fafc;
            --text-gray: #64748b;
            --white: #ffffff;
            --accent-color: #3498db;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --danger-color: #e74c3c;
            --border-color: #e9ecef;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 25px 80px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-img {
            transform: scale(1.05); 
        }
        

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-menu li a.active {
            color: var(--primary-color);
        }

        .nav-menu li a.active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            background: transparent;
            border: none;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-blue);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: white;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: white;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu - Right Side Slide */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            padding-top: 100px;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
            padding: 0;
            width: 100%;
        }

        .mobile-menu ul li {
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateX(50px);
            animation: slideInMenu 0.5s ease-out forwards;
        }

        .mobile-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu.active ul li:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu.active ul li:nth-child(5) { animation-delay: 0.5s; }
        .mobile-menu.active ul li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInMenu {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mobile-menu ul li:last-child {
            border-bottom: none;
        }

        .mobile-menu ul li a {
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 20px 30px;
            position: relative;
        }

        .mobile-menu ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffd700;
            transform: translateX(-10px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            padding: 120px 0 100px;
            color: white;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: moveBackground 20s linear infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
        }

        @keyframes moveBackground {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-60px) translateY(-60px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Enhanced Contact Cards */
        .contact-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: var(--shadow-medium);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card:hover::after {
            transform: scale(1);
        }

        .contact-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            background: rgba(255, 255, 255, 0.95);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .contact-card:hover .contact-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        /* Enhanced Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: var(--shadow-medium);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            text-align: center;
            color: var(--dark-color);
            font-weight: 700;
        }

        /* Form styling */
        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-row {
            margin-bottom: 2rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.75rem;
            display: block;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 1.25rem 1.5rem;
            border: 2px solid var(--border-color);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: rgba(255, 255, 255, 0.9);
            font-family: inherit;
            position: relative;
            height: auto;
            min-height: 54px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15), 
                        0 10px 25px rgba(102, 126, 234, 0.1);
            outline: none;
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 1);
        }

        .form-control:hover {
            border-color: var(--primary-color);
            transform: translateY(-1px);
        }

        /* DROPDOWN SPECIFIC STYLING */
        .form-select {
            width: 100%;
            /*padding: 1.25rem 1.5rem;*/
            border: 2px solid var(--border-color);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: rgba(255, 255, 255, 0.9);
            font-family: inherit;
            height: 54px;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1.25rem;
            padding-right: 3rem;
        }

        /* FIXED: Dropdown placeholder color */
        .form-select option[value=""] {
            color: #6c757d;
        }

        .form-select:invalid {
            color: #6c757d;
        }

        .form-select:valid {
            color: #333;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15), 
                        0 10px 25px rgba(102, 126, 234, 0.1);
            outline: none;
            transform: translateY(-2px);
            background-color: rgba(255, 255, 255, 1);
        }

        .form-select:hover {
            border-color: var(--primary-color);
            transform: translateY(-1px);
        }

        /* Enhanced floating label */
        .form-floating {
            position: relative;
            margin-bottom: 2rem;
        }

        .form-floating .form-control {
            padding: 1.75rem 1.5rem 0.75rem 1.5rem;
            height: auto;
            min-height: 64px;
        }

        .form-floating label {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: var(--text-muted);
            transition: all 0.3s ease;
            pointer-events: none;
            font-size: 1rem;
            font-weight: 500;
            z-index: 2;
            background: transparent;
            padding: 0;
        }

        .form-floating .form-control:focus ~ label,
        .form-floating .form-control:not(:placeholder-shown) ~ label {
            transform: translateY(-1rem);
            font-size: 0.875rem;
            color: var(--primary-color);
            font-weight: 600;
            background: rgba(255, 255, 255, 0.9);
            padding: 0 0.5rem;
            margin-left: -0.25rem;
            border-radius: 4px;
        }

        /* Textarea specific styling */
        .form-control.textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.5;
        }

        .form-floating .form-control.textarea {
            padding: 1.75rem 1.5rem 0.75rem 1.5rem;
        }

        /* Submit button alignment */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
            min-width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 0 auto;
            align-self: center;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        .submit-btn:disabled {
            opacity: 0.8;
            cursor: not-allowed;
            transform: none;
        }

        /* Alert messages */
        .alert-custom {
            border-radius: 15px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            border: none;
            backdrop-filter: blur(10px);
            font-weight: 500;
            display: none;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .alert-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: currentColor;
        }

        .alert-success {
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(46, 204, 113, 0.15));
            color: var(--success-color);
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .alert-error {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(192, 57, 43, 0.15));
            color: var(--danger-color);
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .alert-custom.show {
            display: block;
            animation: slideInFromTop 0.5s ease-out;
        }

        /* Loading Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
        }

        /* Right side container alignment */
        .right-side-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            height: 100%;
        }

        /* Enhanced Map Container */
        .map-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .map-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .map-container {
            position: relative;
            height: 250px;
            width: 100%;
        }

        .map-frame {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .map-info {
            padding: 20px;
            text-align: center;
            background: white;
        }

        .map-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .map-title i {
            color: #e74c3c;
        }

        .map-location {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .map-actions {
            display: flex;
            justify-content: center;
        }

        .action-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
            text-decoration: none;
            color: white;
        }

        /* Enhanced Office Hours */
        .hours-card {
            background: linear-gradient(135deg, var(--dark-color), #34495e);
            color: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .hours-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 8s linear infinite;
        }

        .hours-card h4 {
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        /* Form validation */
        .form-control.is-valid {
            border-color: var(--success-color);
            box-shadow: 0 0 0 0.25rem rgba(39, 174, 96, 0.15);
        }

        .form-control.is-invalid {
            border-color: var(--danger-color);
            box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.15);
        }

        /* Enhanced Social Links */
        .social-link {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.15);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            color: white;
        }

        /* Enhanced FAQ Section */
        .faq-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        /* Progress Bar */
        #scrollProgress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 9999;
            transition: width 0.3s ease;
        }

        /* Footer Section */
        .footer-nexviyo-footer {
            background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
            color: #ffffff;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .footer-nexviyo-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            pointer-events: none;
        }

        .footer-nexviyo-footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' opacity='0.08'%3E%3C!-- North America dots --%3E%3Ccircle cx='120' cy='80' r='1.5'/%3E%3Ccircle cx='140' cy='85' r='1'/%3E%3Ccircle cx='160' cy='90' r='1'/%3E%3Ccircle cx='180' cy='95' r='1'/%3E%3Ccircle cx='200' cy='100' r='1.5'/%3E%3Ccircle cx='220' cy='105' r='1'/%3E%3Ccircle cx='240' cy='110' r='1'/%3E%3Ccircle cx='130' cy='100' r='1'/%3E%3Ccircle cx='150' cy='105' r='1'/%3E%3Ccircle cx='170' cy='110' r='1'/%3E%3Ccircle cx='190' cy='115' r='1'/%3E%3Ccircle cx='210' cy='120' r='1'/%3E%3Ccircle cx='125' cy='120' r='1'/%3E%3Ccircle cx='145' cy='125' r='1'/%3E%3Ccircle cx='165' cy='130' r='1'/%3E%3Ccircle cx='185' cy='135' r='1'/%3E%3C!-- South America dots --%3E%3Ccircle cx='180' cy='200' r='1'/%3E%3Ccircle cx='190' cy='210' r='1'/%3E%3Ccircle cx='200' cy='220' r='1'/%3E%3Ccircle cx='210' cy='230' r='1'/%3E%3Ccircle cx='220' cy='240' r='1.5'/%3E%3Ccircle cx='230' cy='250' r='1'/%3E%3Ccircle cx='240' cy='260' r='1'/%3E%3Ccircle cx='195' cy='230' r='1'/%3E%3Ccircle cx='205' cy='240' r='1'/%3E%3Ccircle cx='215' cy='250' r='1'/%3E%3Ccircle cx='225' cy='260' r='1'/%3E%3C!-- Europe dots --%3E%3Ccircle cx='420' cy='70' r='1'/%3E%3Ccircle cx='435' cy='75' r='1'/%3E%3Ccircle cx='450' cy='80' r='1.5'/%3E%3Ccircle cx='465' cy='85' r='1'/%3E%3Ccircle cx='480' cy='90' r='1'/%3E%3Ccircle cx='495' cy='95' r='1'/%3E%3Ccircle cx='430' cy='95' r='1'/%3E%3Ccircle cx='445' cy='100' r='1'/%3E%3Ccircle cx='460' cy='105' r='1'/%3E%3Ccircle cx='475' cy='110' r='1'/%3E%3C!-- Africa dots --%3E%3Ccircle cx='450' cy='130' r='1'/%3E%3Ccircle cx='460' cy='140' r='1'/%3E%3Ccircle cx='470' cy='150' r='1.5'/%3E%3Ccircle cx='480' cy='160' r='1'/%3E%3Ccircle cx='490' cy='170' r='1'/%3E%3Ccircle cx='500' cy='180' r='1'/%3E%3Ccircle cx='510' cy='190' r='1'/%3E%3Ccircle cx='520' cy='200' r='1'/%3E%3Ccircle cx='465' cy='170' r='1'/%3E%3Ccircle cx='475' cy='180' r='1'/%3E%3Ccircle cx='485' cy='190' r='1'/%3E%3Ccircle cx='495' cy='200' r='1'/%3E%3Ccircle cx='505' cy='210' r='1'/%3E%3C!-- Asia dots --%3E%3Ccircle cx='600' cy='60' r='1'/%3E%3Ccircle cx='620' cy='65' r='1'/%3E%3Ccircle cx='640' cy='70' r='1.5'/%3E%3Ccircle cx='660' cy='75' r='1'/%3E%3Ccircle cx='680' cy='80' r='1'/%3E%3Ccircle cx='700' cy='85' r='1'/%3E%3Ccircle cx='720' cy='90' r='1'/%3E%3Ccircle cx='740' cy='95' r='1'/%3E%3Ccircle cx='760' cy='100' r='1.5'/%3E%3Ccircle cx='610' cy='90' r='1'/%3E%3Ccircle cx='630' cy='95' r='1'/%3E%3Ccircle cx='650' cy='100' r='1'/%3E%3Ccircle cx='670' cy='105' r='1'/%3E%3Ccircle cx='690' cy='110' r='1'/%3E%3Ccircle cx='710' cy='115' r='1'/%3E%3Ccircle cx='730' cy='120' r='1'/%3E%3Ccircle cx='615' cy='120' r='1'/%3E%3Ccircle cx='635' cy='125' r='1'/%3E%3Ccircle cx='655' cy='130' r='1'/%3E%3Ccircle cx='675' cy='135' r='1'/%3E%3Ccircle cx='695' cy='140' r='1'/%3E%3C!-- Australia dots --%3E%3Ccircle cx='720' cy='240' r='1'/%3E%3Ccircle cx='735' cy='245' r='1'/%3E%3Ccircle cx='750' cy='250' r='1.5'/%3E%3Ccircle cx='765' cy='255' r='1'/%3E%3Ccircle cx='780' cy='260' r='1'/%3E%3Ccircle cx='730' cy='260' r='1'/%3E%3Ccircle cx='745' cy='265' r='1'/%3E%3Ccircle cx='760' cy='270' r='1'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            pointer-events: none;
        }

        .footer-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            color: #0a0f1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 22px;
            font-weight: bold;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: bold;
            color: #ffffff;
            line-height: 1.2;
        }

        .footer-company-tagline {
            color: #94a3b8;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .footer-contact-info p {
            margin-bottom: 8px;
        }

        .footer-phone.footer-primary {
            color: #ef4444;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-phone.footer-secondary {
            color: #ef4444;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-email {
            color: #94a3b8;
            font-size: 14px;
        }

        .footer-footer-links {
            list-style: none;
        }

        .footer-footer-links li {
            margin-bottom: 12px;
        }

        .footer-footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-footer-links a:hover {
            color: #ffffff;
        }

        .footer-newsletter-text {
            color: #94a3b8;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .footer-email-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: #ffffff;
            font-size: 14px;
        }

        .footer-email-input::placeholder {
            color: #64748b;
        }

        .footer-email-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(255, 255, 255, 0.15);
        }

        .footer-signup-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .footer-signup-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .footer-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: #64748b;
            font-size: 14px;
        }

        .footer-nexviyo-link {
            color: #ef4444;
            font-weight: 600;
        }

        .footer-social-links {
            display: flex;
            gap: 15px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 18px;
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-icon.twitter { background-color: #1DA1F2; }
        .social-icon.facebook { background-color: #3b5998; }
        .social-icon.instagram { background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5); }
        .social-icon.linkedin { background-color: #0077b5; }

        .social-icon:hover {
            transform: scale(1.1);
            opacity: 0.85;
        }

        /* Scroll to Top Button */
        .scroll-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-to-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }

        .scroll-to-top-btn:active {
            transform: translateY(-2px) scale(1.05);
        }

        /* FIXED: Contact Message Section */
        .glass-dark {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(44, 62, 80, 0.95));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .glass-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 60%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .glass-dark * {
            position: relative;
            z-index: 2;
        }

        /* Mobile Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }

            .footer-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 100px 0 80px;
            }

            .contact-form,
            .contact-card {
                padding: 2rem;
                margin-bottom: 2rem;
            }

            .map-container {
                min-height: 250px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .form-floating .form-control {
                min-height: 58px;
            }

            .right-side-container {
                gap: 1rem;
            }

            .footer-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-newsletter-form {
                flex-direction: column;
            }
            
            .footer-signup-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .contact-card,
            .contact-form {
                padding: 1.5rem;
            }

            .submit-btn {
                width: 100%;
                min-width: auto;
                padding: 1.25rem 2rem;
            }

            .form-floating .form-control {
                min-height: 54px;
                padding: 1.5rem 1rem 0.75rem 1rem;
            }

            .form-floating label {
                left: 1rem;
            }

            .hours-card {
                padding: 1.5rem;
            }

            .scroll-to-top-btn {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }

            .map-card {
                margin: 10px;
                border-radius: 15px;
            }
            
            .map-container {
                height: 200px;
            }
            
            .map-info {
                padding: 15px;
            }
            
            .map-title {
                font-size: 1.1rem;
            }
            
            .map-location {
                font-size: 0.85rem;
            }
        }
