/**
 * AAB Brocanteur - Custom Styles
 * Styles personnalisés pour AAB Brocanteur
 */

/* ==========================================================================
   Variables de couleurs
   ========================================================================== */
:root {
    --aab-primary: #0C1B4D;
    --aab-primary-light: #1E40AF;
    --aab-secondary: #C9A96E;
    --aab-secondary-light: #DFC298;
    --aab-accent: #8B6914;
    --aab-dark: #0A0E1A;
    --aab-light: #FAF7F2;
    --aab-cream: #F5F0EB;
    --aab-warm-gray: #6B6462;
    --aab-charcoal: #1A1A2E;
    --aab-rose: #C4856C;
    --aab-gold-gradient: linear-gradient(135deg, #C9A96E 0%, #E8D5B5 50%, #A08347 100%);
    --aab-navy-gradient: linear-gradient(135deg, #0C1B4D 0%, #162350 50%, #1E40AF 100%);
    --aab-ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --aab-ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --aab-ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fix phone icon in header menu */
.main-menu-two__call-icon i.fa-phone {
    font-size: 40px;
    color: var(--bcorz-black, #333);
    transition: all 500ms ease;
}

.main-menu-two__call-icon:hover i.fa-phone {
    color: #fff;
}

/* ==========================================================================
   Utilitaires & Typography Améliorée
   ========================================================================== */

.text-primary-aab {
    color: var(--aab-primary) !important;
}

.bg-primary-aab {
    background-color: var(--aab-primary) !important;
}

.text-secondary-aab {
    color: var(--aab-secondary) !important;
}

/* Amélioration des paragraphes */
p {
    line-height: 1.8;
    color: #2D2926;
}

p strong {
    color: var(--bcorz-base);
    font-weight: 700;
}

/* Force strong tags to be visible on blue backgrounds */
section[style*="background: #1E40AF"] strong,
section[style*="background: linear-gradient(135deg, #1E40AF"] strong,
section[style*="background:linear-gradient(135deg, #1E40AF"] strong,
section[style*="background:#1E40AF"] strong,
.bg-primary-aab strong,
.trust-indicators strong,
.main-slider-two strong {
    color: #D4A054 !important; /* Gold color for better contrast */
}

/* Amélioration des listes */
ul li {
    line-height: 1.8;
}

/* Amélioration des titres */
h1, h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Effet sur les sections de texte centrées */
.container > p,
section > .container > p {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

/* Amélioration visuelle des blocs de texte importants */
section p strong {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

section p strong::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.1) 0%, rgba(212, 160, 84, 0.1) 100%);
    z-index: -1;
    border-radius: 2px;
}

/* Remove underline effect on blue backgrounds */
section[style*="background: #1E40AF"] p strong::after,
section[style*="background: linear-gradient(135deg, #1E40AF"] p strong::after,
.bg-primary-aab p strong::after,
.main-slider-two p strong::after {
    display: none;
}

/* ==========================================================================
   Footer Bottom Links
   ========================================================================== */

.site-footer-two__bottom-links {
    text-align: right;
}

.site-footer-two__bottom-links a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.site-footer-two__bottom-links a:hover {
    color: var(--aab-secondary);
}

@media (max-width: 767px) {
    .site-footer-two__bottom-links {
        text-align: center;
        margin-top: 15px;
    }
}

/* ==========================================================================
   Contact Info Cards
   ========================================================================== */

.contact-info-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
    min-height: 220px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 40px rgba(0,0,0,0.15);
}

.contact-info-card .icon {
    font-size: 48px;
    color: var(--aab-primary);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--aab-dark);
}

.contact-info-card p {
    margin-bottom: 0;
    color: #666;
}

.contact-info-card a {
    color: var(--aab-primary);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--aab-secondary);
}

.contact-info-card .badge {
    display: inline-block;
    background: var(--aab-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
}

/* ==========================================================================
   Legal Info Box (Contact Page)
   ========================================================================== */

.legal-info {
    background: var(--aab-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--aab-primary);
}

.legal-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--aab-dark);
}

.legal-info strong {
    color: var(--aab-primary);
}

/* ==========================================================================
   Form Enhancements
   ========================================================================== */

