     :root {
            --brown: #543019;
            --brown-light: #7a4a2d;
            --brown-lighter: #a06441;
            --brown-dark: #3d2412;
            --brown-darker: #27180c;
            --golden: #af8700;
            --golden-light: #d6a500;
            --golden-lighter: #ffc300;
            --golden-dark: #876900;
            --golden-darker: #5f4b00;
            --blue: #14385C;
            --blue-light: #3a6e8f;
            --blue-lighter: #6699b3;
            --blue-dark: #0c2c44;
            --blue-darker: #081c2d;
            --bookmark-color: #811e3d;
            --bookmark-color-dark: #5a152a;
            --white: #ffffff;
            --light-gray: #666666;
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Utility Classes */
        .page-item.active {
            background-color: var(--golden) !important;
            border-color: var(--golden) !important;
            color: #fff !important;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            border-radius: 0.375rem;
        }
        
        .link-golden {
            color: var(--golden);
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        
        .link-golden:hover {
            color: var(--golden-dark);
            text-decoration: underline;
        }
        
        .link-golden:focus {
            color: var(--golden-darker);
            outline: 2px solid var(--golden);
        }
        
        .link-golden:active {
            color: var(--brown);
        }
        
        .link-golden:visited {
            color: var(--brown-dark);
        }
        
        .link-brown {
            color: var(--brown);
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        
        .link-brown:hover {
            color: var(--brown-dark);
            text-decoration: underline;
        }
        
        .link-brown:focus {
            color: var(--brown-darker);
            outline: 2px solid var(--brown);
        }
        
        .link-brown:active {
            color: var(--golden);
        }
        
        .link-brown:visited {
            color: var(--golden-dark);
        }
        
        .text-brown { color: var(--brown); }
        .text-brown-light { color: var(--brown-light); }
        .text-brown-lighter { color: var(--brown-lighter); }
        .text-brown-dark { color: var(--brown-dark); }
        .text-brown-darker { color: var(--brown-darker); }
        .text-golden { color: var(--golden); }
        .text-golden-light { color: var(--golden-light); }
        .text-golden-lighter { color: var(--golden-lighter); }
        .text-golden-dark { color: var(--golden-dark); }
        .text-golden-darker { color: var(--golden-darker); }
        
        .btn-brown {
            background-color: var(--brown);
            color: white;
        }
        
        .btn-brown:hover {
            background-color: var(--brown-dark);
            color: white;
        }
        
        .btn-brown:focus {
            outline: 2px solid var(--brown-darker);
            color: white;
        }
        
        .btn-brown:active {
            background-color: var(--brown-darker);
            color: white;
        }
        
        .btn-blue {
            background-color: var(--blue);
            color: white;
        }
        
        .btn-blue:hover {
            background-color: var(--blue-dark);
            color: white;
        }
        
        .btn-blue:focus {
            outline: 2px solid var(--blue-darker);
            color: white;
        }
        
        .btn-blue:active {
            background-color: var(--blue-darker);
            color: white;
        }
        
        .btn-golden {
            background-color: var(--golden);
            color: white;
        }
        
        .btn-golden:hover {
            background-color: var(--golden-dark);
            color: white;
        }
        
        .btn-golden:focus {
            outline: 2px solid var(--golden-darker);
            color: white;
        }
        
        .btn-golden:active {
            background-color: var(--golden-darker);
            color: white;
        }
        
        .btn-outline-brown {
            background-color: transparent;
            border: 1px solid var(--brown);
            color: var(--brown);
        }
        
        .btn-outline-brown:hover {
            background-color: var(--brown);
            color: white;
        }
        
        .btn-outline-blue {
            background-color: transparent;
            border: 1px solid var(--blue);
            color: var(--blue);
        }
        
        .btn-outline-blue:hover {
            background-color: var(--blue);
            color: white;
        }
        
        .btn-outline-brown:focus {
            outline: 2px solid var(--brown-darker);
        }
        
        .btn-outline-brown:active {
            background-color: var(--brown);
            border-color: var(--brown);
            color: white;
        }
        
        .btn-outline-golden {
            background-color: transparent;
            border: 1px solid var(--golden);
            color: var(--golden);
        }
        
        .btn-outline-golden:hover {
            background-color: var(--golden);
            color: white;
        }
        
        .btn-outline-golden:focus {
            outline: 2px solid var(--golden-darker);
        }
        
        .btn-outline-golden:active {
            background-color: var(--golden);
            border-color: var(--golden);
            color: white;
        }
        
        .cta-button {
            background-color: var(--blue);
            color: #fff;
            border: none;
            transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
        }
        
        .cta-button:hover {
            background-color: var(--golden);
            color: #fff;
        }
        
        .navbar-glassy {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .navbar-glassy .nav-link {
            transition: color 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--brown-darker);
            font-size: 16px;
            overflow-x: hidden;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Top Banner */
        .top-banner {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: white;
            padding: 0.75rem 0;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .top-banner a {
            color: #60a5fa;
            text-decoration: underline;
            font-weight: 600;
        }
        
        /* Header */
        .main-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            max-width: 144px;
            object-fit: contain;
        }
        
        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-blue);
            letter-spacing: -0.025em;
        }
        
        .logo-subtitle {
            font-size: 0.875rem;
            color: var(--light-gray);
            font-weight: 500;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--light-gray);
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-item:hover {
            color: var(--brown);
            text-decoration: none;
        }
        
        .contact-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: #e5e7eb;
        }
        
        .login-btn.contact-item {
            position: relative;
        }
        
        .login-btn.contact-item::before {
            content: '';
            position: absolute;
            left: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: #e5e7eb;
        }
        
        .contact-item i {
            color: var(--brown);
            font-size: 1rem;
        }
        
        .login-btn {
            background: var(--blue);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 6px -1px rgba(20, 56, 92, 0.3);
        }
        
        .login-btn:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 12px -2px rgba(20, 56, 92, 0.4);
            color: white;
        }
        
        .login-btn:active {
            transform: translateY(0);
        }
        
        /* Mobile Login Button */
        .login-btn-mobile {
            background: var(--blue);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 3px 6px -1px rgba(20, 56, 92, 0.3);
            display: inline-block;
        }
        
        .login-btn-mobile:hover {
            background: var(--blue-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px -1px rgba(20, 56, 92, 0.4);
        }
        
        .login-btn-mobile:active {
            transform: translateY(0);
        }
        
        /* Mobile Contact Dropdown */
        .mobile-contact-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .mobile-contact-btn {
            background: var(--brown);
            color: white;
            border: none;
            padding: 0.6rem;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 3px 6px -1px rgba(139, 69, 19, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }
        
        .mobile-contact-btn:hover {
            background: var(--brown-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px -1px rgba(139, 69, 19, 0.4);
        }
        
        .mobile-contact-btn:active {
            transform: translateY(0);
        }
        
        .mobile-contact-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.15);
            padding: 0.5rem 0;
            min-width: 200px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        
        .mobile-contact-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--brown-darker);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            border-bottom: 1px solid #f3f4f6;
        }
        
        .mobile-contact-item:last-child {
            border-bottom: none;
        }
        
        .mobile-contact-item:hover {
            background: #f9fafb;
            color: var(--brown-dark);
        }
        
        .mobile-contact-item i {
            color: var(--brown);
            font-size: 1rem;
            width: 16px;
            text-align: center;
        }
        
        /* ============================================
           HERO SECTION - Complete Redesign
           ============================================ */
        
        /* Hero Section Container */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(
                rgba(39, 24, 12, 0.6),
                rgba(8, 28, 45, 0.5)
            ),
            url('/assets/images/bellagio-hotel.jpg') center/cover;
            display: flex;
            flex-direction: column;
            padding: 0;
            overflow: hidden;
        }
        
        /* Additional dark overlay for better contrast */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(39, 24, 12, 0.4) 0%,
                rgba(8, 28, 45, 0.5) 100%
            );
            z-index: 1;
            pointer-events: none;
        }
        
        /* Top Banner */
        .hero-top-banner {
            background: var(--brown-darker);
            padding: 0.75rem 0;
            width: 100%;
            z-index: 10;
        }
        
        .hero-banner-text {
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 400;
        }
        
        .hero-banner-text a {
            color: var(--white);
            text-decoration: underline;
        }
        
        .hero-company-btn {
            background: var(--white);
            color: var(--brown-darker);
            border: 1px solid var(--light-gray);
            border-radius: 0.5rem;
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .hero-company-btn:hover {
            background: rgba(255, 255, 255, 0.95);
        }
        
        .hero-company-btn i {
            font-size: 1rem;
        }
        
        /* Hero Content Wrapper */
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: center;
            padding: 3rem 0;
        }
        
        /* Ensure top banner is above overlay */
        .hero-top-banner {
            position: relative;
            z-index: 3;
        }
        
        /* ============================================
           LEFT COLUMN - Promotional Content
           ============================================ */
        
        .promo-content {
            color: var(--white);
            max-width: 100%;
            padding-right: 3rem;
        }
        
        /* Logo - Stamp image */
        .promo-logo {
            margin-bottom: 2rem;
        }
        
        .promo-logo-img {
            max-width: 120px;
            height: auto;
            object-fit: contain;
            display: block;
        }
        
        /* Title - Large white headline */
        .promo-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            margin-top: 0;
            letter-spacing: -0.02em;
            color: var(--white);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        /* Benefits Text */
        .promo-benefits {
            margin-bottom: 2.5rem;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            transition: var(--transition);
        }
        
        .benefits-list li:last-child {
            margin-bottom: 0;
        }
        
        .benefits-list li:hover {
            transform: translateX(5px);
        }
        
        .benefits-list li i {
            font-size: 1.5rem;
            color: var(--golden);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
            flex-shrink: 0;
            width: 30px;
            text-align: center;
        }
        
        .benefits-list li span {
            line-height: 1.5;
        }
        
        /* Help Button - Golden with shining animation */
        .help-button {
            background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
            color: var(--white);
            border: 2px solid var(--golden-light);
            border-radius: 0.75rem;
            padding: 1rem 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(175, 135, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .help-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.5),
                transparent
            );
            animation: shine 3s ease-in-out infinite;
        }
        
        .help-button:hover::before {
            animation-duration: 1.5s;
        }
        
        .help-button:hover {
            background: linear-gradient(135deg, var(--golden-light) 0%, var(--golden) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(175, 135, 0, 0.5);
            border-color: var(--golden-lighter);
        }
        
        .help-button:active {
            transform: translateY(0);
        }
        
        .help-button i {
            font-size: 1.5rem;
            color: var(--white);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            position: relative;
            z-index: 1;
        }
        
        .help-text {
            text-align: left;
            position: relative;
            z-index: 1;
        }
        
        /* Shining animation */
        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }
        
        .help-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .help-subtitle {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        /* ============================================
           RIGHT COLUMN - Registration Form
           ============================================ */
        
        .form-column {
            width: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
        }
        
        .form-overlay {
            /* Glassmorphism effect using :root white color with transparency */
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(255, 255, 255, 0.85) 100%
            );
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            /* Shadow using brown-darker color (#27180c = rgb(39, 24, 12)) */
            box-shadow: 0 8px 32px 0 rgba(39, 24, 12, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.4);
            width: 100%;
            max-width: 480px;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
        }
        
        .form-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Subtle gradient overlay using brown-darker and blue-darker from :root */
            /* brown-darker: #27180c = rgb(39, 24, 12), blue-darker: #081c2d = rgb(8, 28, 45) */
            background: linear-gradient(
                135deg,
                rgba(39, 24, 12, 0.02) 0%,
                rgba(8, 28, 45, 0.02) 100%
            );
            border-radius: var(--border-radius);
            pointer-events: none;
            z-index: -1;
        }
        
        .form-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            margin-top: 0;
        }
        
        .form-icon {
            width: 56px;
            height: 56px;
            background: var(--blue);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue);
            margin: 0;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--brown-darker);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-label i {
            color: var(--blue);
            font-size: 0.875rem;
        }
        
        .form-input {
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 0.5rem;
            padding: 0.875rem 1rem;
            font-size: 0.95rem;
            color: var(--brown-darker);
            background: var(--white);
            transition: var(--transition);
        }
        
        .form-input:focus {
            border-color: var(--blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(20, 56, 92, 0.1);
        }
        
        .form-input::placeholder {
            color: var(--light-gray);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .form-text {
            font-size: 0.75rem;
            color: var(--light-gray);
            margin-top: 0.25rem;
        }
        
        .btn-register {
            background: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            width: 100%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-register:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(20, 56, 92, 0.3);
            color: var(--white);
        }
        
        .btn-register:active {
                transform: translateY(0);
            }
        
        .btn-register i {
            font-size: 1.2rem;
        }
        
        .btn-register::before {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.6) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            z-index: -1;
        }
        
        .btn-register:hover::before {
            left: 150%;
        }
        
        .request-callback-link {
            color: var(--blue);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .request-callback-link:hover {
            color: var(--blue-dark);
            text-decoration: underline;
        }
        
        .request-callback-link i {
            font-size: 1rem;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--brown-darker);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-control {
            border: 1.5px solid #e5e7eb;
            border-radius: 0.875rem;
            padding: 1rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            position: relative;
        }
        
        .form-control:hover {
            border-color: var(--blue);
            box-shadow: 0 4px 12px rgba(20, 56, 92, 0.08);
        }
        
        .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(20, 56, 92, 0.1), 0 8px 24px rgba(20, 56, 92, 0.12);
            background: white;
            outline: none;
            transform: translateY(-1px);
        }
        
        .form-control::placeholder {
            color: #9ca3af;
            font-weight: 400;
            opacity: 0.7;
        }
        
        .form-text {
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 1.25rem;
        }
        
        .register-btn {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            color: white;
            border: none;
            padding: 1.125rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            font-size: 1rem;
            width: 100%;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(20, 56, 92, 0.25);
        }
        
        .register-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .register-btn:hover::before {
            left: 100%;
        }
        
        .register-btn:hover {
            background: linear-gradient(135deg, var(--blue-dark) 0%, var(--brown) 100%);
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 12px 40px rgba(20, 56, 92, 0.35);
        }
        
        .register-btn:active {
            transform: translateY(-1px) scale(0.99);
        }
        
        .register-btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }
        
        .register-btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Snackbar Styles */
        .snackbar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--brown-darker);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            min-width: 300px;
            max-width: 90vw;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            transition: transform 0.3s ease-in-out;
        }
        
        .snackbar.show {
            transform: translateX(-50%) translateY(0);
        }
        
        .snackbar.success {
            background: #28a745;
        }
        
        .snackbar.error {
            background: #dc3545;
        }
        
        .snackbar.warning {
            background: #ffc107;
            color: var(--brown-darker);
        }
        
        .snackbar.info {
            background: var(--blue);
        }
        
        .snackbar-icon {
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .snackbar-message {
            flex: 1;
        }
        
        .snackbar-close {
            background: none;
            border: none;
            color: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0;
            margin-left: 0.5rem;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        
        .snackbar-close:hover {
            opacity: 1;
        }
        
        @media (max-width: 576px) {
            .snackbar {
                bottom: 10px;
                left: 10px;
                right: 10px;
                transform: translateY(100px);
                min-width: auto;
                max-width: none;
            }
            
            .snackbar.show {
                transform: translateY(0);
            }
        }
        
        .callback-link {
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 0.75rem;
            border-radius: 0.75rem;
            position: relative;
        }
        
        .callback-link:hover {
            color: var(--blue-dark);
            background: rgba(20, 56, 92, 0.05);
            transform: translateY(-2px);
        }
        
        .callback-link i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        
        .callback-link:hover i {
            transform: rotate(15deg) scale(1.1);
        }
        
        /* Company Overview Section */
        .company-overview {
            background: white;
        }
        
        .company-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brown-darker);
            line-height: 1.3;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .stat-item {
            padding: 2rem 1rem;
            border-right: 1px solid #e5e7eb;
            transition: var(--transition);
        }
        
        .stat-item:hover {
            background: rgba(84, 48, 25, 0.02);
            transform: translateY(-4px);
        }
        
        .stat-item:last-child {
            border-right: none;
        }
        
        .stat-icon {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .stat-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover .stat-icon img {
            transform: scale(1.1);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--brown);
            margin-bottom: 0.5rem;
        }
        
                 .stat-label {
             font-size: 1.1rem;
             color: var(--light-gray);
             font-weight: 500;
             line-height: 1.4;
             max-width: 90%;
             margin: 0 auto;
         }
        
        /* Hotel Chains Carousel Section */
        .hotel-chains-section {
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
            background: transparent;
        }
        
        .hotel-chains-section .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brown-darker);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }
        
        .hotel-chains-section .text-muted {
            font-size: 1.1rem;
            color: #6b7280;
            font-weight: 500;
        }
        
        .hotel-chains-carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 3rem 0;
            margin-top: 2rem;
        }
        
        .hotel-chains-carousel {
            display: flex;
            animation: scrollHotels 35s linear infinite;
            gap: 1.5rem;
            align-items: center;
            will-change: transform;
        }
        
        @keyframes scrollHotels {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .hotel-chain-item {
            flex-shrink: 0;
            width: 240px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
        }
        
        .hotel-chain-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
        }
        
        .hotel-chain-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            margin: auto;
            display: block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hotel-chain-item:hover img {
            transform: scale(1.05);
        }
        
        @media (max-width: 768px) {
            .hotel-chains-section {
                padding: 3rem 0;
            }
            
            .hotel-chains-section .section-title {
                font-size: 2rem;
            }
            
            .hotel-chains-section .text-muted {
                font-size: 1rem;
            }
            
            .hotel-chain-item {
                width: 200px;
                height: 130px;
                padding: 0.5rem 0.75rem;
            }
            
            .hotel-chain-item:hover img {
                transform: scale(1.05);
            }
            
            .hotel-chains-carousel {
                gap: 1.25rem;
                animation-duration: 30s;
            }
            
            .hotel-chains-carousel-container {
                padding: 2.5rem 0;
                margin-top: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hotel-chains-section {
                padding: 2.5rem 0;
            }
            
            .hotel-chains-section .section-title {
                font-size: 1.75rem;
            }
            
            .hotel-chain-item {
                width: 170px;
                height: 110px;
                padding: 0.5rem 0.75rem;
                border-radius: 10px;
            }
            
            .hotel-chain-item:hover img {
                transform: scale(1.05);
            }
            
            .hotel-chains-carousel {
                gap: 1rem;
                animation-duration: 25s;
            }
            
            .hotel-chains-carousel-container {
                padding: 2rem 0;
                margin-top: 1rem;
            }
        }
        
        /* Pause animation on hover */
        .hotel-chains-carousel-container:hover .hotel-chains-carousel {
            animation-play-state: paused;
        }
        
        /* Promises Section */
        .promises-section {
            background: #f8fafc;
        }
        
        .promises-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brown-darker);
            margin-bottom: 3rem;
        }
        
        .promise-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }
        
        .promise-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brown);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .promise-content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--brown-darker);
            margin-bottom: 0.75rem;
        }
        
        .promise-content p {
            color: var(--light-gray);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Hotel Illustration */
        .illustration-container {
            position: relative;
            margin-right: -15px; /* Extend beyond container padding */
        }
        
        .illustration-container img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0.5rem;
        }
        
        /* There's More Section */
        .theres-more-section {
            background: white;
        }
        
        .theres-more-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brown-darker);
            margin-bottom: 3rem;
        }
        
        .collage-illustration {
            position: relative;
            margin-left: -15px; /* Extend beyond container padding */
        }
        
        .collage-illustration img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0.5rem;
        }
        
        .features-list {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .feature-item:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--brown);
            color: white;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--brown-darker);
            margin: 0;
        }
        
        .know-more-btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--brown);
            color: white;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .know-more-btn:hover {
            background: var(--brown-light);
             color: white;
             transform: translateY(-2px);
             box-shadow: 0 4px 8px rgba(0,0,0,0.2);
         }
        
        .section-title {
             font-size: 2.5rem;
             font-weight: 700;
             color: var(--brown-darker);
         }
         
         .accordion-item {
             border: 2px solid #e5e7eb;
             border-radius: 0.5rem;
             margin-bottom: 1rem;
             overflow: hidden;
         }
         
         .accordion-button {
             background: white;
             color: var(--brown-darker);
             font-weight: 600;
             font-size: 1.1rem;
             padding: 1.25rem;
             border: none;
             box-shadow: none;
         }
         
         .accordion-button:not(.collapsed) {
             background: var(--blue);
             color: white;
         }
         
         .accordion-button:focus {
             box-shadow: none;
             border-color: transparent;
         }
         
         .accordion-body {
             background: white;
             color: var(--light-gray);
             line-height: 1.6;
             padding: 1.5rem;
         }
         
       
        
        /* Testimonials Section */
         .testimonials-section {
             background: var(--brown);
             color: white;
         }
         
         .testimonials-title {
             font-size: 2rem;
             font-weight: 700;
             color: white;
             margin-bottom: 2rem;
             line-height: 1.3;
         }
         
         .testimonials-nav {
             display: flex;
             gap: 1rem;
         }
         
         .nav-btn {
             width: 40px;
             height: 40px;
             border: 2px solid white;
             background: rgba(255, 255, 255, 0.1);
             color: white;
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             cursor: pointer;
             transition: all 0.3s ease;
             backdrop-filter: blur(10px);
         }
         
         .nav-btn:hover {
             background: white;
             color: var(--brown);
             border-color: white;
             transform: scale(1.1);
         }
         
         .carousel-container {
             overflow: hidden;
             position: relative;
         }
         
         .carousel-track {
             display: flex;
             gap: 1.5rem;
             transition: transform 0.5s ease;
         }
         
         .testimonial-card {
             min-width: calc(33.333% - 1rem);
             background: white;
             border-radius: 1rem;
             padding: 2rem;
             box-shadow: 0 4px 12px rgba(0,0,0,0.15);
             display: flex;
             flex-direction: column;
             justify-content: space-between;
         }
         
         .testimonial-quote {
             color: var(--brown-darker);
             font-size: 1rem;
             line-height: 1.6;
             margin-bottom: 1.5rem;
         }
         
         .testimonial-author {
             display: flex;
             align-items: center;
             gap: 1rem;
         }
         
         .testimonial-author i {
             font-size: 2.5rem;
             color: var(--brown);
         }
         
         .testimonial-author h5 {
             font-size: 1.1rem;
             font-weight: 800;
             color: var(--brown-darker);
             margin: 0 0 0.25rem 0;
         }
         
         .testimonial-author p {
             font-size: 0.9rem;
             color: var(--brown);
             margin: 0;
         }
         
         /* Recognised by Section */
        .recognised-section {
            background: white;
        }
        
        .certification-logo {
            padding: 1.5rem;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .certification-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .certification-logo img {
            max-height: 80px;
            width: auto;
            object-fit: contain;
        }
        
        /* Footer Section */
         .footer-section {
             background: #f8fafc;
             border-top: 1px solid #e5e7eb;
             padding: 3rem 0 2rem;
         }
         
         .footer-top {
             border-bottom: 1px solid #e5e7eb;
             padding-bottom: 2rem;
             margin-bottom: 2rem;
         }
         
         .footer-divider {
             width: 1px;
             height: 100px;
             background: #d1d5db;
         }
         
         .footer-heading {
             font-size: 1rem;
             font-weight: 700;
             color: var(--brown-darker);
             margin-bottom: 1rem;
             text-transform: uppercase;
             letter-spacing: 0.05em;
         }
         
         .footer-links {
             list-style: none;
             padding: 0;
             margin: 0;
         }
         
         .footer-links li {
             margin-bottom: 0.75rem;
         }
         
         .footer-links a {
             color: var(--light-gray);
             text-decoration: none;
             font-size: 0.95rem;
             transition: color 0.3s ease;
         }
         
         .footer-links a:hover {
             color: var(--blue);
         }
         
         .footer-contact {
             text-align: center;
             padding-bottom: 2rem;
             border-bottom: 1px solid #e5e7eb;
             margin-bottom: 2rem;
         }
         
         .footer-contact p {
             color: #6b7280;
             font-size: 0.95rem;
             margin: 0;
         }
         
         .footer-contact a {
             color: var(--blue);
             text-decoration: none;
             font-weight: 600;
         }
         
         .footer-contact a:hover {
             text-decoration: underline;
         }
         
         .social-icons {
             display: flex;
             gap: 1rem;
         }
         
         .social-icon {
             width: 40px;
             height: 40px;
             border: 1px solid #d1d5db;
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             color: var(--brown);
             text-decoration: none;
             transition: all 0.3s ease;
         }
         
         .social-icon:hover {
             background: var(--blue);
             color: white;
             border-color: var(--blue);
         }
         
         .footer-logo {
             text-align: center;
         }
         
        .footer-logo-img {
            height: 50px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
        }
         
         .copyright {
             color: var(--light-gray);
             font-size: 0.9rem;
             margin: 0;
         }
         
         /* Responsive Design */
        @media (max-width: 1200px) {
            .form-overlay {
                max-width: 520px;
                padding: 2.5rem;
                min-height: 540px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-section {
                min-height: auto;
            }
            
            .hero-content {
                padding: 2rem 0;
            }
            
            .hero-content .row {
                flex-direction: column;
            }
            
            .promo-content {
                padding-right: 0;
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .promo-logo {
                margin: 0 auto 2rem;
            }
            
            .promo-title {
                font-size: 1.75rem;
                line-height: 1.3;
            }
            
            .benefits-list li {
                font-size: 1rem;
            }
            
            .form-column {
                justify-content: center !important;
            }
            
            .form-overlay {
                max-width: 100%;
                margin: 0 auto;
                padding: 2rem;
            }
            
            .hero-top-banner .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .hero-banner-text {
                font-size: 0.85rem;
            }
            
            .hero-company-btn {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-top-banner {
                padding: 0.5rem 0;
            }
            
            .hero-banner-text {
                font-size: 0.75rem;
            }
            
            .hero-company-btn {
                padding: 0.35rem 0.75rem;
                font-size: 0.75rem;
            }
            
            .hero-company-btn i {
                display: none;
            }
            
            .promo-title {
                font-size: 1.5rem;
            }
            
            .benefits-list li {
                font-size: 0.95rem;
            }
            
            .benefits-list li i {
                font-size: 1.3rem;
            }
            
            .promo-logo-img {
                max-width: 100px;
            }

            .form-overlay {
                padding: 1.5rem;
            }

            .form-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-header {
                padding: 0.75rem 0;
            }
            
            .logo-img {
                height: 40px;
            }
            
            .logo-subtitle {
                font-size: 0.75rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .company-title {
                font-size: 1.5rem;
            }
            
            .stat-item {
                padding: 1.5rem 0.5rem;
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
                margin-bottom: 1rem;
            }
            
            .stat-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            .stat-icon img {
                width: 60px;
                height: 60px;
            }
            
                         .stat-number {
                 font-size: 2.5rem;
             }
             
             .stat-label {
                 font-size: 1rem;
                 max-width: 100%;
             }
            
            .promises-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .promise-item {
                margin-bottom: 2rem;
            }
            
            .promise-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
                margin-right: 1rem;
            }
            
            .promise-content h4 {
                font-size: 1.25rem;
            }
            
            .illustration-container {
                margin-right: 0; /* Reset margin on mobile */
            }
            
            .collage-illustration {
                margin-left: 0; /* Reset margin on mobile */
            }
            
            .gst-illustration {
                margin-right: 0; /* Reset margin on mobile */
            }
            
            .theres-more-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .feature-item {
                padding: 1rem 0;
            }
            
            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
                margin-right: 1rem;
            }
            
            .feature-content h4 {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .accordion-button {
                font-size: 1rem;
                padding: 1rem;
            }
            
            .accordion-body {
                padding: 1.25rem;
            }
            
            .testimonials-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
             
             .testimonial-card {
                 min-width: calc(50% - 0.75rem);
             }
             
             .testimonial-quote {
                 font-size: 0.95rem;
             }
             
             .contact-info {
                flex-direction: column;
                gap: 0.75rem;
                align-items: flex-end;
            }
            
            .contact-item {
                font-size: 0.85rem;
            }
            
            .hero-section {
                padding: 0.5rem 0 1.5rem 0;
                min-height: auto;
            }
            
            .hero-content {
                padding-top: 0.5rem;
            }
            
            .promo-content {
                text-align: center;
                padding: 0 1rem;
            }
            
            .promo-title {
                font-size: 1.5rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
            
            .promo-logo {
                margin-bottom: 1.5rem;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .promo-logo-img {
                max-width: 120px;
                height: auto;
            }
            
            .promo-features {
                margin-bottom: 1.5rem;
            }
            
            .promo-features li {
                font-size: 0.9rem;
                margin-bottom: 0.75rem;
            }
            
            .help-button {
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }
            
            .promo-features li {
                font-size: 1rem;
                margin-bottom: 0.5rem;
                color: white;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }
            
            .promo-features i {
                font-size: 1.2rem;
                margin-right: 0.75rem;
                color: var(--golden);
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
            }
            
            .help-button {
                padding: 1.25rem 2rem;
                font-size: 1rem;
                width: 100%;
                text-align: center;
            }
            
            .help-button i {
                font-size: 1.25rem;
            }
            
            .help-subtitle {
                font-size: 0.75em;
            }
            
            .top-banner {
                padding: 0.5rem 0;
                font-size: 0.85rem;
            }
            
            .form-overlay {
                padding: 1.5rem;
                margin: 1.5rem auto;
                width: calc(100% - 1.5rem);
                max-width: 500px;
                min-height: auto;
            }
            
            /* Mobile container spacing */
            .hero-section .container {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
            
            .form-title {
                font-size: 1.5rem;
            }
            
            .form-icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }
            
            /* Tablet Modal Margins */
            .modal-dialog {
                margin: 1.5rem;
                margin-bottom: 2.5rem;
                max-width: calc(100% - 3rem);
                max-height: calc(100vh - 3rem);
            }
            
            .modal-content {
                max-height: calc(100vh - 3rem);
            }
            
            .modal-body-scrollable {
                max-height: calc(100vh - 280px);
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 0.5rem 0 1rem 0;
            }
            
            .hero-content {
                padding-top: 0.5rem;
            }
            
            .promo-content {
                text-align: center;
                padding: 0 0.5rem;
            }
            
            .promo-title {
                font-size: 1.25rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }
            
            .promo-logo {
                margin-bottom: 1rem;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .promo-logo-img {
                max-width: 100px;
                height: auto;
            }
            
            .promo-features {
                margin-bottom: 1rem;
            }
            
            .promo-features li {
                font-size: 0.85rem;
                margin-bottom: 0.5rem;
            }
            
            .help-button {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }
            
            .help-button i {
                font-size: 1.1rem;
            }
            
            .help-subtitle {
                font-size: 0.7em;
            }
            
            /* Mobile Modal Margins */
            .modal-dialog {
                margin: 1rem;
                margin-bottom: 2rem;
                max-width: calc(100% - 2rem);
                max-height: calc(100vh - 2rem);
            }
            
            .modal-content {
                max-height: calc(100vh - 2rem);
                border-radius: 1rem;
            }
            
            .modal-body-scrollable {
                max-height: calc(100vh - 250px);
                padding: 1.5rem 1rem;
            }
            
            .form-overlay {
                padding: 1rem;
                margin: 1rem auto;
                width: calc(100% - 1rem);
                max-width: 400px;
                min-height: auto;
            }
            
            /* Small mobile container spacing */
            .hero-section .container {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }
            
            .form-header {
                margin-bottom: 1.5rem;
            }
            
            .form-title {
                font-size: 1.25rem;
            }
            
            .form-group {
                margin-bottom: 1rem;
            }
            
            .form-control {
                padding: 0.75rem 1rem;
            }
            
            /* Mobile form improvements */
            .form-group {
                margin-bottom: 1rem;
            }
            
            .form-label {
                font-size: 0.85rem;
                margin-bottom: 0.5rem;
            }
            
            /* Stack form columns on mobile */
            .row .col-md-6 {
                margin-bottom: 1rem;
            }
            
                         .register-btn {
                 padding: 1rem;
                 font-size: 1rem;
             }
             
             .testimonial-card {
                 min-width: 100%;
             }
             
             .certification-logo {
                height: 100px;
                padding: 1rem;
            }
            
            .certification-logo img {
                max-height: 60px;
            }
            
            .footer-section {
                 padding: 2rem 0 1.5rem;
             }
             
             .footer-top {
                 padding-bottom: 1.5rem;
                 margin-bottom: 1.5rem;
             }
             
             .footer-heading {
                 font-size: 0.9rem;
             }
             
             .footer-links {
                 font-size: 0.85rem;
             }
             
             .social-icon {
                 width: 35px;
                 height: 35px;
                 font-size: 0.9rem;
             }
             
             .footer-logo-img {
                 height: 40px;
             }
             
             .copyright {
                 font-size: 0.85rem;
             }
         }
         
         /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Image loading improvements */
        img {
            transition: opacity 0.3s ease;
        }
        
        img[loading="lazy"] {
            opacity: 1;
        }
        
        img.loaded {
            opacity: 1;
        }
        
        /* Fallback for broken images */
        img:not([src]) {
            background: #f0f0f0;
            border: 1px solid #ddd;
        }
        
        /* Professional spacing */
        section {
            padding: 5rem 0;
        }
        
        /* Hover effects for interactive elements */
        .promise-item,
        .feature-item,
        .testimonial-card {
            transition: var(--transition);
        }
        
        .promise-item:hover,
        .feature-item:hover {
            transform: translateX(8px);
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px -4px rgba(0,0,0,0.2);
        }
        
        /* Professional shadows */
        .form-overlay,
        .features-list {
            box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.08);
        }
        
        /* Modal styling */
        .modal-content {
            border-radius: var(--border-radius);
            border: none;
            box-shadow: var(--shadow);
        }
        
        .modal-header {
            border-bottom: 1px solid #e5e7eb;
            padding: 1.5rem;
        }
        
        .modal-title {
            font-weight: 700;
            color: var(--brown-darker);
            font-size: 1.25rem;
        }
        
        .modal-body-scrollable {
            max-height: calc(100vh - 200px);
            overflow-y: auto;
            padding: 2rem 1.5rem;
        }
        
        /* Ensure modal fits in viewport */
        .modal-dialog {
            max-height: calc(100vh - 2rem);
            margin: 1rem auto;
        }
        
        .modal-content {
            max-height: calc(100vh - 2rem);
            display: flex;
            flex-direction: column;
        }
        
        .modal-body {
            flex: 1;
            overflow-y: auto;
        }
        
        /* Global Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--blue);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--blue-dark);
        }
        
        /* Firefox scrollbar styling */
        html {
            scrollbar-width: thin;
            scrollbar-color: var(--blue) #f1f1f1;
        }
        
        .modal-body-scrollable::-webkit-scrollbar {
            width: 6px;
        }
        
        .modal-body-scrollable::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .modal-body-scrollable::-webkit-scrollbar-thumb {
            background: var(--blue);
            border-radius: 3px;
        }
        
        .modal-body-scrollable::-webkit-scrollbar-thumb:hover {
            background: var(--blue-dark);
        }
        
        /* Fixed Bottom Corporate Signup Bar */
        .fixed-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 0;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
            display: none; /* Hidden by default, shown only on mobile/tablet */
        }
        
        .fixed-bottom-bar.show {
            transform: translateY(0);
        }
        
        .fixed-bottom-bar h6 {
            color: var(--brown-darker);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }
        
        .fixed-bottom-bar small {
            font-size: 0.75rem;
            color: var(--light-gray);
            line-height: 1.3;
            display: block;
        }
        
        .fixed-bottom-bar .btn-primary {
            background: var(--blue);
            border-color: var(--blue);
            font-size: 0.8rem;
            padding: 0.5rem 0.875rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            white-space: nowrap;
        }
        
        .fixed-bottom-bar .btn-primary:hover {
            background: var(--blue-dark);
            border-color: var(--blue-dark);
        }
        
        .fixed-bottom-bar .btn-primary i {
            font-size: 0.9rem;
        }
        
        /* Show only on tablet and mobile */
        @media (max-width: 992px) {
            .fixed-bottom-bar {
                display: block;
            }
        }
        
        /* Mobile optimizations */
        @media (max-width: 768px) {
            .fixed-bottom-bar {
                padding: 0.625rem 0;
            }
            
            .fixed-bottom-bar h6 {
                font-size: 0.8rem;
                margin-bottom: 0.2rem;
            }
            
            .fixed-bottom-bar small {
                font-size: 0.7rem;
            }
            
            .fixed-bottom-bar .btn-primary {
                font-size: 0.75rem;
                padding: 0.45rem 0.75rem;
            }
            
            .fixed-bottom-bar .btn-primary i {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 576px) {
            .fixed-bottom-bar {
                padding: 0.5rem 0;
            }
            
            .fixed-bottom-bar h6 {
                font-size: 0.75rem;
                margin-bottom: 0.15rem;
            }
            
            .fixed-bottom-bar small {
                font-size: 0.65rem;
            }
            
            .fixed-bottom-bar .btn-primary {
                font-size: 0.7rem;
                padding: 0.4rem 0.65rem;
            }
            
            .fixed-bottom-bar .btn-primary i {
                font-size: 0.8rem;
                margin-right: 0.25rem !important;
            }
            
            .fixed-bottom-bar .row {
                align-items: center;
            }
            
            .fixed-bottom-bar .col-8 {
                padding-right: 0.5rem;
            }
            
            .fixed-bottom-bar .col-4 {
                padding-left: 0.5rem;
            }
        }
        
        .modal-footer {
            border-top: 1px solid #e5e7eb;
            padding: 1.5rem;
        }
        
        .btn-primary {
            background: var(--blue);
            border-color: var(--blue);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
        }
        
        .btn-primary:hover {
            background: var(--blue-dark);
            border-color: var(--blue-dark);
            color: white;
        }
        
        .btn-secondary {
            border-radius: var(--border-radius);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
        }
        
        /* Award Banner Section */
        .award-banner-section {
            padding: 0;
            margin: 0;
        }
        
        .award-banner-img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }