:root {
    --primary-color: #008080; 
    --secondary-color: #20c997; 
    --accent-color: #ff6b6b; 
    --dark-text: #2d3436;
    --light-bg: #f8fbfb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Cairo', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.7;
}

a { text-decoration: none; }
ul { list-style: none; }
header {
    background: linear-gradient(135deg, var(--primary-color), #005555);
    color: var(--white);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0; left: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.desktop-nav ul {
    display: flex;
    gap: 25px;
}
.desktop-nav ul li a {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}
.desktop-nav ul li a:hover { color: var(--secondary-color); }

.call-btn-header {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 0.95rem;
}
.call-btn-header:hover { background: var(--secondary-color); color: white; }
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s;
}
.header-actions { display: flex; align-items: center; gap: 15px; }
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5); 
    z-index: 2000;
    transition: 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: flex-end; 
}

.mobile-menu-overlay.active {
    right: 0; 
}

.mobile-menu-content {
    width: 80%;
    max-width: 300px;
    background: linear-gradient(160deg, #fff, #f0fdfa);
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    position: relative;
    overflow-y: auto;
}

.close-menu-btn {
    align-self: flex-end;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.mobile-logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.mobile-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.mobile-link i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.mobile-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.mobile-btns { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.m-btn { width: 45px; height: 45px; border-radius: 50%; border: none; font-size: 1.2rem; color: white; cursor: pointer; }
.m-btn.call { background: var(--primary-color); }
.m-btn.whats { background: #25D366; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.hero {
    height: 100vh; 
    background: url('images/IMG-20251210-WA0004.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 0; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,80,80,0.5));
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f1f1f1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.btn-primary:hover { transform: scale(1.05); }

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
}
.btn-secondary:hover { background-color: #f0f0f0; }
.slider-section {
    background-color: #f8fbfb; 
    padding: 60px 0;
}

.section-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.section-header h2 { 
    color: var(--primary-color); 
    margin-bottom: 10px; 
    font-size: 2.2rem; 
    font-weight: 800;
}

.slider-section .section-header h2 { 
    color: var(--primary-color); 
}

.slider-section .section-header p { 
    color: #555; 
    font-size: 1.1rem;
}

.line { 
    width: 80px; 
    height: 4px; 
    background: var(--secondary-color); 
    margin: 10px auto; 
    border-radius: 2px;
}
.swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
    background-color: #fff; 
    border: 1px solid #eee;
}

.swiper-slide {
    position: relative;
    background: #fff; 
    display: flex;            
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    opacity: 1; 
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    right: 30px; 
    background: rgba(0, 128, 128, 0.9); 
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--secondary-color); 
}
@media (max-width: 768px) {
    .swiper {
        height: 300px; 
    }
    .slide-caption {
        right: 50%;
        transform: translateX(50%); 
        bottom: 10px;
        width: 90%;
        text-align: center;
        font-size: 0.9rem;
    }
}
.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    background: transparent !important; 
    width: auto;
    height: auto;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 2rem; 
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
section { padding: 70px 0; }

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.focus-text h3 { color: var(--dark-text); margin-bottom: 20px; font-size: 1.6rem; }
.check-list li { margin: 15px 0; display: flex; gap: 10px; align-items: start; }
.check-list i { color: var(--secondary-color); margin-top: 5px; }
.focus-image img { width: 100%; border-radius: 20px; box-shadow: -15px 15px 0 var(--secondary-color); }

.services { background: var(--light-bg); }
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.card {
    background: white; padding: 30px; border-radius: 20px;
    text-align: center; box-shadow: var(--shadow);
    transition: 0.3s; border: 1px solid #eee;
}
.card:hover { transform: translateY(-10px); }
.highlight-card { border: 2px solid var(--primary-color); background: #fbfeff; }
.icon-box { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.card-btn {
    margin-top: 15px; padding: 10px 25px;
    background: var(--primary-color); color: white;
    border: none; border-radius: 20px; cursor: pointer;
    font-family: 'Cairo', sans-serif;
}
.video-grid-separate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    justify-content: center;
}
.video-card { background: white; padding: 15px; border-radius: 15px; box-shadow: var(--shadow); text-align: center; }
.video-card video { width: 100%; border-radius: 10px; height: 250px; object-fit: cover; background: #000; }
.video-card h3 { margin-top: 10px; font-size: 1.1rem; }
.areas { background: var(--primary-color); color: white; }
.areas .section-header h2 { color: white; }
.areas .section-header p { color: #ddd; }
.areas-content { text-align: center; }
.tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 25px; }
.tag {
    background: rgba(255,255,255,0.15); padding: 8px 15px;
    border-radius: 20px; font-size: 1rem; border: 1px solid rgba(255,255,255,0.2);
}
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding-top: 60px;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
    font-size: 1.3rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: white;
    font-size: 1.1rem;
    transition: 0.3s;
}
.contact-info a:hover { color: var(--secondary-color); }

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    background: #151e26;
}
@media (max-width: 768px) {
    .footer-content {
        text-align: center; 
    }
    .footer-col h3 {
        display: inline-block; 
    }
    .contact-info p {
        justify-content: center; 
    }
}
.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 80px; 
}
.floating-btns {
    position: fixed; bottom: 20px; left: 20px;
    display: flex; flex-direction: column; gap: 10px; z-index: 900;
}
.float-btn {
    padding: 12px 20px; border-radius: 50px; color: white;
    font-weight: bold; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp { background: #25D366; }
.phone { background: var(--primary-color); }

.modal-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.7);
    z-index: 2500; justify-content: center; align-items: center;
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s;
}
.modal-content {
    background: white; padding: 30px; border-radius: 20px;
    width: 90%; max-width: 400px; text-align: center; position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.close-modal {
    position: absolute; top: 10px; left: 15px;
    font-size: 2rem; cursor: pointer; color: #777;
}
.modal-options { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
.modal-btn {
    padding: 15px; background: #f4f4f4; color: var(--dark-text);
    font-weight: bold; border-radius: 12px; border: 2px solid transparent;
    transition: 0.3s;
}
.modal-btn:hover { border-color: var(--primary-color); background: white; color: var(--primary-color); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .call-btn-header { display: none; }
    .menu-toggle { display: flex; } 
    .hero h1 { font-size: 1.8rem; margin-bottom: 15px; }
    .hero p { font-size: 1rem; padding: 0 10px; }

    .focus-grid, .video-grid-separate { grid-template-columns: 1fr; }
    .swiper { 
        height: 320px; 
    } 
    
    .swiper-slide img {
        object-fit: contain; 
    }
    .slide-caption { 
        width: 95%; 
        right: 50%; 
        transform: translateX(50%); 
        bottom: 10px; 
        font-size: 0.85rem; 
        padding: 8px 15px; 
        white-space: nowrap; 
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 1.2rem; 
    }
    .footer-content { text-align: center; }
}
.dev-credits {
    font-size: 0.8rem; 
    color: rgba(255, 255, 255, 0.4); 
    margin-top: 15px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    direction: ltr; 
}

.dev-credits a {
    color: var(--secondary-color); 
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dev-credits a:hover {
    color: white; 
    text-shadow: 0 0 10px var(--secondary-color); 
    letter-spacing: 1px; 
}