.form-control:focus,
.form-select:focus {
    border-color: var(--aab-primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.contact-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.contact-benefits ul li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #2ECC71;
    font-size: 18px;
}

.contact-assurance {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.contact-assurance p {
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-assurance a {
    color: var(--aab-primary);
    font-weight: 600;
}

/* ==========================================================================
   Alert Messages
   ========================================================================== */

.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    margin-right: 10px;
    font-size: 18px;
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    position: relative;
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .lead {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.page-header__cta {
    margin: 30px 0;
}

.page-header__cta .thm-btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.breadcrumb li {
    color: #fff;
    font-size: 14px;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li a {
    color: var(--aab-secondary);
}

.breadcrumb li a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header .lead {
        font-size: 16px;
    }
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--aab-dark);
    margin-bottom: 10px;
}

.legal-page .last-update {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--aab-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--aab-light);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--aab-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page .info-box {
    background: var(--aab-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--aab-primary);
    margin: 20px 0;
}

.legal-page .info-box p {
    margin-bottom: 5px;
}

.legal-page a {
    color: var(--aab-primary);
    font-weight: 600;
}

.legal-page a:hover {
    color: var(--aab-secondary);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .legal-page {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        min-height: auto;
    }

    .page-header__cta .thm-btn {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Custom button styles
   ========================================================================== */

.btn-secondary {
    background-color: var(--aab-secondary) !important;
    border-color: var(--aab-secondary) !important;
}

.btn-secondary:hover {
    background-color: #C08D42 !important;
    border-color: #C08D42 !important;
}

/* ==========================================================================
   Fix for footer widget spacing
   ========================================================================== */

.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact-info i {
    margin-right: 8px;
    color: var(--aab-secondary);
}

/* ==========================================================================
   Hero Banner (Main Slider) - Amélioration
   ========================================================================== */

.main-slider-two {
    position: relative;
    overflow: hidden;
}

.main-slider-two .swiper-slide {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.main-slider-two .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-slider-two .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 64, 175, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.main-slider-two__content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.main-slider-two__title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.main-slider-two__text {
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 700px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.main-slider-two__btn {
    animation: fadeInUp 1.2s ease-out;
    text-align: center;
    margin-top: 25px;
    position: relative;
    padding:20px;
}

/* Badge d'expérience au-dessus des boutons */
.main-slider-two__btn::before {
    content: '30 ANS D\'EXPERIENCE A BRUXELLES';
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, var(--aab-secondary) 100%);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 30px;
    margin: 0 auto 30px auto;
    width: fit-content;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 1.5px;
    animation: fadeInUp 1.4s ease-out, shimmer 3s infinite;
}

/* Traductions du badge par langue */
.lang-fr .main-slider-two__btn::before {
    content: '30 ANS D\'EXPERIENCE A BRUXELLES';
}

.lang-nl .main-slider-two__btn::before {
    content: '30 JAAR ERVARING IN BRUSSEL';
}

.lang-en .main-slider-two__btn::before {
    content: '30 YEARS EXPERIENCE IN BRUSSELS';
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

.main-slider-two__btn .thm-btn {
    padding: 0;
    margin: 0 15px 20px 15px;
    display: inline-block;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    border: none;
    min-width: 280px;
}

/* Effet brillant au hover */
.main-slider-two__btn .thm-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.main-slider-two__btn .thm-btn:hover::after {
    left: 100%;
}

/* Structure interne du bouton */
.main-slider-two__btn .thm-btn span {
    display: block;
    padding: 20px 40px;
    position: relative;
    z-index: 2;
}

.main-slider-two__btn .thm-btn i {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 12px;
    display: inline-block;
}

.main-slider-two__btn .thm-btn .btn-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.main-slider-two__btn .thm-btn .btn-subtext {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Bouton Appeler - Design Premium */
.main-slider-two__btn .thm-btn:first-child {
    background: linear-gradient(135deg, #2ECC71 0%, #27ae60 100%);
    position: relative;
}

.main-slider-two__btn .thm-btn:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2ECC71 0%, #27ae60 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.main-slider-two__btn .thm-btn:first-child:hover::before {
    opacity: 1;
}

.main-slider-two__btn .thm-btn:first-child:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.6);
}

/* Animation pulsante pour le bouton appel */
.main-slider-two__btn .thm-btn:first-child {
    animation: callPulse 2.5s ease-in-out infinite;
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(46, 204, 113, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(46, 204, 113, 0.4),
                    0 0 0 0 rgba(46, 204, 113, 0.4),
                    0 0 0 15px rgba(46, 204, 113, 0.1);
    }
}

/* Bouton Devis - Design Premium */
.main-slider-two__btn .thm-btn:last-child {
    background: linear-gradient(135deg, var(--aab-secondary) 0%, #b8894a 100%);
}

.main-slider-two__btn .thm-btn:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e6b76a 0%, var(--aab-secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.main-slider-two__btn .thm-btn:last-child:hover::before {
    opacity: 1;
}

.main-slider-two__btn .thm-btn:last-child:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 160, 84, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 64, 175, 0.6), 0 0 60px rgba(212, 160, 84, 0.3);
    }
}

/* Animation pour les blocs de texte */
.section-title,
.services-one__single,
.before-after-card,
.testimonial-card,
.trust-badge {
    animation: fadeInUp 0.8s ease-out;
}

/* Animation délai pour effet en cascade */
.services-one__single:nth-child(1) { animation-delay: 0.1s; }
.services-one__single:nth-child(2) { animation-delay: 0.2s; }
.services-one__single:nth-child(3) { animation-delay: 0.3s; }
.services-one__single:nth-child(4) { animation-delay: 0.4s; }
.services-one__single:nth-child(5) { animation-delay: 0.5s; }
.services-one__single:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 991px) {
    .main-slider-two .swiper-slide {
        min-height: 320px;
    }

    .main-slider-two__title {
        font-size: 48px;
    }

    .main-slider-two__text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .main-slider-two__btn::before {
        font-size: 12px;
        padding: 10px 20px;
    }

    .main-slider-two__btn .thm-btn {
        min-width: 250px;
        margin: 0 10px 15px 10px;
    }

    .main-slider-two__btn .thm-btn .btn-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .main-slider-two .swiper-slide {
        min-height: 280px;
    }

    .main-slider-two__title {
        font-size: 36px;
    }

    .main-slider-two__text {
        font-size: 16px;
    }

    .main-slider-two__btn::before {
        font-size: 11px;
        padding: 8px 15px;
        letter-spacing: 0.5px;
    }

    .main-slider-two__btn .thm-btn {
        display: block;
        margin: 0 auto 15px auto;
        width: 90%;
        max-width: 320px;
        min-width: auto;
    }

    .main-slider-two__btn .thm-btn span {
        padding: 18px 30px;
    }

    .main-slider-two__btn .thm-btn .btn-text {
        font-size: 17px;
    }

    .main-slider-two__btn .thm-btn .btn-subtext {
        font-size: 12px;
    }

    .main-slider-two__btn .thm-btn i {
        font-size: 20px;
    }
}

/* ==========================================================================
   Services Cards - Amélioration
   ========================================================================== */

.services-one {
    position: relative;
}

.services-one .col-xl-4,
.services-one .col-lg-4,
.services-one .col-md-6 {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.services-one__single {
    background: linear-gradient(135deg, #fff 0%, var(--aab-light) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(12, 27, 77, 0.06);
    margin-bottom: 50px;
    transition: all 0.6s var(--aab-ease-premium);
    border: 1px solid rgba(201, 169, 110, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-one__single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 27, 77, 0.03) 0%, rgba(201, 169, 110, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.services-one__single::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--aab-primary) 0%, var(--aab-secondary) 50%, var(--aab-primary-light) 100%);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.services-one__single:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(12, 27, 77, 0.15),
                0 0 30px rgba(201, 169, 110, 0.06);
    border-color: transparent;
}

.services-one__single:hover::before {
    opacity: 1;
}

.services-one__single:hover::after {
    opacity: 1;
}

.services-one__single > * {
    position: relative;
    z-index: 1;
}

.services-one__icon {
    width: 90px;
    height: 90px;
    background: var(--aab-navy-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.6s var(--aab-ease-elastic);
    box-shadow: 0 10px 30px rgba(12, 27, 77, 0.3);
    position: relative;
    overflow: hidden;
}

/* Effet de brillance sur l'icône */
.services-one__icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.services-one__single:hover .services-one__icon::before {
    left: 100%;
}

.services-one__single:hover .services-one__icon {
    background: var(--aab-gold-gradient);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.45);
}

.services-one__icon i {
    font-size: 40px;
    color: #fff;
    transition: all 0.4s ease;
}

.services-one__single:hover .services-one__icon i {
    transform: scale(1.1);
}

.services-one__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: var(--aab-dark);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.services-one__title a {
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--aab-primary) 0%, var(--aab-secondary) 100%);
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent; */
        background-clip: text;
    /*opacity: 0;
    */}

.services-one__single:hover .services-one__title a {
    opacity: 1;
}

.services-one__text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.services-one__single:hover .services-one__text {
    color: #333;
}

.services-one__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--aab-navy-gradient);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s var(--aab-ease-premium);
    margin: 0 auto;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(12, 27, 77, 0.3);
}

.services-one__link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.services-one__link:hover {
    background: var(--aab-gold-gradient);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.services-one__link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Footer Spacing - Réglage
   ========================================================================== */

.site-footer-two {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding-top: 100px;
    padding-bottom: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer-two .container {
    max-width: 1400px;
}

/* Effet de vague en haut du footer */
.site-footer-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C200,100 400,20 600,60 C800,100 1000,20 1200,60 L1200,0 L0,0 Z" fill="%23f8f9fa"/></svg>') no-repeat;
    background-size: cover;
    top: -1px;
}

.site-footer-two__top {
    padding-bottom: 60px;
    margin-bottom: 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    position: relative;
}

/* Design pour les colonnes du footer */
.footer-widget-two__column,
.footer-widget-two__quick-links,
.footer-widget-two__get-in-touch {
    margin-bottom: 40px;
}

/* Logo et À propos */
.footer-widget-two__logo-box {
    margin-bottom: 25px;
}

.footer-widget-two__text {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Contact Widget dans footer */
.footer-widget-two__contact {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid rgba(212, 160, 84, 0.3);
    transition: all 0.4s ease;
    margin-top: 20px;
}

.footer-widget-two__contact:hover {
    background: rgba(212, 160, 84, 0.2);
    border-color: var(--aab-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 84, 0.3);
}

.footer-widget-two__contact .icon {
    font-size: 30px;
    color: var(--aab-secondary);
    margin-right: 20px;
}

.footer-widget-two__contact .text a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget-two__contact .text a:hover {
    color: var(--aab-secondary);
}

/* Titres des widgets */
.footer-widget-two__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget-two__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--aab-gold-gradient);
    border-radius: 2px;
}

/* Listes de liens */
.footer-widget-two__quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-two__quick-links-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-widget-two__quick-links-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--aab-secondary);
    font-weight: 700;
    transition: transform 0.3s;
}

