
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1e40af;
            --secondary-blue: #3b82f6;
            --light-blue: #dbeafe;
            --dark-blue: #1e3a8a;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-800: #1f2937;
            --accent-orange: #f97316;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        .top-bar {
            background: var(--dark-blue);
            color: var(--white);
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .top-bar-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bar-social {
            display: flex;
            gap: 1rem;
        }

        .top-bar-social a {
            color: var(--white);
            transition: color 0.3s;
        }

        .top-bar-social a:hover {
            color: var(--secondary-blue);
        }

        /* Navigation */
        nav {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .logo-text span {
            color: var(--secondary-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-800);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent-orange);
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(30, 58, 138, 0.9)), 
                        url(/../img/hero-hvac.jpg) center/cover;
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }
        .hiddenMobile{

    display: flex !important;
    position: absolute;
    flex-direction: column;
    background: white;
    width: 100%;
    top: 82px;
    left: 0;
    height: 100vh;

        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, -30px) rotate(180deg); }
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--accent-orange);
            color: white;
            border-color: var(--accent-orange);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

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

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--gray-600);
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* Intro Section */
        .intro {
            padding: 5rem 0;
            background: var(--white);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-text h3 {
            font-size: 2rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .intro-text p {
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .intro-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .intro-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--accent-orange);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        }

        .experience-badge .years {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: var(--gray-50);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--gray-100);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--primary-blue);
            color: white;
            transform: rotateY(360deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Why Choose Us */
        .why-us {
            padding: 5rem 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: var(--gray-50);
            transform: translateX(10px);
        }

        .feature-icon {
            min-width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .feature-content h3 {
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .feature-content p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 5rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            right: -10%;
            top: -50%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .quote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .quote-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .quote-form h3 {
            color: var(--dark-blue);
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gray-800);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--gray-100);
            border-radius: 10px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary-blue);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        }

        .quote-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .quote-info p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .contact-list {
            list-style: none;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-list i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Blog Section */
        .blog {
            padding: 5rem 0;
            background: var(--gray-50);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .blog-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-content h3 {
            color: var(--dark-blue);
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
            line-height: 1.4;
        }

        .blog-content p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 1rem;
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 4rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo-text {
            color: white;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            display: block;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .intro-content,
            .quote-container {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                left: 20px;
                bottom: 20px;
            }

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

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2rem;
            }

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

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

            .top-bar-content {
                flex-direction: column;
                text-align: center;
            }

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

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            background: #ea580c;
        }
        .dual{
            background: #25D366;
            bottom: 30px;
            left: 30px !important;
            opacity: 1 !important;
                box-shadow: 0 5px 15px #0439137a;
    visibility: visible;
        }
   

        /* === reviews header (distinct) === */
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #0b2b40;
            margin-bottom: 1.5rem;
            border-left: 6px solid #f2b53c;
            padding-left: 1.2rem;
        }

        .section-title i {
            color: #f2b53c;
            margin-right: 10px;
            font-size: 2rem;
            vertical-align: middle;
        }

        /* === review grid – replaces old blog-grid for testimonials === */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin-bottom: 3.5rem;
        }

        .review-card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem 1.5rem 1.5rem 1.5rem;
            box-shadow: 0 15px 30px -10px rgba(0, 30, 30, 0.1);
            transition: all 0.25s ease;
            border: 1px solid rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -12px rgba(0, 60, 80, 0.15);
            border-color: #f0e5d5;
        }

        /* reviewer identity */
        .reviewer-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 52px;
            height: 52px;
            background: linear-gradient(145deg, #e0e9f0, #cbd5e1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            color: #1e3f4e;
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 4px 8px rgba(0,0,0,0.04);
            text-transform: uppercase;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #162b36;
            line-height: 1.3;
        }

        .review-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #5f707b;
            margin-top: 2px;
        }

        .review-meta i {
            font-size: 0.7rem;
            color: #a0b3c0;
        }

        .review-meta span {
            margin-right: 12px;
        }

        /* stars — exact 5/5 */
        .stars {
            display: flex;
            gap: 3px;
            margin: 0.6rem 0 0.8rem 0;
        }

        .stars i {
            color: #ffb83b;
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(255,190,50,0.2));
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.5;
            color: #1f3c4a;
            background: #f9fcff;
            padding: 1rem 1rem;
            border-radius: 18px;
            margin: 0.75rem 0 1rem 0;
            border: 1px solid #eaf0f6;
            flex: 1;
            position: relative;
        }

        .review-text::before {
            content: "“";
            font-size: 3rem;
            position: absolute;
            left: 0.5rem;
            top: -0.2rem;
            opacity: 0.2;
            font-family: serif;
            color: #2b6c8f;
        }

        .translation-note {
            font-size: 0.8rem;
            color: #627b8b;
            background: #ecf3f8;
            display: inline-block;
            padding: 0.2rem 1rem 0.2rem 1rem;
            border-radius: 30px;
            margin-top: 0.5rem;
            width: fit-content;
            border: 1px dashed #b6ccda;
        }

        .translation-note i {
            font-size: 0.7rem;
            margin-right: 5px;
            color: #2f5e7a;
        }

        .card-footer-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.4rem;
            border-top: 1px solid #e2ecf3;
            padding-top: 0.8rem;
        }

        .like-share {
            display: flex;
            gap: 1rem;
        }

        .like-share button {
            background: none;
            border: none;
            font-size: 0.9rem;
            color: #4e6d80;
            cursor: pointer;
            transition: 0.2s;
            padding: 4px 8px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .like-share button i {
            font-size: 1rem;
        }

        .like-share button:hover {
            background: #e5f0f9;
            color: #1d4e6b;
        }

        .photo-badge {
            background: #e7f0f7;
            border-radius: 30px;
            padding: 0.2rem 0.9rem;
            font-size: 0.75rem;
            color: #1c5777;
            display: flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #bfd9e8;
        }

        .photo-badge i {
            font-size: 0.7rem;
        }

        /* === original BLOG section (untouched but with adjusted title) === */
        .blog-section {
            margin-top: 3rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.8rem;
        }

        .blog-card {
            background: white;
            border-radius: 1.8rem;
            overflow: hidden;
            box-shadow: 0 10px 25px -8px rgba(0,40,50,0.1);
            transition: 0.2s;
            border: 1px solid #eef5f8;
        }

        .blog-card:hover {
            box-shadow: 0 22px 30px -12px rgba(0,80,100,0.18);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s;
        }

        .blog-card:hover .blog-image img {
            scale: 1.05;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0c3342;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .blog-content p {
            color: #3c5a68;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.2rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #00668c;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }

        .read-more i {
            transition: 0.2s;
            font-size: 0.8rem;
        }

        .read-more:hover {
            color: #003853;
            border-bottom-color: #f2b53c;
        }

        .read-more:hover i {
            transform: translateX(4px);
        }

        .fade-in {
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(8px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #bed6e3, transparent);
            margin: 2rem 0 0.5rem 0;
        }