/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

/* Colors */
:root {
    --whatsapp-green: #25D366;
    --whatsapp-light-green: #DCF8C6;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background-light: #F8F9FA;
    --white: #ffffff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-secondary {
    background: var(--white);
    color: var(--whatsapp-green);
    border: 2px solid var(--whatsapp-green);
}

.btn-secondary:hover {
    background: var(--whatsapp-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--whatsapp-light-green) 0%, #f0f9ff 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--whatsapp-green);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.checkmark {
    color: var(--whatsapp-green);
    font-weight: 600;
}

.hero-cta {
    margin-top: 40px;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.section-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--whatsapp-green);
    font-style: italic;
}

.section-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* What is Section */
.what-is {
    background: var(--background-light);
}

/* Features Section */
.features {
    background: var(--white);
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Why Install Section */
.why-install {
    background: var(--background-light);
}

.benefits-list {
    display: grid;
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 15px 0;
}

.benefit-item .checkmark {
    font-size: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid var(--whatsapp-green);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Customization Section */
.customization {
    background: var(--background-light);
}

.customization-list {
    list-style: none;
    margin: 30px 0;
}

.customization-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
}

.customization-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--whatsapp-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--whatsapp-green);
}

.final-cta .btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.final-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .btn-primary.large {
        padding: 16px 28px;
        font-size: 18px;
    }
}

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

.hero-content,
.section-content,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

/* Colors */
:root {
    --whatsapp-green: #25D366;
    --whatsapp-light-green: #DCF8C6;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background-light: #F8F9FA;
    --white: #ffffff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-secondary {
    background: var(--white);
    color: var(--whatsapp-green);
    border: 2px solid var(--whatsapp-green);
}

.btn-secondary:hover {
    background: var(--whatsapp-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--whatsapp-light-green) 0%, #f0f9ff 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--whatsapp-green);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.checkmark {
    color: var(--whatsapp-green);
    font-weight: 600;
}

.hero-cta {
    margin-top: 40px;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.section-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--whatsapp-green);
    font-style: italic;
}

.section-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* What is Section */
.what-is {
    background: var(--background-light);
}

/* Features Section */
.features {
    background: var(--white);
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Why Install Section */
.why-install {
    background: var(--background-light);
}

.benefits-list {
    display: grid;
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 15px 0;
}

.benefit-item .checkmark {
    font-size: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid var(--whatsapp-green);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Customization Section */
.customization {
    background: var(--background-light);
}

.customization-list {
    list-style: none;
    margin: 30px 0;
}

.customization-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
}

.customization-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--whatsapp-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--whatsapp-green);
}

.final-cta .btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.final-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .btn-primary.large {
        padding: 16px 28px;
        font-size: 18px;
    }
}

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

.hero-content,
.section-content,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Hero Section Adjustments */
.hero-description-small {
    font-size: 1.1rem;
    margin-top: -30px; /* Adjust as needed to bring it closer to the description */
    margin-bottom: 40px;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    background: var(--white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card.featured {
    border: 3px solid var(--whatsapp-green);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.2);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--whatsapp-green);
    margin-bottom: 20px;
}

.plan-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✅";
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing .btn-primary,
.pricing .btn-secondary {
    width: 100%;
    margin-top: auto; /* Pushes button to the bottom */
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}



/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--whatsapp-green);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}




/* Contact Section */
.contact {
    background: var(--background-light);
    padding: 80px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--whatsapp-green);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: auto;
    padding: 14px 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #cccccc;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .logo {
    height: 30px;
    margin-right: 10px;
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 5px;
    color: #cccccc;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--whatsapp-green);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin-bottom: 5px;
    color: #cccccc;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        text-align: center;
    }
}



/* Contact Form Section */
.contact-form-section {
    background: var(--background-light);
    padding: 80px 0;
}

.contact-form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-form-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--whatsapp-green);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ea952 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* Mobile Hero Illustration Fix */
@media (max-width: 768px) {
    .hero-illustration {
        /* Fix illustration position on mobile to prevent covering text */
        position: static !important;
        transform: none !important;
        margin-top: 30px;
        max-width: 350px;
        order: 2; /* Ensure illustration comes after text */
    }
    
    .hero-content {
        /* Ensure proper flex direction on mobile */
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        order: 1; /* Ensure text comes first */
    }
}

@media (max-width: 480px) {
    .hero-illustration {
        max-width: 300px;
        margin-top: 20px;
    }
}


/* Pricing Accordion for Mobile */
.pricing-accordion-text {
    display: none; /* Hidden by default on desktop */
    color: var(--text-secondary);
    padding: 10px 0;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1rem;
    transition: color 0.3s ease;
    user-select: none;
}

.pricing-accordion-text:hover {
    color: var(--whatsapp-green);
}

.accordion-text {
    margin-right: 8px;
    text-decoration: underline;
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.pricing-accordion-text.active .accordion-icon {
    transform: rotate(180deg);
}

.pricing-accordion-text.active .accordion-text::after {
    content: " (ocultar)";
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pricing-accordion-text {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .pricing-grid {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.3s ease;
        opacity: 0;
    }
    
    .pricing-grid.active {
        max-height: 2000px; /* Large enough to accommodate all content */
        opacity: 1;
        margin-top: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        margin-bottom: 0;
    }
}

@media (min-width: 769px) {
    .pricing-grid {
        /* Ensure normal display on desktop */
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
}


/* Hide testimonials section on mobile only */
@media (max-width: 768px) {
    .testimonials {
        display: none;
    }
}


/* Features CTA Button */
.features-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-cta .btn-primary.large {
    margin: 0 auto;
    display: inline-block;
    min-width: 250px;
}

@media (max-width: 768px) {
    .features-cta {
        margin-top: 40px;
        padding: 25px 15px 10px 15px;
    }
    
    .features-cta .btn-primary.large {
        min-width: 200px;
        width: auto;
    }
}



/* FAQs Page Styles */
.faqs-hero {
    background: var(--background-light);
    padding: 100px 0 60px 0;
    text-align: center;
}

.faqs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faqs-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.faqs-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.faqs-section {
    background: var(--white);
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-arrow {
    font-size: 1rem;
    color: var(--whatsapp-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faqs-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--background-light);
    border-radius: 20px;
}

.faqs-cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.faqs-cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Active nav link style */
.nav-link.active {
    color: var(--whatsapp-green);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faqs-hero {
        padding: 80px 0 40px 0;
    }
    
    .faqs-title {
        font-size: 2.2rem;
    }
    
    .faqs-subtitle {
        font-size: 1.1rem;
    }
    
    .faqs-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
        gap: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faqs-cta {
        margin-top: 60px;
        padding: 40px 20px;
    }
    
    .faqs-cta-title {
        font-size: 1.6rem;
    }
    
    .faqs-cta-description {
        font-size: 1rem;
    }
}