.footer-widget-two__quick-links-list li:hover::before {
    transform: translateX(5px);
}

.footer-widget-two__quick-links-list li a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
}

.footer-widget-two__quick-links-list li a:hover {
    color: var(--aab-secondary);
    padding-left: 5px;
}

/* Infos de contact */
.footer-contact-info {
    margin-bottom: 25px;
}

.footer-contact-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    align-items: center;
}

.footer-contact-info p i {
    color: var(--aab-secondary);
    margin-right: 12px;
    font-size: 18px;
    min-width: 20px;
}

.footer-contact-info p a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-contact-info p a:hover {
    color: var(--aab-secondary);
}

/* Réseaux sociaux */
.footer-widget-two__social-box {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget-two__social-box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.footer-widget-two__social-box li a:hover {
    background: var(--aab-gold-gradient);
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--aab-secondary);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.35);
}

/* Footer Bottom */
.site-footer-two__bottom {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    border-top: 2px solid rgba(212, 160, 84, 0.2);
    backdrop-filter: blur(10px);
}

.site-footer-two__bottom-text p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}

.site-footer-two__bottom-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.site-footer-two__bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aab-secondary);
    transition: width 0.3s;
}

.site-footer-two__bottom-links a:hover {
    color: var(--aab-secondary);
}

.site-footer-two__bottom-links a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .site-footer-two {
        padding-top: 80px;
    }

    .footer-widget-two__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .site-footer-two {
        padding-top: 60px;
    }

    .site-footer-two__bottom-text,
    .site-footer-two__bottom-links {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Section Title - Amélioration
   ========================================================================== */

.section-title {
    margin-bottom: 50px;
}

.section-title__tagline {
    display: inline-block;
    background: var(--aab-navy-gradient);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(12, 27, 77, 0.35);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--aab-ease-premium);
}

.section-title__tagline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-title:hover .section-title__tagline::before {
    width: 300px;
    height: 300px;
}

.section-title__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--aab-dark);
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--aab-gold-gradient);
    border-radius: 2px;
}

