/* ================================================================
   LIQUID GLASS DESIGN SYSTEM — 143Technology  (light edition)
   Load order: last stylesheet — overrides all previous rules.
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS custom properties — light-mode glass
   ---------------------------------------------------------------- */
:root {
    /* Glass fills — white at varying opacity */
    --lg-fill-0: rgba(255, 255, 255, 0.55);
    --lg-fill-1: rgba(255, 255, 255, 0.68);
    --lg-fill-2: rgba(255, 255, 255, 0.82);
    --lg-fill-3: rgba(255, 255, 255, 0.92);

    /* Accent borders */
    --lg-border-gold: rgba(193, 178, 100, 0.70);
    --lg-border-blue: rgba(6,  68, 108, 0.45);

    /* Blur */
    --lg-blur-sm: blur(10px) saturate(160%);
    --lg-blur:    blur(20px) saturate(180%);
    --lg-blur-lg: blur(32px) saturate(200%);

    /* Border (shared) */
    --lg-border: 1px solid rgba(255, 255, 255, 0.85);

    /* Shadows — soft, natural on light backgrounds */
    --lg-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 1.00),
        inset 0 -1px  0 rgba(0, 0, 0, 0.04),
        0 4px  16px     rgba(6,  68, 108, 0.08),
        0 1px   4px     rgba(0,   0,   0, 0.06);

    --lg-shadow-hover:
        inset 0 1.5px 0 rgba(255, 255, 255, 1.00),
        0 10px 32px     rgba(6,  68, 108, 0.14),
        0 3px   8px     rgba(0,   0,   0, 0.08);

    --lg-radius:    18px;
    --lg-radius-lg: 26px;

    /* Palette */
    --gold:  #c8b870;
    --navy:  #06446c;
}

/* ----------------------------------------------------------------
   2. Global body — light grey / off-white
   ---------------------------------------------------------------- */
body {
    background-color: #f2f5f8 !important;
    background-image:
        radial-gradient(ellipse 75% 55% at  2% 12%,  rgba(209, 198, 135, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 55% 48% at 98%  0%,  rgba(6,   68, 108, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(215, 232, 242, 0.55) 0%, transparent 58%),
        radial-gradient(ellipse 38% 38% at 85% 70%,  rgba(209, 198, 135, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 30% 35% at 20% 60%,  rgba(215, 232, 242, 0.30) 0%, transparent 50%) !important;
    background-attachment: fixed;
}

/* ----------------------------------------------------------------
   3. Typography — restore original dark-on-light colours
      (remove any dark-mode overrides from previous iteration)
   ---------------------------------------------------------------- */
p {
    color: var(--e-global-color-text) !important;  /* #8c989c */
}
h6 {
    color: var(--e-global-color-text) !important;
}

/* ----------------------------------------------------------------
   4. Section backgrounds — very light tints, no solid colours
   ---------------------------------------------------------------- */
.offer-section {
    background:       rgba(215, 232, 242, 0.38) !important;
    background-color: rgba(215, 232, 242, 0.38) !important;
    background-image: none !important;
}
.servicepage-section {
    background:       rgba(240, 244, 248, 0.50) !important;
    background-color: rgba(240, 244, 248, 0.50) !important;
    background-image: none !important;
}
.aboutoffer-section {
    background:       rgba(247, 243, 239, 0.55) !important;
    background-color: rgba(247, 243, 239, 0.55) !important;
    background-image: none !important;
}

/* Hairline section dividers */
.offer-section,
.servicepage-section,
.aboutoffer-section {
    border-top: 1px solid rgba(6, 68, 108, 0.07);
}

/* ----------------------------------------------------------------
   5. Stats strip — light glass, keep original navy text
   ---------------------------------------------------------------- */
.stats-strip {
    background:       rgba(255, 255, 255, 0.60) !important;
    backdrop-filter:  var(--lg-blur-sm) !important;
    -webkit-backdrop-filter: var(--lg-blur-sm) !important;
    border-top:    1px solid rgba(255, 255, 255, 0.90) !important;
    border-bottom: 1px solid rgba(6, 68, 108, 0.08) !important;
    /* Keep --e-global-color-secondary as original navy — no override */
}

/* Restore rgba(6,68,108,…) colours — they're navy, readable on light */
.stats-strip div[style*="rgba(6,68,108,0.55)"],
.stats-strip div[style*="rgba(6,68,108,.55)"] {
    color: rgba(6, 68, 108, 0.55) !important;  /* keep as-is */
}
.stats-strip p[style*="rgba(6,68,108,0.7)"],
.stats-strip p[style*="rgba(6,68,108,.7)"] {
    color: rgba(6, 68, 108, 0.70) !important;  /* keep as-is */
}
.stats-strip .col-6 {
    border-bottom-color: rgba(6, 68, 108, 0.12) !important;
    border-right-color:  rgba(6, 68, 108, 0.12) !important;
}
.stats-strip [style*="border:1px solid rgba(6,68,108"] {
    border-color: rgba(6, 68, 108, 0.10) !important;
}
.stats-strip [style*="bottom:0"][style*="linear-gradient"] {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(6, 68, 108, 0.30) 50%,
        transparent 100%
    ) !important;
}

/* ----------------------------------------------------------------
   6. Service / feature cards — white frosted glass
   ---------------------------------------------------------------- */

/* Shared base */
.offer-section .service-box,
.servicepage-section .service-box,
.aboutoffer-section .service-box {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.62) 100%
        ) !important;
    backdrop-filter:         var(--lg-blur) !important;
    -webkit-backdrop-filter: var(--lg-blur) !important;
    border-radius:           var(--lg-radius) !important;
    box-shadow:              var(--lg-shadow) !important;
    transition:              all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position:                relative;
    overflow:                hidden;
}

