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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;

}

.gradient-bg {
    background: linear-gradient(135deg, #84e5fb, #324295);
}

.container {
    width: 100vw;
    margin: 0 auto;
    padding: 0 10%;
}
.full_container {
    width: 100vw;
    margin: 0 auto;
    padding: 0;
    min-height: 50vh;
    transition: min-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.form-container {
    height: 50vh;
}
.form-container div {
    height: 50vh;
}
/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
}

nav.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.language-flags {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    align-items: center;
}

.lang-flag {
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    padding: 2px;
}

.lang-flag:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

nav a {
    font-family: 'Ubuntu', sans-serif;
    color: #324295;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #84e5fb;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #84e5fb, #324295);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100vw;
}

.hero h1 {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Questionnaire Section */
.questionnaire {
    background-color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.typeform-wrapper-r82j5kbb {
    width: 100%;
    height: 500px;
}

/* Motto Section */
.motto {
    padding: 50px 0;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    background: #e2c4b3;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    background: linear-gradient(135deg, #84e5fb, #324295);
}

/* Services Section */
.services {
    background-color: white;
    padding: 80px 0;
}

.services h2 {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    color: #5d97ca;
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    margin-bottom: 15px;
    color: #63a3d2;
    font-size: 1.5rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

h2 {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    color: #5d97ca;
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    background-color: #324295;
    color: white;
    padding: 40px 0;
    background: linear-gradient(135deg, #84e5fb, #324295);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
    text-align: center;
}

.footer-section h3 {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #99e4f7;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.title_media {
    margin: 0 15px !important;
}
.title_media i {
    font-size: 3rem;
}

.header-img {
    position: absolute;
    width: 26vw;
    right: 24px;
    top: 16%;
    display: block;
}

.section-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.image-border {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.img-horizontal{
    width: 75vw;
    max-width: 720px;
}

.img-vertical {
    width: 50vh;
    margin: 0;
    float: inline-end;
    margin: 0 30px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #324295;
    margin: 6px 0;
    transition: 0.3s;
}

/* Mobile Styles Update */
@media (max-width: 768px) {
    .container {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .typeform-wrapper-r82j5kbb {
        height: 400px;
    }

    nav.container {
        padding-right: 60px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 30px 20px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 25px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    /* Ensure menu items are visible when active */
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .title_media {
        font-size: 1.5rem;
    }
    
    .header-img {
        display: none;
    }

    .motto {
        font-size: 1.8rem;
        padding: 30px 0;
    }

    .services h2, .about h2 {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 20px;
    }

    .about p {
        font-size: 1rem;
    }

    .whatsapp-chat {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .img-horizontal {
        width: 100%;
    }

    .img-vertical {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }

    /* Burger menu animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Remove Google Translate mobile styles */
    #google_translate_element,
    .goog-te-gadget-simple {
        display: none !important;
    }

    header {
        padding: 15px 0;
    }

    nav.container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 30px;
    }

    nav a {
        font-size: 1rem;
    }

    nav {
        padding-right: 60px;
    }

    .nav-links {
        justify-content: center; /* Center align items in mobile menu */
        padding-right: 0;
    }
    .language-flags {
        margin: 0;
        justify-content: center;
    }
    
    .lang-flag {
        font-size: 1.5rem;
    }

    .questionnaire {
        padding: 20px 0;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .form-step {
        padding: 15px 0;
    }

    .full_container {
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .motto {
        font-size: 1.5rem;
    }

    .services h2, .about h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
    }
}

/* Remove all Google Translate styles */
.skiptranslate,
#google_translate_element,
.google_active,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-menu-value {
    display: none !important;
}

#google_translate_element {
    margin-left: 20px;
}

#google_translate_element .goog-te-gadget-simple {
    background-color: transparent;
    border: none;
    padding: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    color: #324295;
}

#google_translate_element .goog-te-gadget-simple img {
    display: none;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
    color: #324295;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value:hover {
    color: #84e5fb;
    text-decoration: none;
}

@media (max-width: 768px) {
    #google_translate_element {
        position: absolute;
        top: 20px;
        right: 70px;
    }
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    flex-grow: 1;
}

.contact-form {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-step {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.form-step.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    margin-bottom: 2rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #84e5fb, #324295);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #324295;
    transition: transform 0.3s ease;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.option-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.option-card.selected {
    border-color: #324295;
    background: rgba(132, 229, 251, 0.1);
}

.form-navigation {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 2rem;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.nav-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.nav-btn.fading {
    opacity: 0;
}

.prev-btn {
    background: #f5f5f5;
    color: #666;
}

.next-btn {
    background: linear-gradient(135deg, #84e5fb, #324295);
    color: white;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #84e5fb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(132, 229, 251, 0.2);
}

select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    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;
}

select:focus {
    border-color: #84e5fb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(132, 229, 251, 0.2);
}

.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

#lottie-container {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #324295;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666;
    margin-bottom: 2rem;
}

.success-message.error {
    background: rgba(255, 255, 255, 0.98);
}

.success-message.error h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.success-message.error .next-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    cursor: pointer;
}

.success-message.error .next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.lang-flag:hover .flag-icon {
    transform: scale(1.1);
}

