/* ========== CUSTOM FONTS ========== */
@font-face {
    font-family: 'Avenir Next';
    src: url('fonts/AvenirNextRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('fonts/AvenirNext-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('fonts/AvenirNext-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Avenir Next', 'Nunito', sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
    display: inline-block;
    font-family: 'Avenir Next', 'Nunito', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-primary { background: #FF6B00; color: #fff; }
.btn-primary:hover { background: #e55f00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #FF6B00; }
.btn-white { background: #fff; color: #FF6B00; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #004A97;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover { color: #FF6B00; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B00;
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #004A97;
    font-size: 0.95rem;
}
.phone-link:hover { color: #FF6B00; }
.lang-selector { display: flex; gap: 4px; }
.lang-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Avenir Next', 'Nunito', sans-serif;
}
.lang-btn.active, .lang-btn:hover {
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,74,151,0.85) 0%, rgba(0,35,70,0.8) 50%, rgba(0,20,40,0.75) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-offer {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: #FF6B00;
    padding: 32px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item { color: #fff; }
.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.trust-label { font-size: 0.95rem; opacity: 0.9; }

/* ========== SERVICES ========== */
.services {
    padding: 96px 0;
    background: #f9f9fb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: #FF6B00;
}
.service-icon { margin-bottom: 20px; }
.service-card h3 {
    font-size: 1.25rem;
    color: #004A97;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
}

/* ========== WHY SUASORIS ========== */
.why {
    padding: 96px 0;
    background: #fff;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #eef4fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-item h3 {
    font-size: 1.1rem;
    color: #004A97;
    margin-bottom: 6px;
}
.why-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #FF6B00, #FF8C33);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ========== CONTACT ========== */
.contact {
    padding: 96px 0;
    background: #f9f9fb;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail strong { display: block; color: #333; margin-bottom: 2px; }
.contact-detail p { font-size: 0.95rem; color: #555; }
.contact-detail a { color: #FF6B00; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Avenir Next', 'Nunito', sans-serif;
    font-size: 1rem;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9fb;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-legal {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 4px;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 80px 0;
    background: #fff;
}
.reviews-google {
    display: flex;
    justify-content: center;
}
.google-badge {
    background: #f9f9fb;
    border-radius: 16px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.google-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}
.google-rating {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}
.google-rating span {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}
.btn-outline-dark {
    background: transparent;
    color: #004A97;
    border: 2px solid #004A97;
}
.btn-outline-dark:hover {
    background: #004A97;
    color: #fff;
}

/* ========== FORM URGENCY ========== */
.form-urgency {
    text-align: center;
    color: #FF6B00;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ========== FOOTER LEGAL ========== */
.footer-bottom a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #FF6B00;
}

/* ========== MAP ========== */
.map { line-height: 0; }
.map iframe { width: 100%; }

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; }
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: #FF6B00; }
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: #FF6B00; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.whatsapp-btn { background: #25D366; }
.call-btn { background: #FF6B00; }

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s;
}
.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}
.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}
.mobile-nav-content ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-content ul a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}
.mobile-nav-content ul a:hover { color: #FF6B00; }
.mobile-lang-selector { display: flex; gap: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-links, .nav-actions .btn, .nav-actions .phone-link, .nav-actions .lang-selector { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.4rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 600px) {
    .hero { min-height: 80vh; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 320px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-number { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 20px; }
    .contact-form-wrapper { padding: 24px; }
    .cta-banner h2 { font-size: 1.6rem; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .float-btn { width: 52px; height: 52px; }
    .call-btn { display: flex; }
}
@media (min-width: 601px) {
    .call-btn { display: none; }
}