/* Inner top-edge white highlight */
.offer-section .service-box::after,
.servicepage-section .service-box::after,
.aboutoffer-section .service-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 1.00);
    pointer-events: none;
    z-index: 1;
}

/* Hover shimmer */
.offer-section .service-box::before,
.servicepage-section .service-box::before,
.aboutoffer-section .service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        148deg,
        rgba(255, 255, 255, 0.20) 0%,
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.30s ease;
    pointer-events: none;
    z-index: 0;
}
.offer-section .service-box:hover::before,
.servicepage-section .service-box:hover::before,
.aboutoffer-section .service-box:hover::before {
    opacity: 1;
}

/* Per-context accent borders */
.offer-section .service-box {
    border:     1px solid rgba(255, 255, 255, 0.80) !important;
    border-top: 2px solid var(--lg-border-gold) !important;
}
.servicepage-section .service-box {
    border:     1px solid rgba(255, 255, 255, 0.80) !important;
    border-top: 2px solid var(--lg-border-blue) !important;
}
.aboutoffer-section .service-box {
    border:      1px solid rgba(255, 255, 255, 0.80) !important;
    border-left: 3px solid rgba(193, 178, 100, 0.65) !important;
}

/* Hover — lift + whiten */
.offer-section .service-box:hover,
.servicepage-section .service-box:hover,
.aboutoffer-section .service-box:hover {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.78) 100%
        ) !important;
    box-shadow:  var(--lg-shadow-hover) !important;
    transform:   translateY(-7px) !important;
}
.offer-section .service-box:hover {
    border-top-color: rgba(193, 178, 100, 0.90) !important;
}
.servicepage-section .service-box:hover {
    border-top-color: rgba(6, 68, 108, 0.65) !important;
}

/* ----------------------------------------------------------------
   7. Card typography — original dark colours, readable on white
   ---------------------------------------------------------------- */
.service-box h4,
.service-box h5 {
    color: var(--e-global-color-primary) !important;   /* gold */
}
.service-box p,
.service-box li,
.service-box .text {
    color: var(--e-global-color-text) !important;      /* #8c989c */
}
.check-icon,
.service-box .check-icon {
    color: var(--e-global-color-secondary) !important; /* navy */
}
.service-box i[class*="fa-"] {
    color: var(--e-global-color-primary) !important;
}

/* Preserve text on hover (no forced white override from base CSS) */
.offer-section .service-box:hover h4,
.offer-section .service-box:hover p,
.offer-section .service-box:hover li,
.offer-section .service-box:hover span,
.servicepage-section .service-box:hover h4,
.servicepage-section .service-box:hover p,
.servicepage-section .service-box:hover li,
.servicepage-section .service-box:hover span,
.aboutoffer-section .service-box:hover h4,
.aboutoffer-section .service-box:hover p,
.aboutoffer-section .service-box:hover li,
.aboutoffer-section .service-box:hover span {
    color: inherit !important;
}