/* ==========================================================================
   CONTRAST FIX - Ensure white text on blue backgrounds for readability
   ========================================================================== */

/* Force white text on ALL blue backgrounds - More specific selectors */
section[style*="background: #1E40AF"],
section[style*="background: linear-gradient(135deg, #1E40AF"],
section[style*="background:linear-gradient(135deg, #1E40AF"],
section[style*="background:#1E40AF"],
.bg-primary-aab,
.trust-indicators {
    color: #fff !important;
}

/* Section Title on blue backgrounds */
section[style*="background: #1E40AF"] .section-title__title,
section[style*="background: linear-gradient(135deg, #1E40AF"] .section-title__title,
section[style*="background:linear-gradient(135deg, #1E40AF"] .section-title__title,
section[style*="background:#1E40AF"] .section-title__title,
.bg-primary-aab .section-title__title,
.trust-indicators .section-title__title {
    color: #fff !important;
}

section[style*="background: #1E40AF"] .section-title__tagline,
section[style*="background: linear-gradient(135deg, #1E40AF"] .section-title__tagline,
section[style*="background:linear-gradient(135deg, #1E40AF"] .section-title__tagline,
section[style*="background:#1E40AF"] .section-title__tagline,
.bg-primary-aab .section-title__tagline,
.trust-indicators .section-title__tagline {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

/* Paragraphs on blue backgrounds */
section[style*="background: #1E40AF"] p,
section[style*="background: linear-gradient(135deg, #1E40AF"] p,
section[style*="background:linear-gradient(135deg, #1E40AF"] p,
section[style*="background:#1E40AF"] p,
.bg-primary-aab p,
.trust-indicators p {
    color: #fff !important;
    opacity: 0.95;
}

/* ALL headings on blue backgrounds - FORCE WHITE */
section[style*="background: #1E40AF"] h1,
section[style*="background: #1E40AF"] h2,
section[style*="background: #1E40AF"] h3,
section[style*="background: #1E40AF"] h4,
section[style*="background: #1E40AF"] h5,
section[style*="background: #1E40AF"] h6,
section[style*="background: linear-gradient(135deg, #1E40AF"] h1,
section[style*="background: linear-gradient(135deg, #1E40AF"] h2,
section[style*="background: linear-gradient(135deg, #1E40AF"] h3,
section[style*="background: linear-gradient(135deg, #1E40AF"] h4,
section[style*="background: linear-gradient(135deg, #1E40AF"] h5,
section[style*="background: linear-gradient(135deg, #1E40AF"] h6,
section[style*="background:linear-gradient(135deg, #1E40AF"] h1,
section[style*="background:linear-gradient(135deg, #1E40AF"] h2,
section[style*="background:linear-gradient(135deg, #1E40AF"] h3,
section[style*="background:linear-gradient(135deg, #1E40AF"] h4,
section[style*="background:linear-gradient(135deg, #1E40AF"] h5,
section[style*="background:linear-gradient(135deg, #1E40AF"] h6,
section[style*="background:#1E40AF"] h1,
section[style*="background:#1E40AF"] h2,
section[style*="background:#1E40AF"] h3,
section[style*="background:#1E40AF"] h4,
section[style*="background:#1E40AF"] h5,
section[style*="background:#1E40AF"] h6,
.bg-primary-aab h1,
.bg-primary-aab h2,
.bg-primary-aab h3,
.bg-primary-aab h4,
.bg-primary-aab h5,
.bg-primary-aab h6,
.trust-indicators h1,
.trust-indicators h2,
.trust-indicators h3,
.trust-indicators h4,
.trust-indicators h5,
.trust-indicators h6 {
    color: #fff !important;
}

/* Lists on blue backgrounds */
section[style*="background: #1E40AF"] ul,
section[style*="background: #1E40AF"] ol,
section[style*="background: #1E40AF"] li,
section[style*="background: linear-gradient(135deg, #1E40AF"] ul,
section[style*="background: linear-gradient(135deg, #1E40AF"] ol,
section[style*="background: linear-gradient(135deg, #1E40AF"] li,
section[style*="background:linear-gradient(135deg, #1E40AF"] ul,
section[style*="background:linear-gradient(135deg, #1E40AF"] ol,
section[style*="background:linear-gradient(135deg, #1E40AF"] li,
section[style*="background:#1E40AF"] ul,
section[style*="background:#1E40AF"] ol,
section[style*="background:#1E40AF"] li,
.bg-primary-aab ul,
.bg-primary-aab ol,
.bg-primary-aab li,
.trust-indicators ul,
.trust-indicators ol,
.trust-indicators li {
    color: #fff !important;
}

/* Links on blue backgrounds */
section[style*="background: #1E40AF"] a:not(.thm-btn),
section[style*="background: linear-gradient(135deg, #1E40AF"] a:not(.thm-btn),
section[style*="background:linear-gradient(135deg, #1E40AF"] a:not(.thm-btn),
section[style*="background:#1E40AF"] a:not(.thm-btn),
.bg-primary-aab a:not(.thm-btn),
.trust-indicators a:not(.thm-btn) {
    color: #D4A054 !important;
    text-decoration: underline;
}

section[style*="background: #1E40AF"] a:not(.thm-btn):hover,
section[style*="background: linear-gradient(135deg, #1E40AF"] a:not(.thm-btn):hover,
section[style*="background:linear-gradient(135deg, #1E40AF"] a:not(.thm-btn):hover,
section[style*="background:#1E40AF"] a:not(.thm-btn):hover,
.bg-primary-aab a:not(.thm-btn):hover,
.trust-indicators a:not(.thm-btn):hover {
    color: #fff !important;
}

/* Divs with text inside blue sections */
section[style*="background: #1E40AF"] div,
section[style*="background: linear-gradient(135deg, #1E40AF"] div,
section[style*="background:linear-gradient(135deg, #1E40AF"] div,
section[style*="background:#1E40AF"] div,
.bg-primary-aab div,
.trust-indicators div {
    color: inherit;
}

/* Specific fix for icons/font-awesome on blue backgrounds */
section[style*="background: #1E40AF"] i,
section[style*="background: linear-gradient(135deg, #1E40AF"] i,
section[style*="background:linear-gradient(135deg, #1E40AF"] i,
section[style*="background:#1E40AF"] i,
.bg-primary-aab i,
.trust-indicators i {
    color: inherit;
}

@media (max-width: 767px) {
    .section-title__title {
        font-size: 32px;
    }
}

/* ==========================================================================
   Process/Benefits Cards - Amélioration
   ========================================================================== */

.process-one__single,
.benefit-card {
    transition: all 0.3s ease;
}

.process-one__single:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.process-one__icon {
    width: 80px;
    height: 80px;
    background: var(--aab-navy-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(12, 27, 77, 0.3);
    transition: all 0.5s var(--aab-ease-elastic);
}

.process-one__single:hover .process-one__icon {
    background: var(--aab-gold-gradient);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.process-one__icon i {
    font-size: 32px;
    color: #fff;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-badge:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.2) !important;
    border-color: #D4A054 !important;
}

@media (max-width: 767px) {
    .trust-section {
        padding: 60px 0 !important;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.15) !important;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0 !important;
    }
}

/* ==========================================================================
   Before/After Section
   ========================================================================== */

.before-after-card {
    transition: all 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}

@media (max-width: 767px) {
    .before-after-section {
        padding: 60px 0 !important;
    }

    .before-after-card > div:first-child {
        height: 250px !important;
    }
}

/* ==========================================================================
   Google My Business Section
   ========================================================================== */

.google-business-section .google-map-wrapper iframe {
    border-radius: 15px;
}

.google-business-section .business-rating {
    transition: all 0.3s ease;
}

.google-business-section .business-rating:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.google-business-section .business-details {
    transition: all 0.3s ease;
}

.google-business-section .business-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

@media (max-width: 991px) {
    .google-business-section .google-business-info {
        padding: 30px 0 0 0 !important;
    }

    .google-business-section .google-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .google-business-section {
        padding: 60px 0 !important;
    }

    .google-business-section .google-map-wrapper iframe {
        height: 300px;
    }

    .google-business-section .business-rating,
    .google-business-section .business-details {
        padding: 25px !important;
    }
}

/* ==========================================================================
   Button Improvements - FORCE WHITE TEXT ON ALL COLORED BUTTONS
   ========================================================================== */

.thm-btn {
    border-radius: 8px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background-color: var(--aab-primary, #0C1B4D);
    border-color: var(--aab-primary, #0C1B4D);
    color: #fff !important; /* Force white text on all buttons */
}

.thm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background-color: var(--aab-primary-light, #1E40AF);
    border-color: var(--aab-primary-light, #1E40AF);
    color: #fff !important;
}

/* Contact form submit button - prominent green */
.contact-form-box .thm-btn,
.contact-form-section .thm-btn {
    background: linear-gradient(135deg, #2C5F2D 0%, #1e4320 100%) !important;
    border-color: #2C5F2D !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form-box .thm-btn:hover,
.contact-form-section .thm-btn:hover {
    background: linear-gradient(135deg, #1e4320 0%, #164018 100%) !important;
    border-color: #1e4320 !important;
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.thm-btn--dark {
    background: var(--aab-dark);
    border-color: var(--aab-dark);
    color: #fff !important;
}

.thm-btn--dark:hover {
    background: #1a252f;
    border-color: #1a252f;
    color: #fff !important;
}

/* Force white text on ALL button elements and spans inside */
.thm-btn *,
.thm-btn span,
.thm-btn i,
.thm-btn .btn-text,
.thm-btn .btn-subtext {
    color: #fff !important;
}

/* Buttons with blue background */
a[style*="background: #1E40AF"],
a[style*="background:#1E40AF"],
button[style*="background: #1E40AF"],
button[style*="background:#1E40AF"],
.btn-primary,
[class*="btn-"][style*="background"] {
    color: #fff !important;
}

/* Buttons with green background */
a[style*="background: #27ae60"],
a[style*="background: #2ECC71"],
button[style*="background: #27ae60"],
button[style*="background: #2ECC71"] {
    color: #fff !important;
}

/* Buttons with gold/secondary background */
a[style*="background: #D4A054"],
button[style*="background: #D4A054"],
.btn-secondary {
    color: #fff !important;
}

/* Exception: White or light colored buttons should have dark text */
.thm-btn[style*="background: #fff"],
.thm-btn[style*="background: #ffffff"],
.thm-btn[style*="background: white"],
.btn-light,
.btn-white {
    color: var(--aab-primary) !important;
}

.thm-btn[style*="background: #fff"] *,
.thm-btn[style*="background: #ffffff"] *,
.thm-btn[style*="background: white"] *,
.btn-light *,
.btn-white * {
    color: var(--aab-primary) !important;
}

/* ==========================================================================
   About Section - Amélioration
   ========================================================================== */

.about-three {
    position: relative;
}

.about-three__img img {
    width: 100%;
    height: auto;
    min-height: 550px;
    object-fit: cover;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2) !important;
    transition: all 0.4s ease;
}

.about-three__img img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(30, 64, 175, 0.3) !important;
}

.about-three__text-1,
.about-three__text-2 {
    font-size: 16px !important;
    line-height: 1.9 !important;
    color: #555 !important;
    margin-bottom: 25px !important;
}

.about-three__list {
    margin-top: 30px !important;
}

.about-three__list li {
    margin-bottom: 20px !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, rgba(12, 27, 77, 0.03) 0%, rgba(201, 169, 110, 0.04) 100%);
    border-radius: 12px;
    transition: all 0.5s var(--aab-ease-premium);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.about-three__list li:hover {
    background: linear-gradient(135deg, rgba(12, 27, 77, 0.06) 0%, rgba(201, 169, 110, 0.08) 100%);
    transform: translateX(10px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 5px 20px rgba(12, 27, 77, 0.05);
}

.about-three__list li .icon {
    width: 40px;
    height: 40px;
    background: var(--aab-navy-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-three__list li .icon i {
    color: #fff;
    font-size: 18px;
}

.about-three__list li .text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-three__img img {
        min-height: 400px;
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   Floating Call Button - Bouton d'Appel Flottant Animé
   ========================================================================== */

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.5);
    transition: all 0.3s ease;
    animation: callPulse 2s ease-in-out infinite, float 3s ease-in-out infinite;
    position: relative;
}

.floating-call-btn a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.4);
    animation: ripple 2s ease-out infinite;
    z-index: -1;
}

.floating-call-btn a::after {
    content: 'Appelez-nous !';
    position: absolute;
    right: 85px;
    background: linear-gradient(135deg, var(--aab-primary) 0%, #1E3A8A 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.4);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Traductions bouton flottant */
.lang-fr .floating-call-btn a::after {
    content: 'Appelez-nous !';
}

.lang-nl .floating-call-btn a::after {
    content: 'Bel ons!';
}

.lang-en .floating-call-btn a::after {
    content: 'Call us!';
}

.floating-call-btn a:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.7);
}

.floating-call-btn a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Version mobile du bouton flottant */
@media (max-width: 767px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-call-btn a {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .floating-call-btn a::after {
        display: none;
    }
}

/* ==========================================================================
   Bannière hero image - Version mobile simplifiée
   ========================================================================== */
@media (max-width: 991px) {
    .main-slider-two {
        display: none !important;
    }

    .mobile-hero {
        display: block !important;
    }
}

/* Mobile Hero Section */
.mobile-hero {
    display: none;
    background: linear-gradient(135deg, #0C1B4D 0%, #1a2d6b 50%, #0C1B4D 100%);
    padding: 40px 20px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mobile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../aab_img2/284178514_584681309682315_8697017561825401395_n.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.mobile-hero .mobile-hero__content {
    position: relative;
    z-index: 2;
}

.mobile-hero .mobile-hero__title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.mobile-hero .mobile-hero__title span {
    color: #D4A054;
    display: block;
    font-size: 20px;
    margin-top: 5px;
}

.mobile-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mobile-hero .mobile-hero__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-hero .mobile-hero__btns a {
    display: block;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
}

.mobile-hero .mobile-hero__btns .btn-call {
    background: linear-gradient(135deg, #2C5F2D, #1e4320);
    color: #fff;
}

.mobile-hero .mobile-hero__btns .btn-devis {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

/* ==========================================================================
   Bannière Google Business Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .google-business-badge {
        padding: 8px 0 !important;
    }

    .google-business-badge .google-icon {
        font-size: 20px !important;
    }

    .google-business-badge .google-rating {
        font-size: 18px !important;
    }

    .google-business-badge .google-subtitle {
        font-size: 11px !important;
    }

    .google-business-badge .reviews-count {
        font-size: 13px !important;
    }

    .google-business-badge .google-cta-btn {
        font-size: 12px !important;
        padding: 7px 16px !important;
    }
}

@media (max-width: 767px) {
    .google-business-badge {
        padding: 6px 0 !important;
    }

    .google-business-badge > div {
        gap: 10px !important;
    }

    .google-business-badge .separator-line {
        display: none !important;
    }

    .google-business-badge .google-icon {
        font-size: 18px !important;
    }

    .google-business-badge .google-rating {
        font-size: 16px !important;
    }

    .google-business-badge .google-subtitle {
        font-size: 10px !important;
    }

    .google-business-badge .reviews-count {
        font-size: 12px !important;
    }

    .google-business-badge .reviews-count span {
        display: none;
    }

    .google-business-badge .reviews-count::after {
        content: '47 Avis';
    }

    .lang-nl .google-business-badge .reviews-count::after {
        content: '47 Reviews';
    }

    .lang-en .google-business-badge .reviews-count::after {
        content: '47 Reviews';
    }

    .google-business-badge .google-cta-btn {
        font-size: 11px !important;
        padding: 6px 14px !important;
    }

    .google-business-badge .google-cta-btn span {
        display: none;
    }

    .google-business-badge .google-cta-btn::after {
        content: 'Voir Avis';
    }

    .lang-nl .google-business-badge .google-cta-btn::after {
        content: 'Bekijk';
    }

    .lang-en .google-business-badge .google-cta-btn::after {
        content: 'View';
    }
}

@media (max-width: 480px) {
    .google-business-badge {
        padding: 5px 0 !important;
    }

    .google-business-badge > div {
        gap: 8px !important;
        padding: 0 10px !important;
    }

    .google-business-badge .google-icon {
        font-size: 16px !important;
    }

    .google-business-badge .google-rating {
        font-size: 14px !important;
    }

    .google-business-badge .google-subtitle {
        font-size: 9px !important;
    }

    .google-business-badge .reviews-count {
        font-size: 11px !important;
    }

    .google-business-badge .google-cta-btn {
        font-size: 10px !important;
        padding: 5px 12px !important;
    }
}

/* ==========================================================================
   Fix Header Menu Layout - Prevent Call Button from Wrapping
   ========================================================================== */

.main-menu-two__wrapper-inner {
    flex-wrap: nowrap !important;
}

.main-menu-two__left {
    flex-shrink: 1;
    min-width: 0;
}

.main-menu-two__right {
    flex-shrink: 0;
}

/* Réduire la taille de police et les espacements du menu */
.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-size: 15px !important;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 20px !important;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 25px;
    padding-bottom: 25px;
}

/* Réduire le padding du wrapper */
.main-menu-two__wrapper {
    padding: 0 40px !important;
}

/* Ajustements supplémentaires pour NL */
.lang-nl .main-menu .main-menu__list > li + li {
    margin-left: 18px !important;
}

/* Media query pour écrans moyens */
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 18px !important;
    }

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 25px !important;
    }

    .main-menu-two__wrapper {
        padding: 0 30px !important;
    }
}

/* ==========================================================================
   Language Selector - Top Bar
   ========================================================================== */

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 6px;
    border-radius: 6px;
}

.language-selector .lang-btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.language-selector .lang-btn.active {
    background: var(--aab-secondary);
    color: #fff;
    font-weight: 700;
}

@media (max-width: 991px) {
    .language-selector {
        display: none;
    }
}

/* ==========================================================================
   Language Selector in Main Navigation Menu (Dropdown)
   ========================================================================== */

.menu-lang-selector > a {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.menu-lang-selector > a i {
    font-size: 14px;
    color: var(--aab-secondary);
}

.menu-lang-selector ul li a.active-lang {
    color: var(--aab-secondary) !important;
    font-weight: 700 !important;
    position: relative;
}

.menu-lang-selector ul li a.active-lang::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--aab-secondary);
    border-radius: 2px;
}

/* ==========================================================================
   Language Selector in Mobile Navigation
   ========================================================================== */

.nav-language-selector {
    display: none;
}

@media (max-width: 991px) {
    .nav-language-selector {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
    }

    .nav-language-selector .lang-btn {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 12px 24px;
        border-radius: 6px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .nav-language-selector .lang-btn:hover {
        background: rgba(212, 160, 84, 0.3);
        border-color: var(--aab-secondary);
    }

    .nav-language-selector .lang-btn.active {
        background: linear-gradient(135deg, var(--aab-secondary) 0%, #b8894a 100%);
        border-color: var(--aab-secondary);
        color: #fff;
    }
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  PREMIUM ANIMATIONS & LUXE UI/UX                                       ║
   ║  Techniques: scroll-driven, magnetic, 3D tilt, text split,             ║
   ║  gradient borders, noise texture, clip-path, elastic easing            ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/* Smooth scroll global */
html {
    scroll-behavior: smooth;
}

/* Global body grain texture overlay for luxury feel */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99990;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Scroll Reveal Animations (Premium easing)
   ========================================================================== */

.aab-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--aab-ease-premium),
                transform 1s var(--aab-ease-premium);
    will-change: opacity, transform;
}

.aab-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.aab-reveal-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 1s var(--aab-ease-premium),
                transform 1s var(--aab-ease-premium);
    will-change: opacity, transform;
}

.aab-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.aab-reveal-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 1s var(--aab-ease-premium),
                transform 1s var(--aab-ease-premium);
    will-change: opacity, transform;
}

.aab-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.aab-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s var(--aab-ease-premium),
                transform 1s var(--aab-ease-premium);
    will-change: opacity, transform;
}

.aab-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays - cascade effect */
.aab-stagger > *:nth-child(1) { transition-delay: 0s; }
.aab-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.aab-stagger > *:nth-child(3) { transition-delay: 0.24s; }
.aab-stagger > *:nth-child(4) { transition-delay: 0.36s; }
.aab-stagger > *:nth-child(5) { transition-delay: 0.48s; }
.aab-stagger > *:nth-child(6) { transition-delay: 0.60s; }

/* ==========================================================================
   Premium Shine Sweep Effect
   ========================================================================== */

.aab-shine {
    position: relative;
    overflow: hidden;
}

.aab-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 35%,
        rgba(201, 169, 110, 0.06) 40%,
        rgba(201, 169, 110, 0.12) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(201, 169, 110, 0.12) 55%,
        rgba(201, 169, 110, 0.06) 60%,
        transparent 65%
    );
    transform: translateX(-100%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.aab-shine:hover::after {
    transform: translateX(100%);
    transition: transform 1s var(--aab-ease-premium);
}

/* ==========================================================================
   Animated Gradient Border (Pricing Cards)
   ========================================================================== */

.aab-glow-border {
    position: relative;
    z-index: 1;
}

.aab-glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        var(--aab-secondary),
        var(--aab-primary),
        var(--aab-secondary-light),
        var(--aab-primary-light),
        var(--aab-secondary)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s var(--aab-ease-premium);
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

.aab-glow-border:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* ==========================================================================
   Pricing Formulas Cards - Premium
   ========================================================================== */

.pricing-formulas .col-lg-4 > div {
    transition: all 0.6s var(--aab-ease-premium);
    backdrop-filter: blur(5px);
}

.pricing-formulas .col-lg-4 > div:hover {
    transform: translateY(-18px);
    box-shadow: 0 35px 80px rgba(12, 27, 77, 0.18),
                0 0 40px rgba(201, 169, 110, 0.08) !important;
}

/* ==========================================================================
   Process Steps - Premium with animated bar
   ========================================================================== */

.process-one__single {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(12, 27, 77, 0.05);
    transition: all 0.6s var(--aab-ease-premium);
    overflow: hidden;
}

.process-one__single::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--aab-gold-gradient);
    border-radius: 2px;
    transition: width 0.6s var(--aab-ease-premium);
}

.process-one__single:hover::after {
    width: 80%;
}

.process-one__single:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(12, 27, 77, 0.12),
                0 0 30px rgba(201, 169, 110, 0.06);
}

.process-one__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--aab-dark);
    margin-bottom: 15px;
}

