/* Base Styles */
:root {
    --primary: #6C63FF; /* Purple - conveys creativity and trust */
    --secondary: #FF6584; /* Pink - creates urgency */
    --dark: #2D3748;
    --light: #F7FAFC;
    --success: #48BB78;
    --warning: #ED8936;
    --danger: #E53E3E;
    --gray: #718096;
    --gray-light: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.call-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-button:hover {
    background-color: #e64c6c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
}

.call-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* FOMO Banner */
.fomo-banner {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.fomo-banner i {
    margin-right: 0.5rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 100px;
    width: 100;
    margin-right: 0.5rem;
    margin-left: 20px;

    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-right: 20px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6C63FF 0%, #3F3D56 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    max-width: 250px;
}

.stat-item i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light);
}

.problem-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.problem-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.solution-box {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.solution-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    text-align: center;
}

.why-us h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    text-align: left;
    opacity: 1;
    transition: all 0.3s ease;
}

.overlay h3 {
    margin: 0;
    font-size: 1.3rem;
}

.overlay p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

.btn-view-project {
    display: inline-block;
    padding: 12px 25px;
    background: #2a52be;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin: 20px 0;
    transition: background 0.3s ease;
}

.btn-view-project:hover {
    background: #1a3a8f;
}

@media (max-width: 768px) {
    .portfolio {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #portfolio h2 {
        font-size: 2rem;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    .logo img{
        height:50px;
        width: 50px;
        border-radius: 50%;
    }
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--gray-light);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.stars {
    color: #FFD700;
    margin-top: 0.5rem;
    
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-controls button {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: #5a52e0;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: var(--light);
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 2rem auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guarantee i {
    font-size: 2rem;
    color: var(--success);
    margin-right: 1rem;
}

/* Contact Section */
/* Contact Section Styles */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .contact-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }
  
  .contact-header h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 700;
  }
  
  .contact-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }
  
  .contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.25rem;
    color: white;
  }
  
  .whatsapp-option .contact-icon {
    background: #25D366;
  }
  
  .phone-option .contact-icon {
    background: #3B82F6;
  }
  
  .email-option .contact-icon {
    background: #EA4335;
  }
  
  .contact-details h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  
  .contact-link {
    color: #4a5568;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-link:hover {
    color: #6C63FF;
  }
  
  .special-offer {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(90deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #6C63FF;
    margin-top: auto;
  }
  
  .offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #6C63FF;
  }
  
  .offer-content p {
    margin: 0;
    color: #2d3748;
    font-size: 0.95rem;
  }
  
  .offer-content strong {
    color: #6C63FF;
  }
  
  /* Contact Form Styles */
  .contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .contact-form-card h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .website-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #6C63FF;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
  }
  
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
  }
  /* Message Textarea Styling */
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
  }
  
  .form-group textarea:focus {
    outline: none;
    border-color: #6C63FF;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
  }
  
  /* Character Counter */
  .char-counter {
    font-size: 0.8rem;
    color: #718096;
    text-align: right;
    margin-top: 0.25rem;
  }
  
  .char-counter.warning {
    color: #e53e3e;
  }
  
  /* Form Footer */
  .form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .form-note {
    font-size: 0.85rem;
    color: #718096;
    text-align: center;
    margin: 0;
  }
  
  /* Enhanced Textarea Features */
  .form-group {
    position: relative;
  }
  
  .form-group label {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  /* Floating Label Alternative (optional) */
   .form-group {
    position: relative;
    margin-top: 1.5rem;
  }
  .form-group label {
    position: absolute;
    top: -0.75rem;
    left: 0.75rem;
    background: white;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    color: #6C63FF;
  } 
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .form-group textarea {
      min-height: 100px;
    }
  }
  
  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #6C63FF;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }
  
  .submit-btn:hover {
    background: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
  }
  
  .submit-btn i {
    transition: transform 0.3s ease;
  }
  
  .submit-btn:hover i {
    transform: translateX(3px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .contact-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .contact-card,
    .contact-form-card {
      padding: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .contact-section {
      padding: 3rem 1rem;
    }
    
    .contact-header h2 {
      font-size: 1.75rem;
    }
    
    .contact-option {
      padding: 1rem;
    }
    
    .contact-icon {
      width: 45px;
      height: 45px;
      margin-right: 1rem;
    }
  }


/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-methods {
        justify-content: center;
    }
    
    .urgency-box {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        margin-right: 10px;
    }

    .nav-links .cta-button{
        display: none;
    }
   
    
    .mobile-menu {
        display: block;
        margin-right: 10px;

    }

    
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .problem-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp a span {
        display: none;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .floating-whatsapp i {
        margin-right: 0;
    }
}


.testimonial-slide {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px 25px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.faq-item:hover {
    border-color: #e0e0e0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.25rem;
    cursor: pointer;
    position: relative;
    color: #2d3748;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    color: #718096;
}

.faq-question.active::after {
    content: "−";
    transform: rotate(0deg);
    color: #4a5568;
}

.faq-question:hover {
    color: #1a365d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    background: white;
}

.faq-answer.open {
    padding: 0 1.25rem 1.5rem;
    max-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        margin: 60px auto;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        padding: 1rem;
    }
}


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.3s ease;
}

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.2rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), #8a85ff);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-button, .call-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.call-button {
    background-color: white;
    color: var(--primary);
}

.whatsapp-button:hover, .call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-button i, .call-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-button, .call-button {
        justify-content: center;
    }
}



  