/* Section intro text (Nos offres, Notre expertise, etc.) */
.offer_content h6,
.servicepage-section .offer_content h6 {
    color: var(--e-global-color-text) !important;
}
.offer_content p,
.servicepage-section .offer_content p {
    color: var(--e-global-color-text) !important;
}

/* ----------------------------------------------------------------
   8. Banner — keep gold/navy split as-is, minor image enhancement
   ---------------------------------------------------------------- */
.banner-section .banner_wrapper .banner-image img {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.20),
        0 24px 56px rgba(0, 0, 0, 0.35);
    filter: brightness(1.02) contrast(1.01);
}

/* ----------------------------------------------------------------
   9. Navbar — white glass pill
   ---------------------------------------------------------------- */
.banner_outer .navbar-nav,
.sub-banner .navbar-nav {
    background: rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.90),
        0 4px 18px rgba(0, 0, 0, 0.12) !important;
}

/* ----------------------------------------------------------------
   10. Buttons — semi-transparent white glass, navy tint
   ---------------------------------------------------------------- */
.get_started,
a.get_started,
.consultation_wrapper .get_started,
a.button2.get_started {
    background:
        linear-gradient(
            135deg,
            rgba(6, 68, 108, 0.88) 0%,
            rgba(4, 50, 82,  0.80) 100%
        ) !important;
    backdrop-filter:  blur(14px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
    border:           1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.35),
        0 4px 14px rgba(6, 68, 108, 0.25) !important;
    border-radius:    30px !important;
    color:            #ffffff !important;
    transition:       all 0.30s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position:         relative;
    overflow:         hidden;
}

/* Shimmer sweep on hover */
.get_started::after,
a.get_started::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.45s ease;
    pointer-events: none;
}
.get_started:hover::after,
a.get_started:hover::after {
    left: 165%;
}

.get_started:hover,
a.get_started:hover {
    background:
        linear-gradient(
            135deg,
            rgba(6, 80, 128, 1.00) 0%,
            rgba(4, 60, 100, 0.95) 100%
        ) !important;
    border-color:  rgba(255, 255, 255, 0.50) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.40),
        0 8px 24px rgba(6, 68, 108, 0.35) !important;
    transform:     translateY(-3px) !important;
    color:         #ffffff !important;
}

/* ----------------------------------------------------------------
   10b. Offer-section card buttons — gold variant
   ---------------------------------------------------------------- */
.offer-section .service-box a.get_started,
.offer-section .service-box .get_started {
    background:
        linear-gradient(
            135deg,
            rgba(193, 178, 100, 0.95) 0%,
            rgba(160, 145, 72,  0.90) 100%
        ) !important;
    border-color:  rgba(255, 255, 255, 0.40) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
        0 4px 14px rgba(160, 145, 72, 0.30) !important;
    color: #fff !important;
}
.offer-section .service-box a.get_started:hover,
.offer-section .service-box .get_started:hover {
    background:
        linear-gradient(
            135deg,
            rgba(210, 194, 110, 1.00) 0%,
            rgba(175, 158, 82,  1.00) 100%
        ) !important;
    border-color:  rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.50),
        0 8px 24px rgba(160, 145, 72, 0.45) !important;
    color: #fff !important;
}

/* ----------------------------------------------------------------
   11. About section — glass content panel on the navy side
   ---------------------------------------------------------------- */
.about-section .about_content {
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.08) 100%
        );
    backdrop-filter:  blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border:           1px solid rgba(255, 255, 255, 0.28);
    border-radius:    24px;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
        0 16px 40px rgba(0, 0, 0, 0.20);
    /* Generous all-round padding so text sits well inside the glass panel */
    padding: 40px 48px 44px 52px !important;
}

/* Years badge */
.about-section .image-circle {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.10) 100%
        ) !important;
    backdrop-filter:  blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border:           1px solid rgba(255, 255, 255, 0.40) !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.55),
        0 12px 30px rgba(0, 0, 0, 0.22) !important;
    border-radius:    50% !important;
}

/* ----------------------------------------------------------------
   12. CTA / Consultation — keep dark, add glass accent on text box
   ---------------------------------------------------------------- */