.process-one__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--aab-warm-gray);
}

/* ==========================================================================
   Before/After Cards - Clip-path reveal on hover
   ========================================================================== */

.before-after-card {
    overflow: hidden;
    position: relative;
}

.before-after-card img {
    transition: transform 1.2s var(--aab-ease-premium),
                filter 0.6s ease;
}

.before-after-card:hover img {
    transform: scale(1.1);
    filter: contrast(1.05) saturate(1.1);
}

/* Gold overlay sweep on hover */
.before-after-card > div:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.before-after-card:hover > div:first-child::after {
    opacity: 1;
}

/* ==========================================================================
   Testimonial Cards - Luxe quote
   ========================================================================== */

.testimonial-card {
    transition: all 0.6s var(--aab-ease-premium) !important;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    background: linear-gradient(135deg, rgba(12, 27, 77, 0.04), rgba(201, 169, 110, 0.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', serif;
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
}

.testimonial-card:hover::before {
    transform: scale(1.2);
}

.testimonial-card:hover {
    box-shadow: 0 25px 60px rgba(12, 27, 77, 0.12),
                0 0 20px rgba(201, 169, 110, 0.06) !important;
}

/* ==========================================================================
   Services Cards - Premium image zoom + gradient overlay
   ========================================================================== */

.services-one__img {
    overflow: hidden;
    position: relative;
}

.services-one__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(12, 27, 77, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.services-one__single:hover .services-one__img::after {
    opacity: 1;
}

.services-one__img img {
    transition: transform 1.2s var(--aab-ease-premium),
                filter 0.6s ease;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.12);
    filter: saturate(1.1);
}

/* ==========================================================================
   Section Title - Animated gradient underline
   ========================================================================== */

.section-title__title::after {
    transition: width 1s var(--aab-ease-premium);
    width: 0;
    background: var(--aab-gold-gradient);
    height: 3px;
}

.section-title__title.animated::after {
    width: 80px;
}

/* Tagline - Enhanced with gold tint */
.section-title__tagline {
    background: var(--aab-navy-gradient) !important;
    box-shadow: 0 5px 25px rgba(12, 27, 77, 0.4);
}

/* ==========================================================================
   Modern Button - Spring micro-interaction
   ========================================================================== */

.thm-btn {
    transition: all 0.4s var(--aab-ease-premium);
}

.thm-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Magnetic button resets */
.aab-magnetic {
    transition: transform 0.2s ease !important;
}

/* ==========================================================================
   Scroll Progress Bar - Gradient glow
   ========================================================================== */

.aab-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--aab-gold-gradient);
    z-index: 99999;
    transition: width 0.08s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.4),
                0 0 20px rgba(201, 169, 110, 0.2);
}

