:root {
    --brand-blue: #04478f;
    --brand-blue-dark: #032f60;
    --brand-blue-light: #0a5db8;
    --accent: #f7922d;
    --accent-soft: rgba(247, 146, 45, 0.12);
    --white: #ffffff;
    --off-white: #f4f7fb;
    --text-dark: #0d1b2a;
    --text-mid: #3a4a5c;
    --text-light: #6b7f96;
    --border: rgba(4, 71, 143, 0.12);
    --shadow-card: 0 4px 32px rgba(4, 71, 143, 0.10);
    --radius: 18px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    min-height: 100vh;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 55%, #0a5db8 100%);
    padding: 72px 24px 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(247, 146, 45, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(247, 146, 45, 0.10) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* wave divider */
.wave-divider {
    display: block;
    width: 100%;
    margin-top: -2px;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ── MAIN CONTENT ── */
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ── CARDS GRID ── */
.cards-section {
    margin-top: -48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity 0.25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 57, 135, 0.16);
}

.contact-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--brand-blue);
}

.card-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-main {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-main a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-main a:hover {
    color: var(--brand-blue);
}

.card-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-sub a {
    color: var(--brand-blue-light);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.card-sub a:hover {
    color: var(--brand-blue-dark);
    text-decoration: underline;
}

.card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    background: #e6f4ea;
    color: #1e6e2e;
    border-radius: 100px;
    padding: 3px 12px;
    margin-top: 12px;
}

/* ── BOTTOM GRID ── */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 700px) {
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .cards-section {
        margin-top: -32px;
    }
}

/* ── SOCIAL SECTION ── */
.section-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.section-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* social buttons */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s, transform 0.2s;
    border: 1.5px solid transparent;
}

.social-btn:hover {
    transform: translateX(4px);
}

.social-btn .s-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* individual social colors */

/* ── WhatsApp ── */
.sb-whatsapp {
    color: #128C7E;
    background: #f0faf8;
    border-color: #c8ece8;
}

.sb-whatsapp:hover {
    background: #c8ece8;
}

.sb-whatsapp .s-icon {
    background: #25D366;
    color: white;
}

.sb-facebook {
    color: #1877F2;
    background: #f0f5ff;
    border-color: #dde8ff;
}

.sb-facebook:hover {
    background: #dde8ff;
}

.sb-facebook .s-icon {
    background: #1877F2;
    color: white;
}

.sb-instagram {
    color: #C13584;
    background: #fff0f8;
    border-color: #ffddf2;
}

.sb-instagram:hover {
    background: #ffddf2;
}

.sb-instagram .s-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.sb-youtube {
    color: #FF0000;
    background: #fff5f5;
    border-color: #ffd5d5;
}

.sb-youtube:hover {
    background: #ffd5d5;
}

.sb-youtube .s-icon {
    background: #FF0000;
    color: white;
}

.sb-tiktok {
    color: #010101;
    background: #f7f7f7;
    border-color: #e5e5e5;
}

.sb-tiktok:hover {
    background: #e5e5e5;
}

.sb-tiktok .s-icon {
    background: #010101;
    color: white;
}

.sb-linkedin {
    color: #0A66C2;
    background: #f0f7ff;
    border-color: #d0e8ff;
}

.sb-linkedin:hover {
    background: #d0e8ff;
}

.sb-linkedin .s-icon {
    background: #0A66C2;
    color: white;
}

.social-btn .s-name {
    flex: 1;
}

.social-btn .s-handle {
    font-size: 0.78rem;
    font-weight: 400;
    opacity: 0.65;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ── LOCATION SECTION ── */
.location-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-info {
    margin-bottom: 24px;
}

.location-address {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #e8f0fe 0%, #d1e4ff 100%);
    border-radius: var(--radius-sm);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border: 1.5px dashed rgba(0, 87, 184, 0.2);
}

.map-placeholder svg {
    width: 36px;
    height: 36px;
    color: var(--brand-blue);
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 200px;
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.2s;
}

.map-link:hover {
    color: var(--accent);
}

/* ── WHO WE ARE STRIP ── */
.who-strip {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.who-strip-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.who-strip-text p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.70);
    max-width: 480px;
    line-height: 1.6;
}

.who-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--brand-blue-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.who-strip-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.04);
}

/* ── FILIAIS ── */
.filiais-section {
    margin-top: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 36px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.47s;
}

.filiais-section .section-label {
    margin-bottom: 8px;
}

.filiais-section .section-title {
    margin-bottom: 28px;
}

.filiais-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 16px;
}

.filiais-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.filiais-list li a::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-blue);
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s, background 0.2s;
}

.filiais-list li a:hover {
    background: #e8f0fe;
    color: var(--brand-blue);
    border-color: #bfd5f7;
    transform: translateX(3px);
}

.filiais-list li a:hover::before {
    opacity: 1;
    background: var(--accent);
}

@media (max-width: 600px) {
    .filiais-list {
        grid-template-columns: 1fr 1fr;
    }

    .filiais-section {
        padding: 28px 20px 32px;
    }
}

@media (max-width: 380px) {
    .filiais-list {
        grid-template-columns: 1fr;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card,
.section-card,
.who-strip {
    animation: fadeUp 0.5s ease both;
}

.contact-card:nth-child(1) {
    animation-delay: 0.05s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.12s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.19s;
}

.section-card:nth-child(1) {
    animation-delay: 0.26s;
}

.section-card:nth-child(2) {
    animation-delay: 0.33s;
}

.who-strip {
    animation-delay: 0.40s;
}