/* ======================================== */
/* COMPONENTS                               */
/* ======================================== */

/* ---------------------------------------- */
/* BOTTOM MOBILE MENU                      */
/* ---------------------------------------- */
.bottom-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(382px, calc(100vw - 32px));
    height: 56px;
    background: #1B9AA6;
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(15px, 4vw, 31px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.bottom-menu-icon {
    width: 59px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.bottom-menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.bottom-menu-icon:active {
    transform: translateY(0);
}

.bottom-menu-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* ---------------------------------------- */
/* MODALS                                   */
/* ---------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 2000;
}

.modal-overlay.show {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 375px;
    width: 100%;
    border-radius: 25px 25px 0 0;
    max-height: 70vh;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    background: #1B9AA6;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 20px;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
}

/* ---------------------------------------- */
/* SEARCH MODAL                             */
/* ---------------------------------------- */
.search-modal-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-family: inherit;
}

/* ---------------------------------------- */
/* SERVICE LIST                             */
/* ---------------------------------------- */
.service-list {
    list-style: none;
}

.service-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item:hover {
    background: rgba(27, 154, 166, 0.05);
    padding-left: 10px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-bullet {
    width: 8px;
    height: 8px;
    background: #2FC3D2;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* ---------------------------------------- */
/* SIDEBAR                                  */
/* ---------------------------------------- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 3000;
}

.sidebar-overlay.show {
    display: block;
}

.sidebar {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: white;
    border-radius: 25px 25px 0 0;
    transform: translateX(-50%) translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 3001;
}

.sidebar-overlay.show .sidebar {
    transform: translateX(-50%) translateY(0);
}

.sidebar-header {
    padding: 20px;
    background: #1B9AA6;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sidebar-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------------- */
/* FORM                                     */
/* ---------------------------------------- */
.form-container {
    padding: 30px 20px 150px 20px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2FC3D2;
    background: white;
    box-shadow: 0 0 0 3px rgba(47, 195, 210, 0.1);
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #3FBFA0;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0A2A4A;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 42, 74, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 42, 74, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease;
}

.success-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.success-subtext {
    font-size: 14px;
    color: #666;
}

/* ---------------------------------------- */
/* ABOUT US                                 */
/* ---------------------------------------- */
.about-section {
    background-color: #fafafa;
    padding: 120px 0 120px;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-images {
    flex: 0 0 45%;
    display: flex;
    gap: 20px;
    position: relative;
}

.about-img-main {
    flex: 0 0 65%;
    border-radius: 12px;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.about-img-side {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-side-top,
.about-img-side-bottom {
    border-radius: 12px;
    overflow: hidden;
}

.about-img-side-top img,
.about-img-side-bottom img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-label {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #1B9AA6;
    margin-bottom: 10px;
    font-family: 'Geist', sans-serif;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    color: #0A2A4A;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Geist', sans-serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 30px;
}

.about-list li {
    width: 50%;
    padding: 8px 0 8px 30px;
    font-size: 16px;
    color: #333;
    position: relative;
    line-height: 1.5;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #2FC3D2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list li::after {
    content: '\2713';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    background: #1B9AA6;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
    font-family: 'Geist', sans-serif;
}

.about-btn:hover {
    background: #15858F;
}

@media (max-width: 768px) {
    .about-section {
        display: none;
    }
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    .about-images {
        flex: none;
        width: 100%;
    }
    .about-title {
        font-size: 26px;
    }
    .about-list li {
        width: 100%;
    }
}

/* ---------------------------------------- */
/* FOOTER                                   */
/* ---------------------------------------- */
.footer {
    background: #0A2A4A;
    padding: 40px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 60px;
    height: auto;
    display: block;
}

.footer-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-services-title {
    font-size: 16px;
    font-weight: 700;
    color: #2FC3D2;
    margin: 0 0 12px;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.footer-services-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-services-list li i.material-icons {
    font-size: 14px;
    color: #2FC3D2;
}

.footer-services-list li:hover {
    color: #2FC3D2;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-whatsapp:hover {
    background: #1DA851;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-services-list {
        grid-template-columns: 1fr 1fr;
    }
    .footer-services-list li i.material-icons {
        display: none;
    }
    .footer {
        padding: 46px 0 100px 0;
    }
    .footer-brand,
    .footer-services,
    .footer-bottom {
        display: none;
    }
    .footer-logo {
        width: 50px;
    }
}

/* ---------------------------------------- */
/* HERO MOBILE (≤768px)                    */
/* ---------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    overflow: hidden;
    display: none;
    background: #0A2A4A;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-card-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.hero-card-col svg {
    width: 32px;
    height: 32px;
    stroke: #2FC3D2;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 6px;
}

.hero-card-number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ---------------------------------------- */
/* ANIMATIONS                               */
/* ---------------------------------------- */
@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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