/* Reset and 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: #333;
    overflow-x: hidden;
}

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

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight {
    color: #fbbf24;
    font-weight: 600;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #fbbf24;
    color: #1e3a8a;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Quick Form Card */
.quick-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.quick-form-card h3 {
    color: #1e3a8a;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-form input,
.quick-form select {
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quick-form input:focus,
.quick-form select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-submit-btn {
    background: #1e3a8a;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1e3a8a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* Packages Section */
.packages {
    padding: 100px 0;
}

.package-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #fbbf24;
    display: inline-block;
    width: 100%;
}

.packages-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #fbbf24;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1e3a8a;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h4 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    background: #1e3a8a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #1e40af;
}

.featured .package-btn {
    background: #fbbf24;
    color: #1e3a8a;
}

.featured .package-btn:hover {
    background: #f59e0b;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

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

.contact-info h2 {
    color: #1e3a8a;
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fbbf24;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0 25px;
        min-height: 100vh;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Section spacing improvements */
    .benefits,
    .packages,
    .services,
    .cta-section,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-ctas {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 15px;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .quick-form-card {
        margin-top: 25px;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .quick-form-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .quick-form input,
    .quick-form select {
        padding: 16px 14px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-submit-btn {
        padding: 18px 16px;
        font-size: 1.05rem;
        border-radius: 6px;
    }
    
    .packages-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 250px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    
    /* Ensure WhatsApp button doesn't overlap with forms */
    .hero .whatsapp-float {
        bottom: 25px;
    }
    
    /* Better mobile typography */
    .hero-text {
        line-height: 1.5;
    }
    
    .quick-form-card h3 {
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 16px 24px;
        font-size: 1.05rem;
        min-height: 48px;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .badge {
        flex: 1;
        min-width: 140px;
        text-align: center;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .quick-form-card {
        padding: 22px 18px;
        margin-top: 25px;
        width: 100%;
        max-width: none;
    }
    
    .quick-form {
        gap: 18px;
    }
    
    .quick-form input,
    .quick-form select {
        min-height: 48px;
        font-size: 16px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

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

/* Form Validation Styles */
.form-error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-success {
    border-color: #10b981 !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .cta-primary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .hero-ctas,
    .cta-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}