.consultation_content {
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.05) 100%
        );
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border:          1px solid rgba(255, 255, 255, 0.20);
    border-radius:   22px;
    padding:         36px !important;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.30),
        0 12px 32px rgba(0, 0, 0, 0.22);
}

/* ----------------------------------------------------------------
   13. Footer — keep existing dark styling, minor tweak
   ---------------------------------------------------------------- */
footer {
    backdrop-filter:      blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* ----------------------------------------------------------------
   14. Sub-banner — no changes, gold/navy split works on its own
   ---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   15. Contact form — white glass surfaces
   ---------------------------------------------------------------- */
.contact-section,
.contact_outer {
    background: transparent !important;
    background-color: transparent !important;
}
.contact-section form,
.contact_form_outer,
.contact_outer .contact_form {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.62) 100%
        ) !important;
    backdrop-filter: var(--lg-blur) !important;
    -webkit-backdrop-filter: var(--lg-blur) !important;
    border:          1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius:   var(--lg-radius) !important;
    box-shadow:      var(--lg-shadow) !important;
}

/* Glass inputs */
input.form-control,
textarea.form-control,
select.form-control,
.form-control {
    background:    rgba(255, 255, 255, 0.72) !important;
    border:        1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 10px !important;
    color:         #2d4050 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}
input.form-control::placeholder,
textarea.form-control::placeholder {
    color: rgba(100, 130, 150, 0.55) !important;
}
input.form-control:focus,
textarea.form-control:focus,
.form-control:focus {
    background:   rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(193, 178, 100, 0.70) !important;
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 0 3px rgba(193, 178, 100, 0.18) !important;
    color:        #1e3040 !important;
    outline:      none;
}
label:not(.float-field > label):not(.select-label) {
    color: var(--e-global-color-secondary) !important;
}

/* ----------------------------------------------------------------
   16. Contact page — info panel (navy glass) + form panel (white glass)
   ---------------------------------------------------------------- */

/* Navy info panel */
.contact-info-panel {
    background: linear-gradient(148deg, rgba(6,68,108,0.94) 0%, rgba(4,50,82,0.90) 100%);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--lg-radius-lg);
    box-shadow:
        inset 0 1.5px 0 rgba(255,255,255,0.14),
        0 8px 32px rgba(6,68,108,0.28);
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(193,178,100,0.07);
    pointer-events: none;
}
.contact-info-panel h3 {
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: 700;
}
.panel-subtitle {
    color: rgba(255,255,255,0.60) !important;
    font-size: 0.90rem;
    line-height: 1.65;
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(193,178,100,0.18);
    border: 1px solid rgba(193,178,100,0.40);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.80rem;
    color: #c8b870;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-of-type {
    border-bottom: none;
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 11px;
    background: rgba(193,178,100,0.14);
    border: 1px solid rgba(193,178,100,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8b870;
    font-size: 0.95rem;
}
.contact-info-item .info-label {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 0.18rem;
}
.contact-info-item a,
.contact-info-item span {
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.94rem;
    text-decoration: none;
    line-height: 1.4;
}
.contact-info-item a:hover {
    color: #c8b870 !important;
    text-decoration: none;
}
.response-time-card {
    background: rgba(193,178,100,0.10);
    border: 1px solid rgba(193,178,100,0.28);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.response-time-card i {
    color: #c8b870;
    margin-top: 2px;
}
.response-time-card strong {
    color: #fff;
}

/* White glass form panel */
.contact-form-panel {
    background: linear-gradient(148deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 100%);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid rgba(255,255,255,0.90);
    border-radius: var(--lg-radius-lg);
    box-shadow: var(--lg-shadow);
    padding: 2.5rem;
}
.form-panel-header {
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(6,68,108,0.07);
}
.form-panel-header h4 {
    color: #06446c !important;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}
.form-panel-header p {
    color: rgba(6,68,108,0.50) !important;
    font-size: 0.87rem;
    margin-bottom: 0;
}
.required-star {
    color: #c8b870;
    font-weight: 700;
}

/* ---- Floating label fields ---- */

/* Wrapper */
.float-field {
    position: relative;
    padding-top: 0.65rem; /* room for floated label above the border */
}

/* Left icon */
.float-field .field-icon {
    position: absolute;
    left: 14px;
    top: calc(0.65rem + 50%);  /* vertically centred inside the input, below the padding-top */
    transform: translateY(-50%);
    color: rgba(6, 68, 108, 0.35);
    font-size: 0.82rem;
    pointer-events: none;
    z-index: 4;
    transition: color 0.22s ease;
}
.float-field.textarea-field .field-icon {
    top: calc(0.65rem + 18px);
    transform: none;
}

/* Input / textarea inside a float-field */
.float-field .form-control {
    padding-left: 2.5rem !important;
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
}
.float-field.textarea-field .form-control {
    padding-top: 0.75rem !important;
}

/* The label — starts visually inside the field */
.float-field > label {
    position: absolute;
    left: 2.4rem;
    top: calc(0.65rem + 50%);   /* same baseline as field-icon */
    transform: translateY(-50%);
    font-size: 0.90rem !important;
    font-weight: 500 !important;
    color: rgba(6, 68, 108, 0.45) !important;
    pointer-events: none;
    z-index: 3;
    margin: 0;
    padding: 0 4px;
    background: transparent;
    border-radius: 4px;
    white-space: nowrap;
    transition: top 0.22s cubic-bezier(0.23, 1, 0.32, 1),
                left 0.22s cubic-bezier(0.23, 1, 0.32, 1),
                font-size 0.22s ease,
                color 0.22s ease,
                background 0.22s ease;
}
.float-field.textarea-field > label {
    top: calc(0.65rem + 18px);
    transform: none;
}

/* Floated state — triggered by focus OR when input has content */
.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label,
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
    top: 0 !important;
    left: 0.8rem !important;
    transform: translateY(-50%) !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #06446c !important;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.96) !important;
    padding: 1px 6px !important;
}

/* Gold accent while the field is focused */
.float-field:focus-within > label {
    color: #c8b870 !important;
}
.float-field:focus-within .field-icon {
    color: rgba(193, 178, 100, 0.80);
}

/* Select field — label is always in the floated position */
.select-field {
    padding-top: 0.65rem;
}
.select-field .select-label {
    position: absolute;
    top: 0;
    left: 0.8rem;
    transform: translateY(-50%);
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #06446c !important;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.96);
    padding: 1px 6px;
    border-radius: 4px;
    z-index: 4;
    margin: 0;
    pointer-events: none;
    white-space: nowrap;
}
.select-field:focus-within .select-label {
    color: #c8b870 !important;
}
.select-field .field-icon {
    top: calc(0.65rem + 50%);
    transform: translateY(-50%);
}

/* Submit button */
.contact-submit-btn {
    width: 100%;
    border: none !important;
    cursor: pointer;
    font-size: 1rem !important;
    padding: 0.88rem 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   Contact info cards (new no-form design)
   ---------------------------------------------------------------- */
.cinfo-card {
    background: linear-gradient(148deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 100%);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid rgba(255,255,255,0.88);
    border-top: 2px solid var(--lg-border-gold);
    border-radius: var(--lg-radius);
    box-shadow: var(--lg-shadow);
    padding: 2rem 1.6rem 1.6rem;
    text-align: center;
    transition: all 0.32s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}
.cinfo-card:hover {
    background: linear-gradient(148deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.80) 100%);
    box-shadow: var(--lg-shadow-hover);
    transform: translateY(-6px);
    border-top-color: rgba(193,178,100,0.90);
}
.cinfo-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(193,178,100,0.18) 0%, rgba(193,178,100,0.08) 100%);
    border: 1px solid rgba(193,178,100,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    color: var(--gold);
    transition: background 0.28s ease, transform 0.28s ease;
}
.cinfo-card:hover .cinfo-icon-wrap {
    background: linear-gradient(135deg, rgba(193,178,100,0.28) 0%, rgba(193,178,100,0.14) 100%);
    transform: scale(1.08);
}
.cinfo-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(6,68,108,0.50) !important;
    margin-bottom: 0.4rem;
}
.cinfo-value {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #06446c !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.cinfo-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.80rem;
    font-weight: 600;
    color: var(--gold);
    border-bottom: 1px solid rgba(193,178,100,0.40);
    padding-bottom: 1px;
    transition: gap 0.2s ease, border-color 0.2s ease;
}
.cinfo-card:hover .cinfo-action {
    gap: 0.65rem;
    border-color: rgba(193,178,100,0.80);
}