/* ==========================================================================
   Premium Custom Cursor (Desktop only)
   ========================================================================== */

@media (min-width: 992px) {
    /* Hide default cursor on body */
    body.custom-cursor {
        cursor: none;
    }

    body.custom-cursor a,
    body.custom-cursor button,
    body.custom-cursor input,
    body.custom-cursor textarea,
    body.custom-cursor select {
        cursor: none;
    }

    .aab-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--aab-secondary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        mix-blend-mode: difference;
        will-change: transform;
    }

    .aab-cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1.5px solid rgba(201, 169, 110, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transition: width 0.4s var(--aab-ease-premium),
                    height 0.4s var(--aab-ease-premium),
                    border-color 0.4s ease,
                    background 0.4s ease;
        transform: translate(-50%, -50%);
        will-change: left, top, width, height;
    }

    .aab-cursor-ring.hovering {
        width: 60px;
        height: 60px;
        border-color: var(--aab-secondary);
        background: rgba(201, 169, 110, 0.06);
    }
}

/* ==========================================================================
   Navbar - Premium backdrop blur + gold accent
   ========================================================================== */

.stricky-header.stricky-fixed {
    transition: all 0.5s var(--aab-ease-premium);
    box-shadow: 0 4px 30px rgba(12, 27, 77, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

/* ==========================================================================
   Footer - Enhanced with warm tones
   ========================================================================== */

.site-footer-two {
    background: linear-gradient(135deg, #0A0E1A 0%, #0C1B4D 40%, #162350 100%) !important;
}

.site-footer-two::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C200,100 400,20 600,60 C800,100 1000,20 1200,60 L1200,0 L0,0 Z" fill="%23FAF7F2"/></svg>') no-repeat !important;
    background-size: cover !important;
}

.footer-widget-two__title::after {
    background: var(--aab-gold-gradient) !important;
}

/* ==========================================================================
   Section backgrounds - Warmer tones
   ========================================================================== */

section[style*="background: #f8f9fa"],
section[style*="background:#f8f9fa"] {
    background: var(--aab-light) !important;
}

section[style*="background: linear-gradient(135deg, #f8f9fa"] {
    background: linear-gradient(135deg, var(--aab-light) 0%, var(--aab-cream) 100%) !important;
}

/* ==========================================================================
   Animated gradient text for special headings
   ========================================================================== */

.aab-gradient-text {
    background: linear-gradient(135deg, var(--aab-primary), var(--aab-secondary), var(--aab-primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ==========================================================================
   Enhanced Focus States
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--aab-secondary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================================================
   Floating particles decoration (CSS only)
   ========================================================================== */

.pricing-formulas,
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.pricing-formulas::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: floatBlob 8s ease-in-out infinite;
}

.pricing-formulas::after,
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 27, 77, 0.04) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
    animation: floatBlob 10s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ==========================================================================
   Gold accent line on section hover
   ========================================================================== */

section > .container > .section-title {
    position: relative;
}

section > .container > .section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--aab-secondary);
    opacity: 0.5;
    border-radius: 1px;
}

/* ==========================================================================
   Reduced Motion - Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    body::after {
        display: none;
    }

    .aab-reveal,
    .aab-reveal-left,
    .aab-reveal-right,
    .aab-reveal-scale {
        opacity: 1;
        transform: none;
    }
}
