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

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
     color: #ffffff;
     overflow-x: hidden;
 }

 /* Navigation */
 nav {
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: all 0.5s ease;
     padding: 1.5rem 0;
 }

 nav.scrolled {
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(20px);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
 }

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

 .logo {
     display: flex;
     align-items: center;
     gap: 1rem;

 }

 .logo-icon {
     width: 40px;
     height: 40px;
     font-size: 1.2rem;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease;
     color: white;
 }

 .logo-icon i {
     font-size: 1.2rem;
 }

 .logo:hover .logo-icon {
     transform: rotate(12deg);

 }


 .logo-text {
     font-size: 1.5rem;
     font-weight: 700;

     background: linear-gradient(135deg, #fbbf24 0%, #fde047 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

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

 .nav-links a {
     color: #d1d5db;
     text-decoration: none;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #fbbf24;
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: #fbbf24;
 }

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

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: #fbbf24;
     border-radius: 3px;
     transition: all 0.3s ease;
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
 }

 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
 }

 @media (max-width: 768px) {
     .mobile-menu-toggle {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         width: 80%;
         max-width: 300px;
         height: 100vh;
         background: rgba(15, 23, 42, 0.98);
         backdrop-filter: blur(20px);
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 2rem;
         transition: right 0.3s ease;
         box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links a {
         font-size: 1.2rem;
     }
 }

 /* Hero Section */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     padding: 0 2rem;
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .hero-circle-1 {
     position: absolute;
     top: 25%;
     left: 25%;
     width: 400px;
     height: 400px;
     background: rgba(251, 191, 36, 0.1);
     border-radius: 50%;
     filter: blur(80px);
     animation: pulse 4s ease-in-out infinite;
 }

 .hero-circle-2 {
     position: absolute;
     bottom: 25%;
     right: 25%;
     width: 400px;
     height: 400px;
     background: rgba(245, 158, 11, 0.1);
     border-radius: 50%;
     filter: blur(80px);
     animation: pulse 4s ease-in-out infinite 2s;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.2);
         opacity: 0.8;
     }
 }

 .hero-content {
     max-width: 900px;
     text-align: center;
     position: relative;
     z-index: 1;
     animation: fadeInUp 1s ease;
 }

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

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero h1 {
     font-size: 4rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1.5rem;
 }

 .hero .gradient-text {
     background: linear-gradient(135deg, #fbbf24 0%, #fde047 50%, #f59e0b 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero p {
     font-size: 1.5rem;
     color: #9ca3af;
     margin-bottom: 3rem;
     line-height: 1.8;
 }

 .cta-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-primary {
     padding: 1.2rem 2.5rem;
     background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
     color: #0f172a;
     font-weight: 600;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
 }

 .btn-primary,
 .btn-secondary {
     position: relative;
     overflow: hidden;
 }

 .ripple {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     transform: scale(0);
     animation: ripple-animation 0.6s ease-out;
     pointer-events: none;
 }

 @keyframes ripple-animation {
     to {
         transform: scale(4);
         opacity: 0;
     }
 }

 .btn-secondary {
     padding: 1.2rem 2.5rem;
     background: transparent;
     color: #ffffff;
     font-weight: 600;
     border: 2px solid rgba(251, 191, 36, 0.5);
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-secondary:hover {
     background: rgba(251, 191, 36, 0.1);
     border-color: #fbbf24;
 }

 /* Services Section */
 .services {
     padding: 8rem 2rem;
     position: relative;
 }

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

 .section-title {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-title h2 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }

 .section-title p {
     font-size: 1.2rem;
     color: #9ca3af;
 }

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

 .service-card {
     background: rgba(30, 41, 59, 0.5);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(251, 191, 36, 0.1);
     border-radius: 20px;
     padding: 2.5rem;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-color: rgba(251, 191, 36, 0.3);
 }

 .service-card:hover::before {
     opacity: 1;
 }

 .service-icon {
     width: 60px;
     height: 60px;
     font-size: 2rem;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1) rotate(5deg);
 }

 .service-card h3 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 .service-card p {
     color: #9ca3af;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .service-features {
     list-style: none;
     padding: 0;
     margin-top: 1.5rem;
 }

 .service-features li {
     color: #d1d5db;
     padding: 0.5rem 0;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 0.95rem;
 }

 .service-features i {
     color: #fbbf24;
     font-size: 0.875rem;
 }

 /* About Section */
 .about {
     padding: 8rem 2rem;
     background: rgba(30, 41, 59, 0.3);
 }

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

 .about-content h2 {
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .about-content p {
     color: #9ca3af;
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-top: 2rem;
 }

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

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: #fbbf24;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     color: #9ca3af;
 }

 .about-image {
     position: relative;
 }

 .image-placeholder {
     width: 100%;
     height: 500px;
     background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
     border-radius: 30px;
     border: 2px solid rgba(251, 191, 36, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .image-placeholder::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
     animation: shine 3s infinite;
 }

 .image-placeholder i {
     font-size: 6rem;
     color: rgba(251, 191, 36, 0.3);
     z-index: 1;
     position: relative;
 }

 .image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
     border-radius: 30px;
 }

 @keyframes shine {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .credentials {
     margin: 2rem 0;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .credential-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: rgba(30, 41, 59, 0.5);
     border-radius: 10px;
     border: 1px solid rgba(251, 191, 36, 0.1);
 }

 .credential-item i {
     font-size: 1.5rem;
     color: #fbbf24;
     min-width: 30px;
 }

 .credential-item div {
     display: flex;
     flex-direction: column;
     gap: 0.25rem;
 }

 .credential-item strong {
     color: #ffffff;
     font-size: 1rem;
 }

 .credential-item span {
     color: #9ca3af;
     font-size: 0.9rem;
 }

 /* Process Section */
 .process {
     padding: 8rem 2rem;
     background: rgba(30, 41, 59, 0.2);
     position: relative;
 }

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

 .process-item {
     text-align: center;
     padding: 2rem;
     background: rgba(30, 41, 59, 0.5);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(251, 191, 36, 0.1);
     border-radius: 20px;
     position: relative;
     transition: all 0.4s ease;
 }

 .process-item:hover {
     transform: translateY(-10px);
     border-color: rgba(251, 191, 36, 0.3);
     box-shadow: 0 20px 40px rgba(251, 191, 36, 0.1);
 }

 .process-number {
     position: absolute;
     top: -20px;
     right: 20px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
     color: #0f172a;
     box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
 }

 .process-icon {
     width: 80px;
     height: 80px;
     margin: 1rem auto 1.5rem;
     background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: #fbbf24;
     transition: transform 0.3s ease;
 }

 .process-item:hover .process-icon {
     transform: scale(1.1) rotate(5deg);
 }

 .process-item h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 .process-item p {
     color: #9ca3af;
     line-height: 1.8;
 }

 /* Testimonials Section */
 .testimonials {
     padding: 8rem 2rem;
     position: relative;
 }

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

 .testimonial-card {
     background: rgba(30, 41, 59, 0.5);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(251, 191, 36, 0.1);
     border-radius: 20px;
     padding: 2.5rem;
     transition: all 0.4s ease;
     position: relative;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     border-color: rgba(251, 191, 36, 0.3);
     box-shadow: 0 15px 35px rgba(251, 191, 36, 0.1);
 }

 .testimonial-rating {
     display: flex;
     gap: 0.5rem;
     margin-bottom: 1.5rem;
 }

 .testimonial-rating i {
     color: #fbbf24;
     font-size: 1.2rem;
 }

 .testimonial-text {
     color: #d1d5db;
     line-height: 1.8;
     font-size: 1.05rem;
     margin-bottom: 2rem;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     color: #0f172a;
     font-size: 1.1rem;
 }

 .author-info h4 {
     color: #ffffff;
     margin-bottom: 0.25rem;
 }

 .author-info span {
     color: #9ca3af;
     font-size: 0.9rem;
 }

 /* Contact Section */
 .contact {
     padding: 8rem 2rem;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .contact-card {
     text-align: center;
     padding: 2rem;
     background: rgba(30, 41, 59, 0.3);
     border: 1px solid rgba(251, 191, 36, 0.1);
     border-radius: 20px;
     transition: all 0.3s ease;
 }

 .contact-card:hover {
     border-color: rgba(251, 191, 36, 0.3);
     transform: translateY(-5px);
 }

 .contact-icon {
     width: 60px;
     height: 60px;
     font-size: 2rem;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
 }

 .contact-card h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .contact-card p {
     color: #9ca3af;
 }

 .contact-form {
     max-width: 700px;
     margin: 0 auto;
     background: rgba(30, 41, 59, 0.3);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(251, 191, 36, 0.1);
     border-radius: 20px;
     padding: 3rem;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

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

 .form-group label {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: #ffffff;
     margin-bottom: 0.5rem;
     font-weight: 500;
     font-size: 0.95rem;
 }

 .form-group label i {
     color: #fbbf24;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 1rem;
     background: rgba(15, 23, 42, 0.5);
     border: 1px solid rgba(251, 191, 36, 0.2);
     border-radius: 10px;
     color: #ffffff;
     font-size: 1rem;
     transition: all 0.3s ease;
     font-family: inherit;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: #fbbf24;
     box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: #6b7280;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 150px;
 }

 .form-group select {
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fbbf24' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     padding-right: 2.5rem;
 }

 .form-group select option {
     background: #1e293b;
     color: #ffffff;
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
 }

 .checkbox-group input[type="checkbox"] {
     width: auto;
     margin-top: 0.25rem;
     cursor: pointer;
     accent-color: #fbbf24;
 }

 .checkbox-group label {
     margin: 0;
     font-size: 0.9rem;
     color: #d1d5db;
     cursor: pointer;
     line-height: 1.5;
 }

 .error-message {
     display: block;
     color: #ef4444;
     font-size: 0.875rem;
     margin-top: 0.5rem;
     min-height: 1.25rem;
 }

 .form-group input.error,
 .form-group textarea.error,
 .form-group select.error {
     border-color: #ef4444 !important;
 }

 .form-group input:invalid:not(:placeholder-shown):not(.error),
 .form-group textarea:invalid:not(:placeholder-shown):not(.error),
 .form-group select:invalid:not(.error) {
     border-color: #ef4444;
 }

 .form-group input:valid:not(:placeholder-shown):not(.error),
 .form-group textarea:valid:not(:placeholder-shown):not(.error),
 .form-group select:valid:not(.error) {
     border-color: #10b981;
 }

 .submit-btn {
     width: 100%;
     padding: 1.2rem;
     background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
     color: #0f172a;
     font-weight: 600;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
     position: relative;
     overflow: hidden;
 }

 .submit-btn:hover:not(:disabled) {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
 }

 .submit-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 .btn-text {
     display: inline-block;
 }

 .btn-loading {
     display: none;
 }

 .submit-btn.loading .btn-text {
     display: none;
 }

 .submit-btn.loading .btn-loading {
     display: inline-block;
 }

 .form-success {
     display: none;
     text-align: center;
     padding: 2rem;
     background: rgba(16, 185, 129, 0.1);
     border: 1px solid rgba(16, 185, 129, 0.3);
     border-radius: 10px;
     margin-top: 1.5rem;
 }

 .form-success.active {
     display: block;
     animation: fadeInUp 0.5s ease;
 }

 .form-success i {
     font-size: 3rem;
     color: #10b981;
     margin-bottom: 1rem;
 }

 .form-success p {
     color: #d1fae5;
     font-size: 1.1rem;
 }

 /* WhatsApp Float Button */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 60px;
     height: 60px;
     background: #25d366;
     text-decoration: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-size: 1.8rem;
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
     z-index: 999;
     transition: all 0.3s ease;
     animation: pulse-whatsapp 2s infinite;
 }

 .whatsapp-float:hover {
     transform: scale(1.1);
     box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
 }

 @keyframes pulse-whatsapp {

     0%,
     100% {
         box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
     }
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 100px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
     border: none;
     border-radius: 50%;
     color: #0f172a;
     font-size: 1.2rem;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 998;
     box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
 }

 .back-to-top.visible {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
 }

 /* Footer */
 footer {
     background: rgba(15, 23, 42, 0.9);
     backdrop-filter: blur(20px);
     border-top: 1px solid rgba(251, 191, 36, 0.1);
     padding: 4rem 2rem 2rem;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-section h3 {
     color: #ffffff;
     margin-bottom: 1.5rem;
     font-size: 1.3rem;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1rem;
 }

 .footer-section p {
     color: #9ca3af;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

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

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(251, 191, 36, 0.1);
     border: 1px solid rgba(251, 191, 36, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fbbf24;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: rgba(251, 191, 36, 0.2);
     transform: translateY(-3px);
 }

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

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

 .footer-section ul li a {
     color: #9ca3af;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: #fbbf24;
     padding-left: 5px;
 }

 .footer-contact li {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #9ca3af;
     margin-bottom: 1rem;
 }

 .footer-contact i {
     color: #fbbf24;
     width: 20px;
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding-top: 2rem;
     border-top: 1px solid rgba(251, 191, 36, 0.1);
     text-align: center;
 }

 .footer-bottom p {
     color: #9ca3af;
     margin-bottom: 0.5rem;
 }

 .oab-info {
     font-size: 0.9rem;
     color: #6b7280;
 }

 /* Scroll Animations */
 [data-aos] {
     opacity: 0;
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 [data-aos].aos-animate {
     opacity: 1;
 }

 [data-aos="fade-up"] {
     transform: translateY(30px);
 }

 [data-aos="fade-up"].aos-animate {
     transform: translateY(0);
 }

 [data-aos="fade-right"] {
     transform: translateX(-30px);
 }

 [data-aos="fade-right"].aos-animate {
     transform: translateX(0);
 }

 [data-aos="fade-left"] {
     transform: translateX(30px);
 }

 [data-aos="fade-left"].aos-animate {
     transform: translateX(0);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.2rem;
     }

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

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

     .stats {
         grid-template-columns: repeat(3, 1fr);
         gap: 1rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

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

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

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

     .form-row {
         grid-template-columns: 1fr;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .whatsapp-float {
         bottom: 20px;
         right: 20px;
         width: 55px;
         height: 55px;
         font-size: 1.5rem;
     }

     .back-to-top {
         bottom: 85px;
         right: 20px;
         width: 45px;
         height: 45px;
     }
 }

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

     .section-title h2 {
         font-size: 1.75rem;
     }

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

     .stat-number {
         font-size: 2rem;
     }
 }