/* Redesigned contact card buttons */
.contact-card-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.9rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    color: #fff;
    background: linear-gradient(90deg, #0d6efd 60%, #ff9800 100%);
    box-shadow: 0 2px 8px rgba(13,110,253,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    text-decoration: none;
    gap: 0.5rem;
}
.contact-btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.contact-card-btn.whatsapp {
    background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
}
.contact-card-btn.phone {
    background: linear-gradient(90deg, #0d6efd 60%, #0b5ed7 100%);
}
.contact-card-btn.email {
    background: linear-gradient(90deg, #ff9800 60%, #f44336 100%);
}
.contact-card-btn.linkedin {
    background: linear-gradient(90deg, #0a66c2 60%, #0077b5 100%);
}
.contact-card-btn:hover, .contact-card-btn:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(13,110,253,0.15);
    text-decoration: none;
    opacity: 0.95;
}
.contact-card-btn i {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}
html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1050;
    display: none;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}
.back-to-top:focus {
    outline: 2px solid #fff;
    box-shadow: 0 0 0 3px #0d6efd44;
}
.back-to-top:hover {
    background: #0b5ed7;
}
.logo-main {
    max-width: 340px;
}
.logo-about {
    max-width: 180px;
}
.logo-footer {
    max-width: 44px;
}
.floating-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #0d6efd44;
}
.minimal-footer {
    text-align: center;
    font-size: 1rem;
}
.minimal-footer .footer-divider {
    border: none;
    border-top: 1.5px solid rgba(255,255,255,0.13);
    margin: 0.5rem auto 0.5rem auto;
}
.footer-social .footer-icon {
    color: #fff;
    font-size: 1.7rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.footer-social .footer-icon:hover {
    background: #fff;
    color: #0d6efd;
    transform: scale(1.12);
}
.footer-divider {
    border: none;
    border-top: 1.5px solid rgba(255,255,255,0.13);
    width: 100%;
    margin: 0 auto;
}
.footer-contact {
    font-size: 1rem;
    color: #fff;
    opacity: 0.92;
}
.floating-contact-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    background: #0d6efd;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.whatsapp:hover { background: #1ebe57; }
.floating-btn.phone { background: #0d6efd; }
.floating-btn.phone:hover { background: #0b5ed7; }
.floating-btn.email { background: #ff9800; }
.floating-btn.email:hover { background: #e68900; }
.floating-btn.linkedin { background: #0077b5; }
.floating-btn.linkedin:hover { background: #005983; }
.floating-btn:hover, .floating-btn:focus {
    color: #fff;
    box-shadow: 0 8px 32px rgba(13,110,253,0.18);
    transform: scale(1.08);
}
.contact-card {
    border-radius: 1.5rem;
    min-height: 340px;
    margin-bottom: 2rem;
    background: #f8fafc;
    box-shadow: 0 4px 32px rgba(13,110,253,0.07);
}
.contact-illustration {
    min-width: 260px;
    max-width: 320px;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    background: linear-gradient(135deg,#e3f0ff 60%,#fffbe7 100%);
}
@media (max-width: 767.98px) {
    .contact-card {
        flex-direction: column !important;
        border-radius: 1.5rem;
    }
    .contact-illustration {
        border-radius: 1.5rem 1.5rem 0 0;
        min-width: 100%;
        max-width: 100%;
    }
}
.contact-form-alt .form-label {
    font-size: 1rem;
    color: #0d6efd;
}
.contact-form-alt .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.12);
}
.contact-form-alt .input-group-text {
    border-right: 0;
    background: #fff;
}
.contact-form-alt .form-control {
    border-left: 0;
}
.contact-form-modern .form-floating {
    position: relative;
}
.contact-form-modern .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 1.3rem;
    pointer-events: none;
    z-index: 2;
}
.contact-form-modern .form-control {
    padding-left: 2.5rem;
}
.btn-gradient {
    background: linear-gradient(90deg,#0d6efd 60%,#ff9800 100%);
    color: #fff;
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(13,110,253,0.08);
}
.btn-gradient:hover, .btn-gradient:focus {
    background: linear-gradient(90deg,#0d6efd 40%,#ff9800 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(13,110,253,0.13);
}
.service-stepper {
    min-height: 48px;
    margin-bottom: 0.5rem;
}
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 1;
}
.step-line {
    height: 4px;
    background: linear-gradient(90deg,#0d6efd,#ff9800,#4caf50);
    margin: 0 8px;
    border-radius: 2px;
}
.service-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(135deg,rgba(13,110,253,0.03) 0 8px,transparent 8px 16px), repeating-linear-gradient(-45deg,rgba(255,152,0,0.03) 0 8px,transparent 8px 16px);
}
.service-card {
    position: relative;
    z-index: 1;
}
.service-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-hover:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px rgba(13,110,253,0.18), 0 2px 12px rgba(255,152,0,0.18);
    z-index: 2;
}
body {
    background: #f4f8fb;
}
.hero {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #0d6efd 0%, #ff9800 60%, #ff5722 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
    opacity: 1;
    z-index: 1;
    transition: background-size 0.3s;
}
/* Remove media query to always use cover for background-size */
.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(13,110,253,0.10), 0 2px 12px rgba(255,152,0,0.10);
    border-radius: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 540px;
    margin: 2rem auto 0 auto;
}
.hero-logo {
    display: none;
}
.hero-overlay {
    background: rgba(255,255,255,0.92);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(13,110,253,0.10), 0 2px 12px rgba(255,152,0,0.10);
    padding: 3rem 2rem 2.5rem 2rem;
    max-width: 540px;
    margin: 0 auto;
}
.hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: #0d6efd;
    font-weight: 800;
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.hero p {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}
.service-card .rounded-circle {
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.service-card.bg1 {
    background: linear-gradient(135deg, #0d6efd 60%, #00bcd4 100%);
    color: #fff;
}
.service-card.bg2 {
    background: linear-gradient(135deg, #ff9800 60%, #ff5722 100%);
    color: #fff;
}
.service-card.bg3 {
    background: linear-gradient(135deg, #4caf50 60%, #8bc34a 100%);
    color: #fff;
}
.service-card .card-title, .service-card .card-text {
    color: #fff;
}
.footer {
    background: linear-gradient(90deg, #0d6efd 60%, #ff9800 100%);
    color: #fff;
    padding: 30px 0;
}
.navbar {
    background: linear-gradient(90deg, #0d6efd 0%, #ff9800 100%) !important;
    border-radius: 0 0 0 0;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 24px rgba(13,110,253,0.10), 0 1.5px 8px rgba(255,152,0,0.10);
    padding: 0.5rem 2rem;
    z-index: 1030;
}
.navbar .navbar-brand {
    color: #fff !important;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.navbar .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 1rem;
    transition: background 0.2s, color 0.2s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    background: rgba(255,255,255,0.18);
    color: #fff !important;
}
.btn-primary {
    background: linear-gradient(90deg, #0d6efd 60%, #ff9800 100%);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #ff9800 60%, #0d6efd 100%);
}