/* Bottom info strip */
.cinfo-strip {
    background: linear-gradient(148deg, rgba(6,68,108,0.92) 0%, rgba(4,50,82,0.88) 100%);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--lg-radius);
    box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.12), 0 8px 28px rgba(6,68,108,0.22);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cinfo-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}
.cinfo-strip-item > i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.cinfo-strip-label {
    font-size: 0.70rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: rgba(255,255,255,0.45) !important;
    margin-bottom: 0.2rem;
}
.cinfo-strip-value {
    font-size: 0.90rem !important;
    color: rgba(255,255,255,0.88) !important;
    margin-bottom: 0;
    line-height: 1.4;
}
.cinfo-strip-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.10);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .cinfo-strip {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.6rem;
    }
    .cinfo-strip-divider {
        width: 100%;
        height: 1px;
    }
}

/* Contact info boxes */
.contact-box {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(255, 255, 255, 0.55) 100%
        );
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border:          1px solid rgba(255, 255, 255, 0.80);
    border-radius:   14px;
    transition:      all 0.28s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1.0),
        0 3px 10px rgba(6, 68, 108, 0.07);
}
.contact-box:hover {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.75) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1.0),
        0 8px 24px rgba(6, 68, 108, 0.14);
    transform: translateY(-3px);
}
.contact-box .box-image figure {
    background:  rgba(215, 232, 242, 0.80) !important;
    box-shadow:  inset 0 1px 0 rgba(255,255,255,1.0) !important;
    border:      1px solid rgba(255, 255, 255, 0.85) !important;
}

