
:root {
    --primary: #0A192F;    
    --secondary: #172a45;  
    --accent: #00d4ff;     
    --text-dark: #333;  
    --text-light: #e6f1ff;
    --white: #ffffff;
    --main-bg: #e8edf2;    
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--main-bg);
    overflow-x: hidden;
    line-height: 1.8;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
p { margin-bottom: 1.2rem; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 260px;
    background: var(--primary);
    color: white;
    padding: 15px;
    z-index: 2000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    display: none;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-content { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cookie-content h4 { color: var(--accent); margin: 0; font-size: 1rem; }
.cookie-content p { margin: 0; font-size: 0.8rem; line-height: 1.4; color: #ddd; }
.cookie-btn-group { display: flex; gap: 8px; width: 100%; }
.btn-accept, .btn-remind { flex: 1; border: none; padding: 5px 0; border-radius: 4px; font-weight: bold; cursor: pointer; font-size: 0.8rem; transition: 0.3s; text-align: center; }
.btn-accept { background: var(--accent); color: var(--primary); }
.btn-accept:hover { background: white; }
.btn-remind { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-remind:hover { background: rgba(0, 212, 255, 0.1); }

/* Header & Nav */
.top-info-bar { background: var(--primary); color: var(--text-light); padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-mini span { margin-right: 20px; opacity: 0.9; }
.contact-mini i { color: var(--accent); margin-right: 6px; }
.lang-select { background: #0A192F; color: white; border: 1px solid #555; padding: 2px 5px; margin-right: 15px; border-radius: 4px; }
.btn-login { background: var(--accent); color: var(--primary); border: none; padding: 4px 15px; border-radius: 20px; font-weight: 700; cursor: pointer; font-size: 0.8rem; }
#main-header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
#main-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--primary); position: relative; }
.nav-link:hover { color: var(--accent); }
.btn-contact { background: var(--primary); color: white; padding: 10px 25px; border-radius: 4px; font-weight: 600; transition: 0.3s; }
.btn-contact:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-top: 4px solid var(--accent); padding: 10px 0; border-radius: 0 0 4px 4px; z-index: 1001; }
.dropdown:hover .dropdown-menu { display: block; animation: fadeIn 0.3s; }
.dropdown-menu a { display: block; padding: 12px 20px; font-size: 0.9rem; color: #555; border-bottom: 1px solid #f0f0f0; }
.dropdown-menu a:hover { background: #f8f9fa; color: var(--primary); padding-left: 25px; }

/* Hero */
#hero-section { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden; background: #000; }
#hero-slider-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,25,47,0.85) 0%, rgba(10,25,47,0.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content h2 { font-size: 3.5rem; margin-bottom: 15px; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.9; font-weight: 300; }
.btn-primary { background: var(--accent); color: var(--primary); padding: 15px 40px; border: none; font-size: 1rem; font-weight: 800; border-radius: 5px; cursor: pointer; letter-spacing: 0.5px; transition: 0.3s; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(0,212,255,0.4); }

/* Animation */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeIn 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; }

/* Main Content */
#main-content { padding: 10px 20px 60px; min-height: 500px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; margin-bottom: 60px; }
.service-card { background: white; padding: 40px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.4s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.03); cursor: pointer; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-bottom: 4px solid var(--accent); }
.service-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; transition: 0.4s; }
.service-card h4 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); transition: 0.4s; }
.service-card p { font-size: 0.95rem; color: #666; line-height: 1.6; transition: 0.4s; }
.service-card:hover h4, .service-card:hover p, .service-card:hover i { color: white !important; }
#readMoreBtn { color: var(--accent); font-weight: bold; cursor: pointer; text-decoration: none; margin-left: 5px; font-size: 0.95rem; }
#readMoreBtn:hover { text-decoration: underline; }
.long-form-article { background: white; padding: 50px; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); margin-bottom: 60px; margin-top: 40px; }
.long-form-article h3 { font-size: 2.2rem; margin-bottom: 30px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; display: inline-block; }
.long-form-article p { font-family: 'Merriweather', serif; font-size: 1.1rem; color: #444; margin-bottom: 25px; text-align: justify; }
.highlight-box { background: #f8f9fa; border-left: 5px solid var(--accent); padding: 20px; margin: 30px 0; font-style: italic; color: #555; }
.feature-block { display: flex; gap: 50px; align-items: flex-start; margin-bottom: 80px; margin-top: 60px; }
.feature-block:nth-child(even) { flex-direction: row-reverse; }
.f-text { flex: 1.2; }
.f-text h3 { font-size: 2rem; margin-bottom: 20px; }
.f-text p { font-size: 1.1rem; color: #555; }
.f-media { flex: 0.8; position: relative; }
.context-img-container { width: 100%; height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); border: 5px solid white; }
.context-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.context-img-container:hover img { transform: scale(1.05); }

/* Contact Layout */
.contact-layout-main { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.contact-row-horizontal { display: flex; gap: 30px; }
.contact-row-horizontal .addr-card { flex: 1; }
.addr-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.addr-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.addr-map-container { height: 250px; width: 100%; overflow: hidden; }
.addr-map-container iframe { width: 100%; height: 100%; border: 0; }
.addr-details { padding: 25px; }
.addr-details h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.addr-details p { color: #555; font-size: 0.95rem; margin-bottom: 5px; line-height: 1.5; font-weight: 500; }
.form-box { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
input, textarea { width: 100%; padding: 12px 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; background: #f8f9fa; }

/* Footer */
footer { background: var(--secondary); color: #a8b2d1; padding: 70px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 20px; }
.link-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.footer-col h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 25px; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px; }
.socials a { color: var(--white); font-size: 1.4rem; margin-right: 15px; transition: 0.3s; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; font-size: 0.85rem; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(10,25,47,0.9); backdrop-filter: blur(5px); }
.modal-content { background: white; width: 350px; margin: 10vh auto; padding: 40px; border-radius: 8px; position: relative; }
.close-btn { position: absolute; right: 20px; top: 20px; font-size: 24px; cursor: pointer; }
.btn-full { width: 100%; background: var(--primary); color: white; padding: 12px; border: none; font-weight: bold; cursor: pointer; border-radius: 5px; }

@media (max-width: 1024px) {
    .container { padding: 0 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }
    #main-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 20px 0; gap: 0; }
    #main-menu.active { display: flex; }
    #main-menu li { width: 100%; text-align: center; }
    #main-menu a { display: block; padding: 15px; border-bottom: 1px solid #eee; }
    .dropdown-menu { position: static; box-shadow: none; border-top: none; background: #f9f9f9; display: none; }
    .dropdown:hover .dropdown-menu { display: block; } 
    #hero-section { height: 400px; }
    .hero-content h2 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .feature-block, .feature-block:nth-child(even) { flex-direction: column; }
    .f-text, .f-media { width: 100%; }
    .context-img-container { height: 250px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-mini { display: none; }
    .top-info-bar .flex-between { justify-content: center; }
    .cookie-content { align-items: flex-start; }
    .cookie-banner { right: 10px; width: 280px; }
    .contact-row-horizontal { flex-direction: column; }
}
