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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0077b6;
    text-decoration: none;
}

.logo span {
    color: #00b4d8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0077b6;
}

.nav-phone {
    font-size: 14px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,119,182,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 65px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 12%;
    left: 5%;
    max-width: 500px;
    background: rgba(0,119,182,0.92);
    padding: 30px 40px;
    border-radius: 12px;
    color: white;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
    box-shadow: none;
}

.slider-nav:hover {
    background: transparent;
}

.slider-nav svg {
    width: 14px;
    height: 50px;
}

.slider-nav.prev { left: 25px; }
.slider-nav.next { right: 25px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

section {
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: #0077b6;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.advantages {
    background: white;
    padding: 60px 20px;
}

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

.advantage-card {
    background: white;
    padding: 35px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,119,182,0.15);
}

.advantage-card i {
    font-size: 2.8rem;
    color: #0077b6;
    margin-bottom: 18px;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0077b6;
}

.advantage-card p {
    color: #666;
    font-size: 0.95rem;
}

.about {
    background: #f0f9ff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-text h3 {
    font-size: 1.8rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,119,182,0.4);
}

.services {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 100px 20px;
}

.services .section-title h2,
.services .section-title p {
    color: white;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0077b6;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.campaign {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    text-align: center;
    color: white;
}

.campaign h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.campaign-content {
    text-align: center;
}

.campaign-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.campaign-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.campaign-item i {
    font-size: 1.5rem;
    color: #fff;
}

.campaign .btn-primary {
    background: white;
    color: #0077b6;
}

.campaign .btn-primary:hover {
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.gallery {
    background: #f0f9ff;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,53,102,0.9));
    color: white;
    padding: 25px 15px 15px;
}

.videos {
    background: #f0f9ff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-content {
    padding: 20px;
    text-align: center;
}

.video-card-content h3 {
    color: #0077b6;
    font-size: 1.1rem;
}

.articles {
    background: white;
}

.article-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-item.reverse {
    direction: rtl;
}

.article-item.reverse > * {
    direction: ltr;
}

.article-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.article-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-content h3 {
    font-size: 1.6rem;
    color: #0077b6;
    margin-bottom: 15px;
}

.article-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content .btn-read {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.article-content .btn-read:hover {
    gap: 12px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #0077b6;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: #f0f9ff;
    padding: 35px;
    border-radius: 16px;
}

.contact-form h3 {
    color: #0077b6;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
}

.map-section {
    background: #f0f9ff;
    padding: 80px 20px;
}

.map-section .section-title h2 {
    color: #0077b6;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    background: #03045e;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: #00b4d8;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a.facebook { background: #1877f2; color: white; }
.social-links a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-links a.whatsapp { background: #25d366; color: white; }
.social-links a.youtube { background: #ff0000; color: white; }
.social-links a.tiktok { background: #000; color: white; }

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

.footer-bottom a {
    color: #00b4d8;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37,211,102,0.5);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {
    .about-content {
        display: flex;
        flex-direction: column-reverse;
    }
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: auto;
        aspect-ratio: 13/9;
    }
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .navbar .container {
        gap: 10px;
    }
    .nav-phone {
        font-size: 12px;
        padding: 8px 15px;
        margin: 0;
    }
    .hamburger {
        margin: 0;
    }
    .hero-slider {
        margin-top: 60px;
    }
    .slide-content {
        left: 10px;
        right: auto;
        max-width: 60%;
        padding: 12px 18px;
        bottom: 8%;
    }
    .slide-content h2 {
        font-size: 1.3rem;
    }
    .slide-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .advantages .fade-in {
        opacity: 1;
        transform: translateY(0);
    }
    .article-item,
    .article-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-nav svg {
        width: 10px;
        height: 35px;
    }
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
}

@media (max-width: 500px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        max-width: 55%;
        padding: 8px 12px;
        bottom: 3%;
        border-radius: 8px;
    }
    .slide-content h2 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    .slide-content p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    .nav-phone {
        font-size: 11px;
        padding: 7px 12px;
    }
}

/* Fix: phone button and hamburger together on tablet */
@media (max-width: 820px) {
    .navbar .container {
        justify-content: flex-start;
    }
    .logo {
        margin-right: auto;
    }
    .nav-phone {
        margin-right: 10px;
    }
}

/* Scroll animations - slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.5s ease;
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll animations - slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.5s ease;
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Override fade-in to also be 1.5s */
.fade-in {
    transition: all 1.5s ease;
}

/* Prevent horizontal scroll from animations */
@media (max-width: 1024px) {
    section,
    footer {
        overflow: hidden;
    }
}




/* No horizontal scroll */
html, body {
    overflow-x: hidden !important;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }
}
