/* HostnFly - Merged styles */

/* ========== Variables & base ========== */
:root {
    --brand-primary: #07344a;
    --brand-light-bg: #f2f5fb;
    --brand-dark-bg: #04143a;
    --brand-text: #1a1a1a;
    --text-muted-custom: #64748b;
    --brand-purple: #07344a;
    --bg-yellow-light: #fff8d6;
    --footer-bg: #161c2d;
    --footer-text: #9ba3af;
    --footer-heading: #516873;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--brand-text);
}

/* ========== Navbar ========== */
.logo-navbar {
    max-width: 100px;
    height: auto;
}
.navbar .nav-link {
    color: var(--brand-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-brand {
    background-color: var(--brand-primary);
    color: white;
    border: none;
}

.btn-brand:hover {
    background-color: rgb(7 52 74 / 84%);;
    color: white;
}

.btn-login {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
}

/* ========== Hero ========== */
.google-logo {
    max-width: 240px;
    height: auto;
}
.hero-section {
    background: #f2f5fb url(../img/bg-hero.png) no-repeat bottom center;
    background-size: 300px;
    background-repeat: repeat-x;
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.hero-section-services {
    background: #f2f5fb;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.badge-premium {
    background-color: #e0e7ff;
    color: var(--brand-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.hero-title {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    color: #111;
}

.hero-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lh-13 {
    line-height: 1.3;
}
.partenaire-logo {
    max-width: 140px;
    height: auto;
}
.azure-logo {
    max-width: 100px;
    height: auto;
}
.logo-estimation {
    max-width: 150px;
    height: auto;
}
/* ========== Trust Banner ========== */
.trust-banner {
    background-color: var(--brand-dark-bg);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.trust-banner .stars i {
    color: #7a9cff;
    font-size: 1.1rem;
}

.trust-banner a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Features ========== */
.feature-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== Services section (Swiper) ========== */
.services-swiper-section .section-title {
    margin-bottom: 0;
}

.services-swiper-wrapper {
    padding: 0 52px 48px;
}

.services-swiper {
    overflow: visible;
}

.services-swiper .swiper-slide {
    height: auto;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

/* Partial preview: non-active slides slightly smaller and faded */
.services-swiper .swiper-slide:not(.swiper-slide-active) .service-slide-inner {
    opacity: 0.75;
    transform: scale(0.95);
}

.services-swiper .swiper-slide-active .service-slide-inner {
    opacity: 1;
    transform: scale(1);
}

.service-slide-inner {
    height: 100%;
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.services-swiper .swiper-slide-active .service-slide-inner {
    box-shadow: 0 12px 40px rgba(4, 20, 58, 0.12), 0 0 0 2px rgba(15, 82, 186, 0.15);
}

/* Navigation arrows */
.services-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    background-color: var(--brand-dark-bg);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(4, 20, 58, 0.25);
}

.services-swiper-btn:hover {
    background-color: var(--brand-primary);
    transform: translateY(-50%) scale(1.05);
}

.services-swiper-prev { left: 0; }
.services-swiper-next { right: 0; }

/* Pagination */
.services-swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.services-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: transform 0.2s, background 0.2s;
}

.services-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--brand-dark-bg);
    transform: scale(1.3);
}

.services-swiper-pagination .swiper-pagination-bullet-active-main {
    background: var(--brand-primary);
}

@media (max-width: 575.98px) {
    .services-swiper-wrapper {
        padding-left: 44px;
        padding-right: 44px;
    }
    .services-swiper-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .services-swiper-prev { left: -4px; }
    .services-swiper-next { right: -4px; }
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #111;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s;
}

.nav-btn-light {
    background-color: #f8f9fa;
    color: #adb5bd;
}

.nav-btn-dark {
    background-color: var(--brand-dark-bg);
    color: white;
}

.service-card-top {
    border-radius: 12px;
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-top .emojis {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    font-size: 2.5rem;
}

.card-bg-red { background-color: #ffa5a5; }
.card-bg-yellow { background-color: #fdf3b8; }
.card-bg-orange { background-color: #fee199; }
.card-bg-pink { background-color: #ffc5d3; }

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted-custom);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.link-underlined {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.link-underlined:hover {
    opacity: 0.7;
    color: #111;
}

.link-underlined .icon-caret {
    font-size: 0.7rem;
}

/* ========== CTA banner ========== */
.cta-banner {
    background-color: var(--brand-dark-bg);
    border-radius: 20px;
    padding: 4rem 2rem;
    position: relative;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
}

.text-brand-light {
    color: #8faaff;
}

.floating-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    width: 110px;
    height: 110px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    z-index: 10;
}

.badge-text-top {
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.badge-icon {
    font-size: 1.8rem;
    margin: 2px 0;
}

.badge-text-bottom {
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-brand-primary {
    background-color: #07344a;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
}

.btn-brand-primary:hover {
    background-color: rgb(7 52 74 / 84%);;
    color: white;
}

/* ========== Pricing & process ========== */
.text-brand-purple { color: var(--brand-purple); }
.bg-brand-purple { background-color: var(--brand-purple); }

.btn-brand-purple {
    background-color: var(--brand-purple);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

.btn-brand-purple:hover {
    background-color: rgb(7 52 74 / 84%);;
    color: white;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
}

.pricing-side {
    background-color: var(--bg-yellow-light);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
}

.process-side {
    background-color: #ffffff;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .pricing-side { justify-content: flex-end; padding-right: 4rem; }
    .process-side { justify-content: flex-start; padding-left: 4rem; }
    .split-content-wrapper { max-width: 500px; width: 100%; }
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.badge-soft-blue {
    background-color: #e0e7ff;
    color: var(--brand-purple);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-purple);
    line-height: 1;
}

.process-step-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.process-step-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: 100%;
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    background-color: var(--brand-purple);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(91, 104, 246, 0.3);
    z-index: 2;
}

.link-black-underlined {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
}

.link-black-underlined .icon-caret-sm {
    font-size: 0.6rem;
}

.pricing-intro-text { font-size: 0.95rem; }
.pricing-list-item { font-size: 0.9rem; color: #444; }
.process-step-desc { font-size: 0.85rem; }

/* ========== FAQ ========== */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #2b3647;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.5rem 0;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-purple);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b68f6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--text-muted-custom);
    line-height: 1.6;
}

/* ========== Contact / team ========== */
.contact-section {
    background-color: #fcfdfd;
    position: relative;
}

.contact-heading-title {
    color: #111;
}

.relax-badge {
    width: 120px;
    height: 120px;
    border: 2px solid #111;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
    margin-bottom: 2rem;
    z-index: 5;
}

.relax-badge span {
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.relax-badge i { font-size: 2rem; color: #ffbc00; }

.bg-decor { position: absolute; z-index: 1; pointer-events: none; }
.cloud-shape {
    background: #eef2ff;
    border-radius: 50px;
}
.cloud-1 { top: 20%; left: 10%; width: 150px; height: 30px; }
.cloud-2 { top: 25%; left: 5%; width: 100px; height: 30px; }
.cloud-3 { top: 30%; right: 15%; width: 200px; height: 25px; }
.cloud-4 { top: 35%; right: 20%; width: 120px; height: 25px; }
.cloud-5 { bottom: 15%; right: 25%; width: 140px; height: 30px; }

.decor-balloon {
    top: 35%; right: 15%;
    width: 40px; height: 50px;
    background: #1d4ed8;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}
.decor-balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #111;
}

.decor-house {
    bottom: 10%;
    left: 45%;
    width: 40px;
    height: 30px;
    background: #f43f5e;
    position: relative;
}
.decor-house::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #f43f5e;
}

/* ========== Footer ========== */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.85rem;
}

.footer-heading {
    color: var(--footer-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--footer-text);
    border-radius: 50%;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover {
    border-color: white;
    color: white;
}

.footer-contact-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    display: inline-block;
}

.footer-contact-text {
    color: var(--footer-text);
}

.footer-dropdown-link {
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
}

