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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Brand Section */
.brand-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
    color: white !important;
    padding: 80px 0 !important;
    text-align: center !important;
    position: relative !important;
}

.brand-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.brand-title {
    font-size: clamp(1.5rem, 6vw, 4rem) !important;
    font-weight: bold !important;
    margin-bottom: 1.5rem !important;
    color: #fbbf24 !important;
    line-height: 1.1 !important;
}

.brand-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.6rem) !important;
    margin-bottom: 0 !important;
    opacity: 0.95 !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

/* Value Proposition Section */
.value-section {
    background: white;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.value-main {
    font-size: clamp(1.2rem, 4.5vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.3;
}

.value-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #6b7280;
    line-height: 1.7;
}

.value-cta-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
}

.hit-limit {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: clamp(1.3rem, 5vw, 2.5rem);
    margin-bottom: 4rem;
    color: #1e3a8a;
    font-weight: 600;
    line-height: 1.2;
}

.testimonials-title {
    position: relative;
    padding-bottom: 1rem;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-left: 30px;
    padding-top: 10px;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #fbbf24;
    position: absolute;
    top: -5px;
    left: 15px;
    z-index: 1;
}

.testimonial-card cite {
    font-weight: 600;
    color: #1e3a8a;
    font-style: normal;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: clamp(1.3rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.footer-disclaimer {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #374151;
    border-radius: 10px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Large tablets and small laptops */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .brand-section {
        padding: 60px 0;
    }
    
    .brand-content {
        max-width: 90%;
    }
    
    .value-section {
        padding: 60px 0;
    }
    

    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .footer-nav a {
        font-size: 1rem;
        text-align: center;
    }
    
    .whatsapp-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .brand-section {
        padding: 30px 0;
    }
    
    .brand-content {
        max-width: 98%;
        padding: 0 10px;
    }
    
    .brand-title {
        font-size: clamp(1.3rem, 7vw, 2rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .brand-subtitle {
        font-size: clamp(0.8rem, 4vw, 1.2rem) !important;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
        white-space: nowrap;
        text-align: center;
        display: block;
    }
    
    .footer-content {
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-card blockquote {
        padding-left: 20px;
        padding-top: 5px;
        font-size: 1rem;
    }
    
    .testimonial-card blockquote::before {
        font-size: 2rem;
        top: -2px;
        left: 8px;
    }
    
    .testimonials-title::after {
        width: 120px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .brand-section {
        padding: 40px 0;
    }
    
    .brand-content {
        max-width: 95%;
    }
    
    .value-section {
        padding: 50px 0;
    }
    
    .value-description {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 320px;
        margin: 2rem auto 0;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 2rem auto 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card blockquote {
        padding-left: 25px;
        padding-top: 8px;
    }
    
    .testimonial-card blockquote::before {
        font-size: 2.5rem;
        top: -3px;
        left: 10px;
    }
    

    
    .whatsapp-btn {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .floating-whatsapp {
        bottom: 15px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-nav a {
        font-size: 1rem;
        white-space: nowrap;
        text-align: center;
        display: block;
    }
    
    .footer-content {
        align-items: center;
        justify-content: center;
    }
    
    .testimonials-title::after {
        width: 140px;
        height: 2px;
    }
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2adc71 0%, #128c7e 100%);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 1.2rem;
    height: 1.2rem;
    animation: pulse 2s infinite;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Focus States for Accessibility */
.footer-nav a:focus,
.btn:focus,
.whatsapp-btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}
