@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sunshine-pink: #FF6B9D;
    --sunshine-green: #A4DE6C;
    --sunshine-orange: #FF8C42;
    --sunshine-yellow: #FFD93D;
    --sunshine-blue: #4ECDC4;
    --light-navy: #5A5A9A;
    --lighter-navy: #6A6AAA;
    --soft-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-light: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #2A2A4A 0%, #1E1E38 100%);
    background-attachment: fixed;
}

/* PARTICLES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sunshine-blue);
    animation: floatParticle 6s infinite linear;
    opacity: 0.7;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--soft-white);
}

.logo-3d {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange), var(--sunshine-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: 150px;
}

.nav-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.2) 0%,
        rgba(255, 140, 66, 0.2) 25%,
        rgba(78, 205, 196, 0.2) 75%,
        rgba(164, 222, 108, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-text {
    color: var(--soft-white);
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange), var(--sunshine-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 140, 66, 0.8)); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* BUTTONS */
.btn-3d {
    position: relative;
    padding: 1.4rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--sunshine-blue), var(--sunshine-green));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.6);
}

/* SECTIONS */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-3d {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-3d:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* STATS */
.stats-section {
    background: linear-gradient(135deg, #2A2A4A 0%, #0F1419 100%);
}

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

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--sunshine-yellow), var(--sunshine-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--soft-white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* GALLERY */
.gallery-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* TESTIMONIALS */
.testimonials-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-3d {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.5s ease;
}

.testimonial-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--soft-white);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--sunshine-pink);
    object-fit: cover;
}

.author-info h4 {
    color: var(--sunshine-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA */
.cta-final {
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.9) 0%,
        rgba(78, 205, 196, 0.9) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--lighter-navy) 100%);
    color: var(--soft-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--sunshine-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--sunshine-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* FORMS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: transparent;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--soft-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--sunshine-pink);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.form-control {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background-color: #FFFFFF !important;
    color: #000000 !important;
    font-size: 16px !important;
    margin-bottom: 1rem !important;
    box-sizing: border-box !important;
}

.form-control:focus {
    border-color: #FF8C42 !important;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2) !important;
    outline: none !important;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

textarea.form-control {
    min-height: 120px !important;
    resize: vertical !important;
}

.submit-btn, .submit-btn-simple {
    width: 100%;
    background: linear-gradient(45deg, var(--sunshine-pink), var(--sunshine-orange));
    color: #ffffff;
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.submit-btn:hover, .submit-btn-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* PHONE COUNTRY SELECTOR */
.phone-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-selector {
    position: relative;
    min-width: 80px;
}

.country-toggle {
    background: #FFFFFF !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    color: #000000 !important;
    padding: 12px 15px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.country-toggle:hover {
    border-color: #FF8C42 !important;
}

.country-toggle:focus {
    border-color: #FF8C42 !important;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2) !important;
    outline: none !important;
}

.country-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 140px;
}

.country-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    color: #000000;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background-color: #f8f9fa;
}

.country-option.selected {
    background-color: rgba(255, 140, 66, 0.1);
    color: #FF8C42;
}

.country-flag {
    font-size: 18px;
    flex-shrink: 0;
}

.country-code {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

.country-name {
    display: none !important;
}

.phone-input {
    flex: 1;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background-color: #FFFFFF !important;
    color: #000000 !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

.phone-input:focus {
    border-color: #FF8C42 !important;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2) !important;
    outline: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .cards-grid, .stats-grid, .testimonials-3d { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-content { padding: 2rem 1rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn-3d { width: 100%; }
}

/* LANGUAGE SELECTOR IMPROVED STYLES */
.language-selector {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid var(--sunshine-orange) !important;
    border-radius: 25px !important;
    color: var(--soft-white) !important;
    padding: 8px 20px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    outline: none !important;
}

.language-toggle:hover {
    background: rgba(255, 140, 66, 0.2) !important;
    transform: translateY(-2px) !important;
}

.language-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid var(--sunshine-orange) !important;
    border-radius: 15px !important;
    min-width: 160px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    margin-top: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    z-index: 1001 !important;
    display: flex !important;
    flex-direction: column !important;
}

.language-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.language-option {
    display: block !important;
    padding: 12px 20px !important;
    color: #333333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.language-option:last-child {
    border-bottom: none !important;
}

.language-option:hover {
    background: rgba(255, 140, 66, 0.15) !important;
    color: #FF8C42 !important;
    transform: translateX(-3px) !important;
}

.language-option.active {
    background: rgba(255, 107, 157, 0.15) !important;
    color: #FF6B9D !important;
    font-weight: 700 !important;
}

/* Adjust nav links margin for language selector */
.nav-links {
    margin-right: 180px;
}

/* Mobile responsive adjustments for language selector */
@media (max-width: 768px) {
    .language-selector {
        right: 1rem;
    }
    
    .nav-links {
        display: none;
        margin-right: 0;
    }
    
    .language-toggle {
        padding: 6px 15px !important;
        font-size: 0.9rem !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
}
