  :root {
            --primary-blue: #1E90FF;
            --accent-green: #4CAF50; /* Changed from bright green to more subtle green */
            --accent-yellow: #FFD700;
            --nevada-white: #FFFFFF;
            --dark-gray: #333333;
            --light-gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--light-gray);
            overflow-x: hidden;
            padding-bottom: 70px; /* Add padding to prevent content from being hidden behind sticky banner */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
            color: var(--nevada-white);
            padding: 20px 0;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            text-decoration: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo:hover {
            transform: translateY(-2px);
        }
        
        .logo-text {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
        }
        
        .logo-text h1 {
            font-size: 25px;
            margin-bottom: 5px;
            color: var(--nevada-white);
            letter-spacing: 0.5px;
        }
        
        .logo-text p {
            font-size: 14px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            letter-spacing: 1px;
            color: var(--accent-yellow);
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .logo-text p::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-yellow);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .logo:hover .logo-text p::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Nevada Flag Tag */
        .nevada-flag-tag {
            display: inline-block;
            width: 60px;
            height: 40px;
            position: relative;
            background: #0033A0; /* Nevada blue */
            border: 1px solid var(--nevada-white);
            overflow: hidden;
        }
        
        .nevada-flag-tag::before {
            content: '';
            position: relative;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                0deg,
                #0033A0 0%,
                #0033A0 50%,
                #BF0D3E 50%,
                #BF0D3E 100%
            );
        }
        
        .nevada-flag-tag::after {
            content: '★';
            position: absolute;
            left: 15%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: var(--nevada-white);
            font-size: 12px;
        }
        
        .nevada-flag-tag .text {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            color: #FFD700;
            font-size: 8px;
            font-weight: bold;
            text-align: center;
            line-height: 1;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--nevada-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
            letter-spacing: 0.5px;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--accent-yellow);
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--nevada-white);
            font-size: 24px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Section */
        .hero {
            background: url('/img/carpet-cleaning1.JPG') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(76, 175, 80, 0.8) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--nevada-white);
            max-width: 600px;
        }
        
        .hero-content h1 {
            font-family: 'Raleway', serif;
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            letter-spacing: 0.3px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent-yellow);
            color: var(--dark-gray);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-yellow);
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent-yellow);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--nevada-white);
            border: 2px solid var(--nevada-white);
            margin-left: 15px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-outline:hover {
            background-color: var(--nevada-white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Marketing Content */
        .marketing-content {
            padding: 60px 0;
            background-color: var(--nevada-white);
            text-align: center;
        }
        
        .marketing-content h2 {
            font-family: 'Raleway', serif;
            font-size: 32px;
            color: var(--primary-blue);
            margin-bottom: 30px;
        }
        
        .marketing-content p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--nevada-white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-family: 'Raleway', serif;
            font-size: 36px;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent-green);
            bottom: -10px;
            left: 25%;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            transform-origin: top center;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-family: 'Raleway', serif;
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-blue);
            letter-spacing: 0.3px;
        }
        
        .service-content p {
            margin-bottom: 15px;
            letter-spacing: 0.2px;
        }
        
        .service-content ul {
            margin-bottom: 20px;
            padding-left: 0;
            list-style-type: none;
        }
        
        .service-content ul li {
            margin-bottom: 10px;
            letter-spacing: 0.2px;
            position: relative;
            padding-left: 15px;
        }
        
        .service-content ul li:before {
            content: "-";
            position: absolute;
            left: 0;
        }
        
        .service-content ul li a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border-bottom: 1px dashed var(--primary-blue);
            padding-bottom: 2px;
        }
        
        .service-content ul li a:hover {
            color: var(--accent-green);
            border-bottom-color: var(--accent-green);
        }
        
        .service-content .btn {
            display: inline-block;
            width: auto;
            margin-top: 10px;
        }
        
        /* Service Item Popup */
        .service-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .service-popup.show {
            display: flex;
            opacity: 1;
        }
        
        .service-popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-50px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .service-popup.show .service-popup-content {
            transform: translateY(0);
        }
        
        .service-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .service-popup-close:hover {
            color: var(--primary-blue);
        }
        
        .service-popup-title {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 24px;
            padding-right: 30px;
        }
        
        .service-popup-description {
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .service-popup-contact {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 5px;
            margin-top: 25px;
            text-align: center;
        }
        
        .service-popup-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .service-popup-contact i {
            margin-right: 10px;
            color: var(--primary-blue);
            font-size: 20px;
        }
        
        .service-popup-contact a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 18px;
            white-space: nowrap;
        }
        
        .service-popup-contact a:hover {
            color: var(--accent-green);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--nevada-white) 100%);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-content h2 {
            font-family: 'Raleway', serif;
            font-size: 36px;
            color: var(--primary-blue);
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }
        
        .about-content p {
            margin-bottom: 25px;
            letter-spacing: 0.2px;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            color: var(--primary-blue);
            font-size: 24px;
            margin-right: 15px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            transform: scale(1.2);
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--primary-blue);
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        
        .feature-text p {
            margin-bottom: 0;
        }
        
        .feature-text a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--primary-blue);
            padding-bottom: 2px;
        }
        
        .feature-text a:hover {
            color: var(--accent-green);
            border-bottom-color: var(--accent-green);
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 0;
            background-color: var(--nevada-white);
        }
        
        .content-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .content-block {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .content-block h2 {
            font-family: 'Raleway', serif;
            font-size: 28px;
            color: var(--primary-blue);
            margin-bottom: 25px;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .content-block p {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.8;
            text-align: center;
            letter-spacing: 0.2px;
        }
        
        .content-block a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--primary-blue);
            padding-bottom: 2px;
        }
        
        .content-block a:hover {
            color: var(--accent-green);
            border-bottom-color: var(--accent-green);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--primary-blue);
            color: var(--nevada-white);
        }
        
        .testimonials .section-title h2 {
            color: var(--nevada-white);
        }
        
        .testimonials .section-title h2::after {
            background-color: var(--accent-yellow);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            font-family: 'Raleway', serif;
            color: rgba(255, 255, 255, 0.1);
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
            letter-spacing: 0.2px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 0.3px;
        }
        
        .author-info p {
            font-size: 14px;
            opacity: 0.8;
            letter-spacing: 0.2px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--nevada-white);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            background-color: var(--primary-blue);
            color: var(--nevada-white);
            padding: 40px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .contact-info:hover {
            transform: translateY(-5px);
        }
        
        .contact-info h3 {
            font-family: 'Raleway', serif;
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--accent-yellow);
            letter-spacing: 0.5px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
        }
        
        .contact-icon {
            color: var(--accent-yellow);
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.2);
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        
        .contact-text a {
            color: var(--nevada-white);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }
        
        .contact-text a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--accent-yellow);
        }
        
        .contact-text a:hover::after {
            width: 100%;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--nevada-white);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--accent-yellow);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            transform-origin: top center;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.2);
        }
        
        .gallery-caption { display: none !important; }
        .gallery-item:hover .gallery-caption { transform: none; }
        
        /* Contact Form */
        .contact-form {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
        }
        
        .contact-form:hover {
            transform: translateY(-5px);
        }
        
        .contact-form h3 {
            font-family: 'Raleway', serif;
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--primary-blue);
            letter-spacing: 0.5px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
            letter-spacing: 0.2px;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-blue);
            color: var(--nevada-white);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            overflow: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }
        
        .modal-content {
            background-color: var(--nevada-white);
            margin: auto;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: translateY(-50px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--primary-blue);
        }
        
        .modal-title {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            margin-bottom: 25px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
            color: var(--nevada-white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            font-family: 'Raleway', serif;
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--accent-yellow);
            letter-spacing: 0.5px;
            position: relative;
            display: inline-block;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        
        .footer-col:hover h4::after {
            width: 100%;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        
        .footer-col ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-col ul li a {
            color: var(--nevada-white);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.2px;
            font-weight: 500;
        }
        
        .footer-col ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent-yellow);
        }
        
        .footer-col ul li a:hover::after {
            width: 100%;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            letter-spacing: 0.2px;
            margin-bottom: 10px;
        }
        
        .footer-bottom a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 150px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: var(--nevada-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            border: none;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background-color: var(--accent-green);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }
        
        /* Sticky Contact Banner */
        .sticky-contact-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
            color: white;
            padding: 15px 0;
            z-index: 998;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            pointer-events: none;
        }
        .sticky-contact-banner.sticky-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
        
        .sticky-contact-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            gap: 20px;
        }
        
        .sticky-contact-text {
            font-weight: 600;
            font-size: 16px;
            display: none;
        }
        
        .sticky-contact-btn {
            background-color: var(--accent-yellow);
            color: var(--dark-gray);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            text-transform: uppercase;
            font-size: 14px;
            border: 2px solid var(--accent-yellow);
        }
        
        .sticky-contact-btn:hover {
            background-color: var(--nevada-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        
        .sticky-contact-phone {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            flex-shrink: 0;
            padding: 10px 15px;
            border-radius: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .sticky-contact-phone i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .sticky-contact-phone:hover {
            color: var(--accent-yellow);
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--accent-yellow);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container, .contact-container, .content-container {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .content-block {
                margin-bottom: 30px;
            }
            
            .sticky-contact-text {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            .nevada-flag-tag {
                margin-top: 10px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero {
                height: auto;
                padding: 100px 0;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            .sticky-contact-container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .sticky-contact-text {
                display: none;
            }
            
            .sticky-contact-btn {
                width: 100%;
                max-width: none;
                margin-bottom: 0;
                padding: 12px 20px;
            }
            
            .sticky-contact-phone {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 16px;
            }
            
            .sticky-contact-phone i {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .about-content h2, .contact-info h3, .contact-form h3 {
                font-size: 24px;
            }
            
            .scroll-to-top {
                width: 50px;
                height: 50px;
                font-size: 20px;
                bottom: 140px;
                right: 20px;
            }
            
            .sticky-contact-banner {
                padding: 10px 0;
            }
        }
        
        /* Animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Q&A and Tips Section */
        .qa-section {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .qa-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .qa-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .qa-title h2 {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            font-size: 32px;
            position: relative;
            display: inline-block;
        }
        
        .qa-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent-green);
            bottom: -10px;
            left: 25%;
        }
        
        .qa-item {
            margin-bottom: 30px;
            background-color: var(--nevada-white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .qa-question {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .qa-question i {
            margin-right: 10px;
            color: var(--primary-blue);
        }
        
        .qa-answer {
            line-height: 1.7;
        }
        
        .qa-answer a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--primary-blue);
            padding-bottom: 2px;
        }
        
        .qa-answer a:hover {
            color: var(--accent-green);
            border-bottom-color: var(--accent-green);
        }
        
        .tips-section {
            padding: 60px 0;
            background-color: var(--nevada-white);
        }
        
        .tips-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .tips-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .tips-title h2 {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            font-size: 32px;
            position: relative;
            display: inline-block;
        }
        
        .tips-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent-green);
            bottom: -10px;
            left: 25%;
        }
        
        .tips-list {
            list-style-type: none;
        }
        
        .tips-list li {
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
            line-height: 1.7;
        }
        
        .tips-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-blue);
            position: absolute;
            left: 0;
            top: 0;
        }
        
        .tips-list li strong {
            color: var(--primary-blue);
        }
        
        .contact-cta {
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 8px;
        }
        
        .contact-cta a {
            color: var(--accent-yellow);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--accent-yellow);
            padding-bottom: 2px;
        }
        
        .contact-cta a:hover {
            color: var(--nevada-white);
            border-bottom-color: var(--nevada-white);
        }
        
        /* Terms and Privacy Popup */
        .terms-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .terms-popup.show {
            display: flex;
            opacity: 1;
        }
        
        .terms-popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            position: relative;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-50px);
            transition: transform 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .terms-popup.show .terms-popup-content {
            transform: translateY(0);
        }
        
        .terms-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .terms-popup-close:hover {
            color: var(--primary-blue);
        }
        
        .terms-popup-title {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 24px;
            padding-right: 30px;
        }
        
        .terms-popup-section {
            margin-bottom: 25px;
        }
        
        .terms-popup-section h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .terms-popup-section p {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .terms-popup-section ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        
        .terms-popup-section ul li {
            margin-bottom: 10px;
        }
        
        /* Footer Phone Link Design */
        .footer-phone {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--nevada-white);
            padding: 10px 15px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 10px;
            font-weight: 600;
        }
        
        .footer-phone i {
            margin-right: 8px;
            color: var(--accent-yellow);
        }
        
        .footer-phone:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-yellow);
            transform: translateY(-2px);
        }
        
        /* Process Section - Tree Style */
        .process-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .process-tree {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 50px;
        }
        
        .process-steps {
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            position: relative;
            margin-bottom: 40px;
            padding-left: 100px;
            min-height: 80px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .process-step-content {
            background-color: var(--nevada-white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            border-left: 5px solid var(--accent-green);
            transition: all 0.3s ease;
        }
        
        .process-step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .process-step h3 {
            font-family: 'Raleway', serif;
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .process-step p {
            color: var(--dark-gray);
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Tree Branches */
        .process-tree::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 30px;
            width: 4px;
            height: calc(100% - 60px);
            background-color: var(--primary-blue);
            z-index: 1;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 30px;
            width: 70px;
            height: 4px;
            background-color: var(--primary-blue);
            z-index: 1;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 26px;
            left: 100px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--accent-green);
            z-index: 2;
        }
        
        /* Decorated Links in Process Steps */
        .process-step-content a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2px;
        }
        
        .process-step-content a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-green);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .process-step-content a:hover {
            color: var(--accent-green);
        }
        
        .process-step-content a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        @media (max-width: 768px) {
            .process-step {
                padding-left: 80px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .process-tree::before {
                left: 25px;
            }
            
            .process-step::before {
                left: 25px;
                width: 55px;
            }
            
            .process-step::after {
                left: 80px;
            }
            
            .process-step-content {
                padding: 20px;
            }
            
            .process-step h3 {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .process-step {
                padding-left: 70px;
                min-height: 70px;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .process-tree::before {
                left: 20px;
            }
            
            .process-step::before {
                left: 20px;
                width: 50px;
            }
            
            .process-step::after {
                left: 70px;
            }
            
            .process-step-content {
                padding: 20px;
            }
            
            .process-step h3 {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
     .sticky-contact-btn {
         display: none;
     }
     .scroll-to-top.active + .sticky-contact-banner .sticky-contact-btn {
         display: inline-block;
     }
 }


