/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header & Navigation */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #16a34a;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 1px;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #16a34a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
  }
  
  .btn-outline:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .btn-full {
    width: 100%;
    justify-content: center;
  }
  
  /* Hero Section */
  .hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    z-index: -1;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 1.5rem;
  }
  
  .highlight {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .stat-icon i {
    color: white;
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #16a34a;
    display: block;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
  }
  
  .hero-image {
    position: relative;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
  }
  
  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
  }
  
  .contact-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
  }
  
  .contact-card.email:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  }
  
  .contact-card.phone:hover {
    border-color: #f59e0b;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
  }
  
  .whatsapp .card-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
  }
  
  .email .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  }
  
  .phone .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
  }
  
  .card-icon i {
    color: white;
    font-size: 1.5rem;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }
  
  .contact-card p {
    color: #6b7280;
    margin-bottom: 1rem;
  }
  
  .contact-info {
    font-weight: 600;
    color: #16a34a;
    font-size: 0.9rem;
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Contact Form Section */
  .contact-form-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    background: white;
  }
  
  .form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .form-group:focus-within .form-icon {
    color: #16a34a;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-group textarea + .form-icon {
    top: 3rem;
    transform: none;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .checkbox-label input[type="checkbox"] {
    display: none;
  }
  
  .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-color: #16a34a;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .terms-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
  }
  
  .terms-link:hover {
    text-decoration: underline;
  }
  
  /* Contact Info Sidebar */
  .contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .info-card,
  .social-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
  }
  
  .info-card h3,
  .social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
  }
  
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-item {
    display: flex;
    gap: 1rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .info-icon i {
    color: white;
    font-size: 1rem;
  }
  
  .info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
  }
  
  .info-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
  }
  
  .social-link:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
  }
  
  .social-link.facebook:hover {
    background: rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
  }
  
  .social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #e1306c;
  }
  
  .social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
  }
  
  .social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.1);
    border-color: #0077b5;
  }
  
  .social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
  }
  
  .social-link i {
    width: 20px;
    text-align: center;
    color: #6b7280;
  }
  
  .social-link span {
    color: #374151;
    font-weight: 500;
  }
  
  /* Map Section */
  .map-section {
    padding: 6rem 0;
  }
  
  .map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  .map-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
  }
  
  .map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .map-placeholder:hover {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  }
  
  .map-content {
    text-align: center;
    color: #16a34a;
  }
  
  .map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .map-content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
  }
  
  .location-info {
    display: flex;
    flex-direction: column;
  }
  
  .location-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .location-image {
    height: 200px;
    overflow: hidden;
  }
  
  .office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .location-card:hover .office-img {
    transform: scale(1.05);
  }
  
  .location-content {
    padding: 2rem;
  }
  
  .location-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .location-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }
  
  .location-address i {
    color: #16a34a;
  }
  
  .location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  .feature i {
    color: #16a34a;
    width: 16px;
  }
  
  .location-actions {
    display: flex;
    gap: 1rem;
  }
  
  .location-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  /* FAQ Section */
  .faq-contact {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: rgba(34, 197, 94, 0.05);
  }
  
  .faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
  }
  
  .faq-question i {
    color: #16a34a;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
  }
  
  .faq-answer p {
    color: #6b7280;
    line-height: 1.7;
  }
  
  /* Quick Contact Section */
  .quick-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
  }
  
  .quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .quick-contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .quick-contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  .quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .quick-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
  }
  
  .quick-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
  }
  
  .quick-btn.phone:hover {
    background: #f59e0b;
    border-color: #f59e0b;
  }
  
  .quick-btn.email:hover {
    background: #3b82f6;
    border-color: #3b82f6;
  }
  
  .quick-btn i {
    font-size: 1.5rem;
  }
  
  .quick-btn span {
    font-weight: 600;
  }
  
  /* CTA Section */
  .cta {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(34,197,94,0.1)"/></svg>')
      repeat;
    opacity: 0.3;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
  }
  
  .cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #6b7280;
    line-height: 1.7;
  }
  
  .cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
  }
  
  .cta-feature i {
    font-size: 1.5rem;
    color: #16a34a;
  }
  
  .cta-feature span {
    font-weight: 500;
    color: #374151;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Footer */
  .footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #22c55e;
  }
  
  .footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #22c55e;
  }
  
  .footer-description {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-social .social-link:hover {
    background: #22c55e;
    color: white;
    transform: scale(1.1);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #22c55e;
  }
  
  .footer-contact {
    list-style: none;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
  }
  
  .footer-contact i {
    color: #22c55e;
    width: 16px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
  }
  
  /* Modal */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .modal-content {
    position: relative;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
  }
  
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .modal-header {
    margin-bottom: 2rem;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .success-icon i {
    color: white;
    font-size: 2rem;
  }
  
  .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
  }
  
  .modal-body p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .next-steps {
    background: rgba(34, 197, 94, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .next-steps h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .next-steps ul {
    list-style: none;
    padding: 0;
  }
  
  .next-steps li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  .next-steps li::before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
  }
  
  .modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Form Validation Styles */
  .form-group.error input,
  .form-group.error select,
  .form-group.error textarea {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  }
  
  .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
  }
  
  /* Loading States */
  .btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }
  
    .hero-image {
      order: -1;
    }
  
    .contact-form-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .map-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .quick-contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 2rem;
      gap: 1rem;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      border-top: 1px solid rgba(34, 197, 94, 0.1);
    }
  
    .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  
    .hero {
      padding: 6rem 0 3rem;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .location-features {
      grid-template-columns: 1fr;
    }
  
    .location-actions {
      flex-direction: column;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-features {
      grid-template-columns: 1fr;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .quick-contact-buttons {
      gap: 0.75rem;
    }
  
    .modal-content {
      padding: 2rem;
      margin: 1rem;
    }
  
    .modal-footer {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 0.75rem;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .form-wrapper {
      padding: 2rem;
    }
  
    .contact-card {
      padding: 1.5rem;
    }
  
    .stat-item {
      padding: 1rem;
    }
  
    .info-card,
    .social-card {
      padding: 1.5rem;
    }
  
    .location-content {
      padding: 1.5rem;
    }
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
  }
  
  /* Selection Color */
  ::selection {
    background: rgba(34, 197, 94, 0.2);
    color: #166534;
  }
  
  /* Focus Styles */
  .btn:focus,
  input:focus,
  textarea:focus,
  select:focus,
  button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  
  /* Print Styles */
  @media print {
    .header,
    .quick-contact,
    .cta,
    .footer,
    .modal {
      display: none;
    }
  
    .hero,
    .contact-form-section,
    .map-section,
    .faq-contact {
      page-break-inside: avoid;
    }
  }
  
  /* High Contrast Mode */
  @media (prefers-contrast: high) {
    .btn-outline {
      border-width: 3px;
    }
  
    .nav-link.active::after {
      height: 3px;
    }
  }
  
  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  
    .hero::before {
      animation: none;
    }
  }
  