/* ----------------------------------------------------------------
   17. Process panels (plateformeiam)
   ---------------------------------------------------------------- */
.proc-panel {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.62) 100%
        ) !important;
    backdrop-filter: var(--lg-blur) !important;
    -webkit-backdrop-filter: var(--lg-blur) !important;
    border:          1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius:   var(--lg-radius) !important;
    box-shadow:      var(--lg-shadow) !important;
}

/* ----------------------------------------------------------------
   18. Pricing cards
   ---------------------------------------------------------------- */
.pricing-card,
.pack-card,
.plan-card {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.62) 100%
        ) !important;
    backdrop-filter:  var(--lg-blur) !important;
    -webkit-backdrop-filter: var(--lg-blur) !important;
    border:           1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius:    var(--lg-radius) !important;
    box-shadow:       var(--lg-shadow) !important;
    transition:       all 0.32s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.pricing-card:hover,
.pack-card:hover,
.plan-card:hover {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.80) 100%
        ) !important;
    box-shadow:  var(--lg-shadow-hover) !important;
    transform:   translateY(-6px) !important;
}

/* ----------------------------------------------------------------
   19. Conditions pages / info boxes
   ---------------------------------------------------------------- */
.conditions-box,
.info-box,
blockquote {
    background:
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(255, 255, 255, 0.55) 100%
        );
    backdrop-filter: var(--lg-blur-sm);
    -webkit-backdrop-filter: var(--lg-blur-sm);
    border:          1px solid rgba(255, 255, 255, 0.80);
    border-radius:   14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1.0),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ----------------------------------------------------------------
   20. 404 page
   ---------------------------------------------------------------- */
.error-section {
    background: transparent !important;
}

/* ----------------------------------------------------------------
   21. Dropdown menus — already handled in custom-style, minor lift
   ---------------------------------------------------------------- */
.banner_outer .navbar-nav .dropdown-menu,
.sub-banner .navbar-nav .dropdown-menu {
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.90),
        0 10px 32px rgba(0, 0, 0, 0.18) !important;
}

/* ----------------------------------------------------------------
   22. Cookie consent bar
   ---------------------------------------------------------------- */
#cookie-consent {
    background:      rgba(6, 25, 44, 0.96) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border-top:      1px solid rgba(255, 255, 255, 0.12) !important;
}

/* ----------------------------------------------------------------
   23. Scrollbar — light neutral style
   ---------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(215, 228, 240, 0.60);
}
::-webkit-scrollbar-thumb {
    background:    rgba(6, 68, 108, 0.30);
    border-radius: 4px;
    border:        1px solid rgba(255, 255, 255, 0.50);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 68, 108, 0.55);
}

/* ----------------------------------------------------------------
   24. Selection
   ---------------------------------------------------------------- */
::selection {
    background: rgba(193, 178, 100, 0.28);
    color: #06446c;
}
