:root {
            --primary: #471ca8; /* Trust Blue */
            --secondary: #ff930a; /* Action Orange */
            --whatsapp: #25D366; /* WhatsApp Green */
            --dark: #003580;
            --light: #F8FAFC;
            --white: #FFFFFF;
            --gray-text: #64748B;
            --gold: #FBBF24; /* Review Stars */
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); background: var(--white); overflow-x: hidden;}

        /* --- Header --- */
        header { background: rgba(255, 255, 255, 0.95); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(5px); }
        .logo {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .logo span { color: var(--secondary); }
        .btn-call {
            background: var(--primary);
            color: white;
            text-decoration: none;
            padding: 12px 12px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 6px rgba(0, 74, 173, 0.2);
        }
        .btn-call:hover {
            /*color: var(--primary);*/
            background: color-mix(in srgb, var(--primary), transparent 15%);
        }
        .btn-secondary {
            background: var(--secondary);
            color: white;
            text-decoration: none;
            padding: 12px 12px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 6px rgba(0, 74, 173, 0.2);
        }
        .btn-secondary:hover {
            /*color: var(--primary);*/
            background: color-mix(in srgb, var(--secondary), transparent 15%);
        }

        /* --- Hero Section --- */
        .hero { background: linear-gradient(
1deg, #471ca8 35%, #FF9800 100%), url(https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1200) center / cover; color: white; padding: 40px 5%; text-align: center; position: relative; }
        .hero h1 { font-size: 3rem; margin-bottom: 25px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
        .hero p { font-size: 1.25rem; margin-bottom: 40px; max-width: 800px; margin-inline: auto; color: #E0F2FE; }
        
        .hero-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .hero-badge { background: rgba(255, 255, 255, 0.1); padding: 10px 20px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, 0.2); }
        .hero-badge i { color: var(--primary); }

        /* --- Form --- */
        .lead-form { background: var(--white); padding: 40px; border-radius: 16px; max-width: 550px; margin: 0 auto; color: var(--dark); box-shadow: 0 20px 40px rgba(0,0,0,0.3); position: relative; z-index: 10; border: 1px solid #E2E8F0;}
        .lead-form h3 { font-size: 1.5rem; margin-bottom: 25px; font-weight: 700; color: var(--primary); text-align: center; }
        .lead-form input, .lead-form select { width: 100%; padding: 15px; margin-bottom: 18px; border: 2px solid #E2E8F0; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
        .lead-form input:focus, .lead-form select:focus { border-color: var(--primary); outline: none; }
        .btn-submit { background: var(--secondary); color: white; border: none; width: 100%; padding: 18px; font-size: 1.2rem; font-weight: 800; cursor: pointer; border-radius: 8px; text-transform: uppercase; transition: all 0.3s; box-shadow: 0 4px 12px rgba(255,126,0,0.3); }
        .btn-submit:hover { background: #e67300; transform: scale(1.02); box-shadow: 0 6px 18px rgba(255,126,0,0.4); }

        /* --- Global Sections --- */
        section { padding: 40px 5%; }
        h2 { text-align: center; margin-bottom: 60px; color: var(--primary); font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; }
        h2 span { color: var(--secondary); }

        /* *** NEW & ATTRACTIVE SOCIAL PROOF SECTION *** */
        .social-proof-section { background: var(--light); padding: 100px 5%; position: relative; }
        .social-proof-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 10px; background: linear-gradient(to right, var(--primary), var(--secondary)); }

        .trust-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            max-width: 750px;
            margin: 0px auto 25px auto;
            flex-wrap: wrap;
            justify-items: center;
        }
        .stat-card {
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #E2E8F0;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 190px;
            /* min-height: 130px; */
        }
        .stat-card:hover { transform: translateY(-5px); }
        .stat-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--primary); opacity: 0.2; }
        .stat-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; opacity: 0.8; }
        .stat-number { font-size: 1.2rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 10px; letter-spacing: -2px; }
        .stat-text { font-size: 0.8rem; color: var(--gray-text); font-weight: 600; }
        .stat-card .stars { color: var(--gold); font-size: 1.2rem; margin-top: 10px; margin-bottom: 10px; display: block; }

        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .testimonial-card { background: var(--white); padding: 35px; border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; position: relative; display: flex; flex-direction: column; gap: 20px; }
        .testimonial-card::before { content: '"'; font-size: 8rem; color: var(--primary); opacity: 0.05; position: absolute; top: -20px; left: 20px; font-family: serif; }
        .test-stars { color: var(--gold); font-size: 1.25rem; }
        .test-text { color: var(--dark); font-size: 1.1rem; font-style: italic; line-height: 1.7; flex-grow: 1; position: relative; z-index: 1; }
        .test-author { display: flex; align-items: center; gap: 15px; padding-top: 20px; border-top: 1px solid #E2E8F0; }
        .test-avatar { width: 50px; height: 50px; background: #E2E8F0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.2rem; }
        .test-info h4 { font-weight: 700; color: var(--dark); }
        .test-info p { color: var(--gray-text); font-size: 0.9rem; }

        /* --- Rest of Grid Styling --- */
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .card { background: var(--white); padding: 30px; border-radius: 12px; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; transition: all 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .card i { font-size: 3rem; color: var(--secondary); margin-bottom: 25px; }
        
        .step-number { background: var(--primary); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; margin: 0 auto 25px auto; box-shadow: 0 4px 10px rgba(0,74,173,0.3); }
        .price { font-size: 2.5rem; color: var(--primary); font-weight: 800; margin: 20px 0; letter-spacing: -1px; }
        .price span { font-size: 1.1rem; color: var(--gray-text); font-weight: 400; }

        /* --- About Us (Updated) --- */
        .about-content { max-width: 900px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; position: relative; }
        .about-content::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--primary); border-radius: 16px 0 0 16px; }
        .about-content p { font-size: 1.15rem; color: var(--dark); margin-bottom: 25px; }
        .about-content ul { list-style: none; margin: 30px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .about-content li { margin-bottom: 0; padding-left: 35px; position: relative; font-size: 1.1rem; }
        .about-content li::before { content: '✓'; color: var(--white); background: var(--whatsapp); font-weight: bold; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
        .quote { font-style: italic; border-left: 4px solid var(--secondary); padding-left: 20px; margin-top: 30px; color: #475569; font-size: 1.2rem; background: var(--light); padding: 20px; border-radius: 0 8px 8px 0; }

        /* --- FAQ --- */
        .faq-container { max-width: 850px; margin: 0 auto; }
        .faq-item { background: var(--white); border-radius: 8px; margin-bottom: 15px; border: 1px solid #E2E8F0; transition: all 0.3s; }
        .faq-item:hover { border-color: var(--primary); }
        .faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark); font-weight: 700; font-size: 1.15rem; }
        .faq-answer { display: none; padding: 0 25px 25px 25px; color: var(--gray-text); font-size: 1.05rem; line-height: 1.7; border-top: 1px solid #E2E8F0; padding-top: 20px;}

        /* --- Footer --- */
        footer { background: var(--primary); color: white; text-align: center; padding: 50px 5%; margin-top: 80px; }
        
        /* *** ANIMATED FLOATING WHATSAPP BUTTON *** */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; /* or left: 30px; */ background-color: var(--whatsapp); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 5px 15px rgba(0,0,0,0.3); z-index: 999; display: flex; align-items: center; justify-content: center; width: 65px; height: 65px; text-decoration: none; transition: all 0.3s; /* Animation definitions */ animation: pulse-whatsapp 2s infinite, shake-whatsapp 5s infinite; animation-delay: 1s, 5s; /* Delay shaking start */ }
        .whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1) rotate(5deg); box-shadow: 2px 8px 20px rgba(0,0,0,0.4); }
        
        /* Keyframes for WhatsApp Animations */
        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        @keyframes shake-whatsapp {
            0%, 90% { transform: translate(0, 0); }
            91% { transform: translate(2px, 1px) rotate(0deg); }
            92% { transform: translate(-1px, -2px) rotate(-1deg); }
            93% { transform: translate(-3px, 0px) rotate(1deg); }
            94% { transform: translate(3px, 2px) rotate(0deg); }
            95% { transform: translate(1px, -1px) rotate(1deg); }
            96% { transform: translate(-1px, 2px) rotate(-1deg); }
            97% { transform: translate(-3px, 1px) rotate(0deg); }
            98% { transform: translate(3px, 1px) rotate(-1deg); }
            99% { transform: translate(-1px, -1px) rotate(1deg); }
            100% { transform: translate(1px, 2px) rotate(0deg); }
        }
        .about .image-section {
          position: relative;
        }

        .about .image-section .primary-image {
          position: relative;
          margin-bottom: 2rem;
        }
        .about .image-section .primary-image img {
            border-radius: 6px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }
        .about .image-section .primary-image .experience-badge {
          position: absolute;
          top: 2rem;
          right: 2rem;
          background-color: var(--surface-color);
          padding: 1.5rem;
          border-radius: 6px;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          text-align: center;
          border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }
        @media (max-width: 768px) {
          .about .image-section .primary-image .experience-badge {
            top: 1rem;
            right: 1rem;
            padding: 1rem;
          }
        }

        .about .image-section .primary-image .experience-badge .years {
          display: block;
          font-size: 1.75rem;
          font-weight: 700;
          color: var(--accent-color);
          line-height: 1;
          margin-bottom: 0.25rem;
        }

        .about .image-section .primary-image .experience-badge .text {
          font-size: 0.75rem;
          color: color-mix(in srgb, var(--default-color), transparent 40%);
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .about .image-section .image-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 1rem;
        }

        .about .image-section .image-grid .grid-img {
          border-radius: 6px;
          aspect-ratio: 4/3;
          object-fit: cover;
          transition: transform 0.3s ease;
        }

        .about .image-section .image-grid .grid-img:hover {
          transform: translateY(-3px);
        }

        @media (max-width: 992px) {
          .about .image-section {
            margin-bottom: 3rem;
          }
        }

        .about .content-section {
          padding-left: 2rem;
        }

        @media (max-width: 992px) {
          .about .content-section {
            padding-left: 0;
          }
        }

        .about .section-intro {
          margin-bottom: 3rem;
        }

        .about .section-intro .company-badge {
          display: inline-block;
          background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
          color: var(--accent-color);
          padding: 0.5rem 1.25rem;
          border-radius: 4px;
          font-size: 0.75rem;
          font-weight: 700;
          letter-spacing: 1px;
          margin-bottom: 1.5rem;
          text-transform: uppercase;
        }

        .about .section-intro h2 {
          font-size: 2.125rem;
          line-height: 1.25;
          margin-bottom: 1.5rem;
          font-weight: 600;
          color: var(--heading-color);
        }

        @media (max-width: 768px) {
          .about .section-intro h2 {
            font-size: 1.75rem;
          }
        }

        .about .section-intro .intro-text {
          font-size: 1rem;
          line-height: 1.7;
          color: color-mix(in srgb, var(--default-color), transparent 20%);
          margin: 0;
        }
        .about .achievement-list {
          margin-bottom: 3rem;
        }

        .about .achievement-list .achievement-item {
          display: flex;
          align-items: flex-start;
          gap: 1.25rem;
          margin-bottom: 2rem;
        }

        .about .achievement-list .achievement-item:last-child {
          margin-bottom: 0;
        }

        .about .achievement-list .achievement-item .achievement-icon {
          width: 50px;
          height: 50px;
          background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
          color: var(--accent-color);
          border-radius: 6px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.25rem;
          flex-shrink: 0;
        }

        .about .achievement-list .achievement-item .achievement-content h4 {
          font-size: 1.125rem;
          font-weight: 600;
          color: var(--heading-color);
          margin-bottom: 0.5rem;
        }

        .about .achievement-list .achievement-item .achievement-content p {
          color: color-mix(in srgb, var(--default-color), transparent 30%);
          line-height: 1.6;
          margin: 0;
          font-size: 0.9rem;
        }

        .about .action-section {
          display: flex;
          align-items: center;
          gap: 2rem;
        }

        @media (max-width: 576px) {
          .about .action-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
          }
        }

        .about .action-section .btn-primary {
          background-color: var(--accent-color);
          border-color: var(--accent-color);
          color: var(--contrast-color);
          padding: 0.75rem 2rem;
          font-weight: 600;
          border-radius: 4px;
          text-decoration: none;
          transition: all 0.3s ease;
        }

        .about .action-section .btn-primary:hover {
          background-color: color-mix(in srgb, var(--accent-color), black 10%);
          border-color: color-mix(in srgb, var(--accent-color), black 10%);
          transform: translateY(-1px);
        }

        .about .action-section .contact-info .contact-label {
          display: block;
          font-size: 0.875rem;
          color: color-mix(in srgb, var(--default-color), transparent 40%);
          margin-bottom: 0.25rem;
        }

        .about .action-section .contact-info .phone-number {
          font-size: 1.125rem;
          color: var(--heading-color);
          font-weight: 600;
        }
        .cta {
          background: var(--primary);
          color: white;
          padding: 20px;
          border-radius: 16px;
        }
        .cta h2 {
            color: white;
            margin-bottom: 10px;
            font-size: 24px;
            text-align: left;
            font-weight: 600;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1.1rem; }
            .hero-badges { gap: 10px; }
            section { padding: 50px 5%; }
            h2 { font-size: 2rem; margin-bottom: 40px; }
            .lead-form { padding: 25px; }
            .stat-number { font-size: 1.8rem; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .whatsapp-float { width: 55px; height: 55px; font-size: 25px; bottom: 250px; right: 20px; }
            .d-none{display: none;}
        }