:root {
    --primary: #0B1F3A;
    --secondary: #ffffff;
    --light: #F5F7FA;
    --white: #ffffff;
    --gray: #718096;
    --border: #e2e8f0;
    --accent: #C8A44D;
    --text: #2D3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

/* Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0f172a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navbar */
.custom-navbar {
    padding: 20px 0;
    transition: all .4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(11, 31, 58, .4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.custom-navbar.scrolled {
    padding: 14px 0;
    background: rgba(11, 31, 58, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(200, 164, 77, 0.2);
}

.navbar-brand {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .5px;
}

.navbar-brand:hover {
    color: var(--accent);
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    transform: translateZ(0);
    will-change: transform;
}

.lang-selector {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
}

.btn-outline-lang {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    background: transparent;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}

.btn-outline-lang:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-check:checked + .btn-outline-lang {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(200, 164, 77, 0.4);
}

.nav-link {
    color: #e2e8f0;
    margin-left: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all .3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent) !important;
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent) 0%, #a48135 100%);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(200, 164, 77, 0.2);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 164, 77, 0.35);
    color: #fff;
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero */
.hero-section {
    background: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Offset untuk desktop fixed navbar */
}

.hero-section .row {
    min-height: calc(100vh - 100px) !important;
}

.hero-badge {
    background: rgba(200, 164, 77, 0.12);
    border: 1px solid rgba(200, 164, 77, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: .85rem;
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 580px;
}

/* Floating Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.hero-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 164, 77, 0.3);
    box-shadow: 0 20px 40px rgba(200, 164, 77, 0.15);
}

.hero-stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: inline-block;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    color: #fff;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    display: inline-block;
    transition: color 0.3s;
}

.scroll-indicator a:hover {
    color: var(--accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section */
.section-padding {
    padding: 100px 0;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -.3px;
}

.section-subtitle {
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .82rem;
}

.bg-light-custom {
    background: #f8fafc;
}

/* About */
.about-img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.about-text {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 30px;
}

.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

/* Services */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: .4s ease;
    border: 1px solid rgba(226, 232, 240, .6);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: .35s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .25);
}

.service-icon i {
    font-size: 1.8rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Feature */
.bg-dark-section {
    background: linear-gradient(180deg, #111827 0%, #0b1120 100%);
    position: relative;
    overflow: hidden;
}

.bg-dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, .06) 0%, transparent 45%);
    pointer-events: none;
}

.feature-box {
    background: rgba(31, 41, 55, .7);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    transition: .35s ease;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(31, 41, 55, .9);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.feature-box i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    grid-column: span 2;
    min-height: 280px;
}

.portfolio-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s cubic-bezier(.25, .46, .45, .94);
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .75) 0%, rgba(15, 23, 42, .25) 50%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
    transition: .4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, .85) 0%, rgba(15, 23, 42, .35) 60%, rgba(15, 23, 42, .05) 100%);
}

.portfolio-overlay h4 {
    font-weight: 700;
    margin: 0;
    transform: translateY(8px);
    transition: transform .4s ease;
}

.portfolio-item:hover .portfolio-overlay h4 {
    transform: translateY(0);
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #0b1120 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, .06) 0%, transparent 60%);
    pointer-events: none;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: .5px;
}

/* Testimoni Marquee */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0;
    user-select: none;
    -webkit-user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    padding-right: 30px;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-group,
.marquee-wrapper:active .marquee-group {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.testimonial-item-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 380px;
    height: 320px;
    flex-shrink: 0;
    white-space: normal;
}

.testimonial-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testimonial-quote {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.8em;
    /* 3 lines * 1.6 line-height */
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.client-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.client-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #0f172a;
}

.client-info span {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 9px;
    border-radius: 100px;
    margin-top: 6px;
    font-weight: 500;
}

/* Responsive adjustments for marquee cards on smaller screens */
@media (max-width: 576px) {
    .testimonial-item-card {
        width: 300px;
        height: 290px;
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 0.92rem;
        height: 4.4em;
    }

    .marquee-group {
        gap: 15px;
        padding-right: 15px;
    }
}



/* CTA */
.cta-section {
    background: linear-gradient(135deg, #111827 0%, #0b1120 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(56, 189, 248, .08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    position: relative;
}

/* Contact */
.contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    border: 1px solid rgba(226, 232, 240, .6);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: .35s ease;
}

.contact-item:hover i {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .2);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    border: 1px solid rgba(226, 232, 240, .6);
}

.form-control {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: .25s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(15, 23, 42, .08);
    border-color: #0f172a;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .6);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Footer */
.footer {
    background: #0b1120;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.footer-logo {
    font-weight: 800;
    color: #fff;
}

.footer-text {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-title {
    margin-bottom: 20px;
    font-weight: 700;
    color: #e2e8f0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: .25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1e293b;
    color: #fff;
    margin-right: 10px;
    transition: .3s ease;
    border: 1px solid rgba(255, 255, 255, .04);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #334155;
    border-color: rgba(255, 255, 255, .1);
}

.footer-line {
    border-color: rgba(255, 255, 255, .08);
    margin: 50px 0 30px;
}

.copyright {
    color: #94a3b8;
}

/* WhatsApp */
.wa-floating {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s cubic-bezier(.25, .46, .45, .94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width:1199px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media(max-width:991px) {
    .hero-section {
        padding-top: 110px !important;
    }

    .hero-section .row {
        min-height: calc(100vh - 110px) !important;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .custom-navbar {
        background: rgba(15, 23, 42, .98);
        padding: 10px 0;
    }

    .navbar-logo {
        height: 35px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }

    .navbar-toggler {
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        background: rgba(15, 23, 42, .98);
        border-radius: 16px;
        margin-top: 14px;
        padding: 16px 24px;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .nav-link::after {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 240px;
    }

    .contact-form {
        padding: 28px;
    }

    .testimonial-card {
        padding: 36px 28px;
    }

    .testimonial-card p {
        font-size: 1.05rem;
    }

    .feature-box {
        padding: 28px 20px;
    }
}

@media(max-width:767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-card {
        padding: 28px;
    }

    .mini-card {
        padding: 14px 16px;
        font-size: .95rem;
    }

    .section-padding {
        padding: 72px 0;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 28px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .portfolio-item,
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 240px;
    }

    .stat-box h2 {
        font-size: 2.2rem;
    }

    .cta-section {
        padding: 72px 0;
    }

    .cta-section h2 {
        font-size: 1.7rem;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-item i {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 24px;
    }

    .footer {
        padding: 60px 0 24px;
    }
}

@media(max-width:576px) {
    .navbar-logo {
        height: 28px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        letter-spacing: 0px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 14px;
        margin-right: 0 !important;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .section-padding {
        padding: 64px 0;
    }

    .about-img {
        border-radius: 18px;
    }

    .info-box {
        padding: 20px;
    }

    .service-card {
        padding: 24px;
        border-radius: 20px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .feature-box {
        border-radius: 20px;
        padding: 24px 18px;
    }

    .feature-box i {
        font-size: 1.6rem;
    }

    .portfolio-item,
    .portfolio-item.large {
        border-radius: 18px;
        min-height: 200px;
    }

    .testimonial-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .stat-box h2 {
        font-size: 1.9rem;
    }

    .contact-box {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-form {
        border-radius: 20px;
    }

    .map-container {
        border-radius: 20px;
    }

    .wa-floating {
        width: 56px;
        height: 56px;
        right: 18px;
        bottom: 18px;
        font-size: 1.7rem;
    }
}