
        /* ===== CSS VARIABLES ===== */
        :root {
            --primary: #2E7D32;
            --primary-light: #4CAF50;
            --primary-dark: #1B5E20;
            --accent: #E53935;
            --accent-light: #EF5350;
            --accent-dark: #C62828;
            --gold: #FF9800;
            --sage: #E8F5E9;
            --sage-dark: #C8E6C9;
            --cream: #FFF8F0;
            --text-dark: #1A1A2E;
            --text-medium: #4A4A5A;
            --text-light: #7A7A8A;
            --bg-light: #FAFBFC;
            --bg-white: #FFFFFF;
            --border-light: #E8ECF0;
            --shadow-sm: 0 2px 8px rgba(46, 125, 50, 0.08);
            --shadow-md: 0 8px 30px rgba(46, 125, 50, 0.12);
            --shadow-lg: 0 20px 60px rgba(46, 125, 50, 0.14);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--bg-light);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
            animation: gradientShift 8s ease infinite;
            background-size: 200% 100%;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .top-bar-left a {
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-left a:hover {
            color: var(--accent-light);
            transform: translateX(4px);
        }

        .top-bar-right {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .top-bar-right a {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-weight: 400;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .top-bar-right a:hover {
            color: var(--gold);
        }

        .top-bar-right i {
            font-size: 12px;
            color: var(--gold);
        }

        /* ===== HEADER / NAV ===== */
        .header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
            padding: 8px 0;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 52px;
            transition: var(--transition);
        }

        .logo:hover img {
            transform: scale(1.02);
        }

        .nav-main {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-main a {
            color: var(--text-medium);
            font-size: 14px;
            font-weight: 500;
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }

        .nav-main a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-main a:hover {
            color: var(--primary);
        }

        .nav-main a:hover::after {
            width: 24px;
        }

        .nav-main .btn-employers {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(232, 106, 93, 0.3);
            transition: var(--transition);
        }

        .nav-main .btn-employers::after {
            display: none;
        }

        .nav-main .btn-employers:hover {
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 106, 93, 0.4);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
            padding: 100px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 620px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(232, 106, 93, 0.08) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 60%;
            height: 40%;
            background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
            color: #fff;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .hero-badge i {
            font-size: 14px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 12px;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.5px;
        }

        .hero-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .hero-content h2 span {
            color: var(--gold);
        }

        .hero-content p {
            font-size: 17px;
            margin-bottom: 36px;
            opacity: 0.85;
            line-height: 1.8;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-job-seekers, .btn-employers-hero {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1.5px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-job-seekers {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            box-shadow: 0 8px 25px rgba(232, 106, 93, 0.35);
        }

        .btn-job-seekers:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(232, 106, 93, 0.45);
        }

        .btn-employers-hero {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-employers-hero:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 106, 93, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .hero-image img {
            max-width: 480px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .number {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--gold);
        }

        .hero-stat .label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 120px 0;
            background: var(--bg-white);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--cream);
            border-radius: 0 0 0 var(--radius-xl);
        }

        .about-section .container {
            display: flex;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-content {
            flex: 1;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
        }

        .section-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .about-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 28px;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-content a.cta-link {
            color: var(--accent);
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .about-content a.cta-link:hover {
            border-bottom-color: var(--accent);
        }

        .about-image {
            flex: 0 0 420px;
            position: relative;
        }

        .about-image img {
            border-radius: var(--radius-lg);
            width: 100%;
            height: 480px;
            object-fit: cover;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(46, 125, 50, 0.15);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border: 3px solid var(--gold);
            border-radius: var(--radius-md);
            opacity: 0.5;
        }

        /* ===== WORKPLACE SOLUTIONS ===== */
        .workplace-section {
            padding: 100px 0;
            background: var(--bg-light);
            text-align: center;
            position: relative;
        }

        .workplace-section .section-tag {
            display: flex;
            justify-content: center;
        }

        .workplace-section .section-tag::before {
            display: none;
        }

        .workplace-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .workplace-section > .container > p {
            font-size: 17px;
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 960px;
            margin: 0 auto;
        }

        .industry-item {
            padding: 40px 28px;
            text-align: center;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .industry-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .industry-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .industry-item:hover::before {
            transform: scaleX(1);
        }

        .industry-icon {
            font-size: 44px;
            color: var(--primary);
            margin-bottom: 16px;
            transition: var(--transition);
        }

        .industry-item:hover .industry-icon {
            color: var(--accent);
            transform: scale(1.1);
        }

        .industry-item h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* ===== FLEXIBLE SOLUTIONS ===== */
        .flexible-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 100px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .flexible-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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .flexible-section .container {
            display: flex;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .flexible-image {
            flex: 1;
            position: relative;
        }

        .flexible-image::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 200px;
            height: 200px;
            border: 3px solid var(--gold);
            border-radius: var(--radius-lg);
            opacity: 0.3;
        }

        .flexible-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 1;
        }

        .flexible-content {
            flex: 1;
        }

        .flexible-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 24px;
            color: #fff;
            line-height: 1.2;
        }

        .flexible-content p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.85;
            margin-bottom: 18px;
        }

        .flexible-content a {
            color: var(--gold);
            font-weight: 600;
            transition: var(--transition);
        }

        .flexible-content a:hover {
            color: var(--accent-light);
        }

        .flexible-content .directions-link {
            color: #fff;
            text-decoration: underline;
            font-size: 14px;
            opacity: 0.7;
        }

        .flexible-content .directions-link:hover {
            opacity: 1;
        }

        .flexible-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 30px;
        }

        .flexible-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .flexible-feature i {
            color: var(--gold);
            font-size: 16px;
        }

        /* ===== GUARANTEED SATISFACTION ===== */
        .guaranteed-section {
            padding: 100px 0;
            background: var(--sage);
            position: relative;
            overflow: hidden;
        }

        .guaranteed-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--sage-dark) 0%, transparent 70%);
            border-radius: 50%;
        }

        .guaranteed-section .container {
            display: flex;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .guaranteed-content {
            flex: 1;
        }

        .guaranteed-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .guaranteed-content p {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.8;
        }

        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-white);
            padding: 12px 24px;
            border-radius: 50px;
            margin-top: 24px;
            box-shadow: var(--shadow-sm);
        }

        .guarantee-badge i {
            color: var(--gold);
            font-size: 20px;
        }

        .guarantee-badge span {
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
        }

        .guaranteed-image {
            flex: 0 0 420px;
            position: relative;
        }

        .guaranteed-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        /* ===== JOB SEEKERS / TEMPORARY ===== */
        .temporary-section {
            position: relative;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 100px 0;
            color: #fff;
            overflow: hidden;
        }

        .temporary-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(232, 106, 93, 0.1) 0%, transparent 50%);
        }

        .temporary-content {
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .temporary-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .temporary-content p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* ===== RATES SECTION ===== */
        .rates-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .rates-section .container {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .rates-left {
            flex: 1;
        }

        .rates-left h2 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.25;
        }

        .rates-left p {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .rates-right {
            flex: 1;
            background: linear-gradient(135deg, var(--cream) 0%, var(--bg-white) 100%);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .rates-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .rates-right h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rates-right h3 i {
            color: var(--accent);
            font-size: 12px;
        }

        .rates-right p {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .rates-right a {
            color: var(--accent);
            font-weight: 600;
            transition: var(--transition);
        }

        .rates-right a:hover {
            color: var(--accent-dark);
        }

        /* ===== INDUSTRIES WE SERVE ===== */
        .industries-serve-section {
            padding: 100px 0;
            background: var(--bg-light);
            text-align: center;
        }

        .industries-serve-section .section-tag {
            display: flex;
            justify-content: center;
        }

        .industries-serve-section .section-tag::before {
            display: none;
        }

        .industries-serve-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 50px;
        }

        .industries-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .industry-card {
            background: var(--bg-white);
            padding: 36px 28px;
            border-radius: var(--radius-md);
            text-align: left;
            transition: var(--transition);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .industry-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .industry-card:hover::after {
            transform: scaleX(1);
        }

        .industry-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .industry-card p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .industry-card a {
            color: var(--accent);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .industry-card a:hover {
            color: var(--accent-dark);
            gap: 10px;
        }

        .industry-card a i {
            font-size: 11px;
            transition: var(--transition);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 100px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(232, 106, 93, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
        }

        .testimonials-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .testimonials-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }

        .testimonials-header p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
        }

        .testimonials-header img {
            height: 44px;
            border-radius: 8px;
        }

        .testimonials-slider {
            display: flex;
            gap: 24px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 36px;
            border-radius: var(--radius-md);
            flex: 1;
            min-width: 300px;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-card p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-card .reviewer {
            font-weight: 600;
            font-size: 14px;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .testimonial-card .reviewer::before {
            content: '';
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #fff;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .slider-controls button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .slider-controls button:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.1);
        }

        /* ===== PROFESSIONAL AFFILIATIONS ===== */
        .affiliations-section {
            padding: 80px 0;
            background: var(--bg-white);
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .affiliations-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .affiliations-section img {
            height: 120px;
            transition: var(--transition);
        }

        .affiliations-section img:hover {
            transform: scale(1.05);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0D3D4A 100%);
            color: rgba(255, 255, 255, 0.7);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
        }

        .footer .container {
            display: flex;
            gap: 60px;
        }

        .footer-left {
            flex: 1;
        }

        .footer-left .footer-logo {
            margin-bottom: 24px;
        }

        .footer-left .footer-logo img {
            height: 60px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .footer-left .address {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-left .address a {
            color: var(--gold);
            font-weight: 500;
            transition: var(--transition);
        }

        .footer-left .address a:hover {
            color: var(--accent-light);
        }

        .footer-left .hours {
            font-size: 14px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-left .hours strong {
            color: var(--gold);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-right {
            flex: 1;
        }

        .footer-right h4 {
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-right .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-right .footer-nav a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-right .footer-nav a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .footer-right .footer-nav a:hover {
            color: var(--gold);
        }

        .footer-right .footer-nav a:hover::before {
            width: 16px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--gold);
        }

        /* ===== FLOATING CTA ===== */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .floating-cta a {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 30px rgba(232, 106, 93, 0.4);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .floating-cta a:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(232, 106, 93, 0.5);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: var(--primary);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }

        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(232, 106, 93, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero .container,
            .about-section .container,
            .flexible-section .container,
            .guaranteed-section .container,
            .rates-section .container,
            .footer .container {
                flex-direction: column;
            }

            .industries-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-main {
                display: none;
            }

            .about-image,
            .guaranteed-image,
            .flexible-image {
                flex: none;
            }

            .hero-content h2 {
                font-size: 36px;
            }

            .about-content h1,
            .flexible-content h2,
            .guaranteed-content h2,
            .temporary-content h2,
            .rates-left h2 {
                font-size: 32px;
            }

            .hero-stats {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .industries-cards {
                grid-template-columns: 1fr;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .top-bar-right {
                gap: 15px;
                font-size: 12px;
            }

            .hero-content h2 {
                font-size: 28px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .about-section::before {
                display: none;
            }

            .hero {
                padding: 60px 0 80px;
                min-height: auto;
            }

            .container {
                padding: 0 20px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .flexible-features {
                grid-template-columns: 1fr;
            }
        }
        
        /* ===== SLIDE-IN FORM ===== */
        .slide-in-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .slide-in-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-in-form {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 450px;
            height: 100vh;
            background: var(--bg-white);
            z-index: 1060;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .slide-in-form.active {
            right: 0;
        }

        .slide-in-header {
            padding: 30px;
            background: var(--primary-dark);
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slide-in-header h3 {
            margin: 0;
            font-size: 24px;
            font-family: 'Playfair Display', serif;
        }

        .close-btn {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--gold);
            transform: scale(1.1);
        }

        .slide-in-body {
            padding: 30px;
            flex: 1;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 15px;
            transition: var(--transition);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }

        .form-group input[type="file"] {
            padding: 9px 16px;
            background: var(--bg-light);
        }

        .form-group small {
            display: block;
            margin-top: 6px;
            color: var(--text-light);
            font-size: 12px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(232, 106, 93, 0.35);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(232, 106, 93, 0.45);
        }