/* ================================================ */
/* WE ACT TRUST - ULTRA MODERN STYLES              */
/* ================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    color: #1e293b;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: auto; padding: 20px; }

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #0a3d5e 0%, #0c4a6e 100%);
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
}

.logo:hover { transform: scale(1.08) rotate(-5deg); }

.logo-area h1 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #bae6fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 12px;
    opacity: 0.8;
    display: block;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== MODERN LANGUAGE SELECTOR ===== */
.language-selector {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.lang-btn .lang-flag { font-size: 16px; }
.lang-btn .lang-name { font-size: 12px; font-weight: 600; }

.lang-btn .lang-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: white;
    color: #0c4a6e;
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-btn.active .lang-dot {
    background: #38bdf8;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #1e7a9e 40%, #38bdf8 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: #f0f4f8;
    clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-content { max-width: 800px; margin: auto; position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero h2 br { display: none; }
.hero p {
    font-size: 20px;
    opacity: 0.92;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #0c4a6e;
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ACTIVE BANNER ===== */
.active-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69b 100%);
    padding: 18px 20px;
    text-align: center;
    border-bottom: 3px solid #ffc107;
}

.active-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.active-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5); }
    100% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
}

.active-banner p { font-size: 17px; font-weight: 600; color: #856404; }
.active-banner p:last-child { font-weight: 400; font-size: 14px; margin-top: 4px; color: #6b5300; }

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    color: #0c4a6e;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 17px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0c4a6e, #38bdf8);
    margin: 10px auto 0;
    border-radius: 4px;
}

/* ===== CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #0c4a6e;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(12, 74, 110, 0.03), transparent);
    border-radius: 50%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
    border-left-color: #38bdf8;
}

.card h3 { color: #0c4a6e; font-size: 17px; margin-bottom: 10px; }
.card p { color: #475569; font-size: 15px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 60px 0 80px;
    margin-top: 40px;
}

/* ===== 3 BIG CONTACT BUTTONS ===== */
.contact-big-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.contact-big-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: left;
}

.contact-big-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-big-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-big-btn .btn-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.contact-big-btn:hover .btn-icon { transform: scale(1.1) rotate(-5deg); }

.contact-big-btn .btn-text { flex: 1; }
.contact-big-btn .btn-label { display: block; font-size: 20px; font-weight: 700; }
.contact-big-btn .btn-desc { display: block; font-size: 14px; opacity: 0.7; margin-top: 2px; }
.contact-big-btn .btn-arrow {
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.4s;
}

.contact-big-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Email Button */
.email-big { border-left: 5px solid #1a73e8; }
.email-big .btn-icon { background: #e8f0fe; color: #1a73e8; }
.email-big:hover { border-left-color: #1557b0; }

/* WhatsApp Button */
.whatsapp-big { border-left: 5px solid #25d366; }
.whatsapp-big .btn-icon { background: #e8f5e9; color: #25d366; }
.whatsapp-big:hover { border-left-color: #1da851; }

/* Call Button */
.call-big { border-left: 5px solid #e74c3c; }
.call-big .btn-icon { background: #fde8e8; color: #e74c3c; }
.call-big:hover { border-left-color: #c0392b; }

/* ===== FORM POPUP ===== */
.form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.form-popup.active { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.form-popup-inner {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 550px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.form-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-popup-header h3 {
    font-size: 24px;
    color: #0c4a6e;
    font-weight: 700;
}

.close-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.form-popup-inner input,
.form-popup-inner textarea {
    width: 100%;
    padding: 13px 18px;
    margin-bottom: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-popup-inner input:focus,
.form-popup-inner textarea:focus {
    outline: none;
    border-color: #0c4a6e;
    background: white;
    box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.08);
}

.form-popup-inner textarea { resize: vertical; }

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    border-radius: 50px;
    background: #0c4a6e;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.submit-btn:hover {
    background: #1a659e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(12, 74, 110, 0.3);
}

/* ===== CONTACT DIRECT (Email only) ===== */
.contact-direct {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.direct-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.direct-icon { font-size: 20px; }
.direct-label { font-weight: 600; color: #0c4a6e; }
.direct-value { color: #1a73e8; font-weight: 500; }

/* ===== FOOTER ===== */
footer {
    background: #06283d;
    color: white;
    padding: 40px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h4 { font-size: 18px; margin-bottom: 15px; color: #94a3b8; }
.footer-col p, .footer-col a { color: #cbd5e1; font-size: 15px; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #94a3b8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 50px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
}

.whatsapp-float img { width: 35px; height: 35px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-big-buttons { grid-template-columns: 1fr; max-width: 500px; }
    .hero h2 { font-size: 40px; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; align-items: stretch; gap: 10px; }
    .logo-area { justify-content: space-between; width: 100%; }
    .logo-area h1 { font-size: 18px; }
    .tagline { font-size: 10px; }
    
    .language-selector { justify-content: center; padding: 4px 8px; }
    .lang-btn { padding: 4px 12px; font-size: 11px; }
    .lang-btn .lang-flag { font-size: 13px; }
    .lang-btn .lang-name { font-size: 10px; }
    
    .hero { padding: 60px 20px 50px; }
    .hero h2 { font-size: 30px; }
    .hero h2 br { display: block; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
    
    .section-title { font-size: 28px; }
    .cards-grid { grid-template-columns: 1fr; }
    .card { padding: 20px; }
    
    .contact-big-btn { padding: 20px; gap: 14px; }
    .contact-big-btn .btn-icon { font-size: 28px; width: 50px; height: 50px; }
    .contact-big-btn .btn-label { font-size: 17px; }
    .contact-big-btn .btn-desc { font-size: 12px; }
    
    .form-popup-inner { padding: 25px; }
    
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .whatsapp-float img { width: 28px; height: 28px; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .logo { width: 40px; height: 40px; }
    .logo-area h1 { font-size: 15px; }
    .hero h2 { font-size: 24px; }
    .section-title { font-size: 22px; }
    .lang-btn { padding: 3px 10px; font-size: 10px; }
    .lang-btn .lang-flag { font-size: 11px; }
    .lang-btn .lang-name { font-size: 9px; }
    .contact-big-btn { padding: 16px; gap: 10px; }
    .contact-big-btn .btn-icon { font-size: 22px; width: 40px; height: 40px; }
    .contact-big-btn .btn-label { font-size: 15px; }
}