

/* ===============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =============================================== */
:root {
    ::selection {
        background: #e0f7fa;
        color: #222;
    }
    ::-moz-selection {
        background: #e0f7fa;
        color: #222;
    }
    --primary-color: #243a5e;
    --primary-dark: #162338;
    --primary-light: #35578d;
    --secondary-color: #fc9c4e;
    --secondary-dark: #c4834f;
    --secondary-light: #fabd8b;
    --accent-color: #4ECDC4;
    --success-color: #51CF66;
    --text-dark: #0a0c0c;
    --text-light: #5b5c5c;
    --text-lighter: #949494;
    --text-muted: #000000;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #2D3436;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.orange-gradient-btn {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 12px rgba(249,115,22,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.orange-gradient-btn:hover {
    background: linear-gradient(90deg, var(--primary-color)  0%, var(--secondary-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}
/**
 * Ben Nutritionniste - Main Styles
 * Modern, responsive design for sports nutrition website
 */

/* ===============================================
   RESET & BASE STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p {
    margin-bottom: 1rem;
    color: var(--text-light);
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ===============================================
   UTILITY CLASSES
   =============================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 5rem 0;
}
.text-center {
    text-align: center;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-medium);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===============================================
   NAVIGATION MODERNE
   =============================================== */
.navigation-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.12);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80px;
}
.nav-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.brand-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}
.brand-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    opacity: 0.4;
    animation: iconPulse 2s ease-out infinite;
}
@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
.brand-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-menu-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}
.nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.12);
    font-weight: 600;
}
.nav-text {
    position: relative;
    z-index: 2;
}
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    width: 80%;
}
.nav-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.nav-cta {
    display: flex;
    align-items: center;
}
.consultation-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-light));
   color: white;
}
.btn-text {
    position: relative;
    z-index: 2;
}
.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}
.consultation-btn:hover .btn-shine {
    left: 100%;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition);
}
.hamburger-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}
.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.menu-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}
.mobile-menu-toggle.active .line-1 {
    transform: rotate(45deg) translateY(6px);
}
.mobile-menu-toggle.active .line-2 {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.active .line-3 {
    transform: rotate(-45deg) translateY(-6px);
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.1s ease-out;
}
.navbar.hidden {
    transform: translateY(-100%);
}
.navbar.visible {
    transform: translateY(0);
}
body.menu-open {
    overflow: hidden;
}
html {
    scroll-behavior: smooth;
}
.nav-link:focus,
.consultation-btn:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.nav-menu.active {
    animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar,
.nav-link,
.consultation-btn,
.mobile-menu-toggle {
    will-change: transform;
}
@media (hover: hover) {
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 12px;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    .nav-link:hover::before {
        opacity: 1;
        transform: scale(1);
    }
}
.nav-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: notificationPulse 2s ease-in-out infinite;
}
@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ===============================================
   HERO SECTION - Layout moderne
   =============================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}
.hero-main {
    padding-top: 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.title-line-1 {
    display: block;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.4s both;
}
.title-line-2 {
    display: block;
    color: var(--secondary-color);
    animation: slideInUp 0.8s ease-out 0.6s both;
    filter: brightness(1.15) contrast(1.2);
}
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 1s both;
}
.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.hero-profile {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 3rem;
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition);
    animation: slideInUp 0.8s ease-out calc(1.2s + var(--delay, 0s)) both;
}
.stat-card:nth-child(1) { --delay: 0s; }
.stat-card:nth-child(2) { --delay: 0.1s; }
.stat-card:nth-child(3) { --delay: 0.2s; }
.stat-card:nth-child(4) { --delay: 0.3s; }
.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}
@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes particle-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}
@keyframes button-loading {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
@keyframes success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}
.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    font-family: var(--font-heading);
}
.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===============================================
   PROFILE SECTION - Layout moderne
   =============================================== */

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.8s ease-out 0.6s both;
    width: 100%;
    max-width: 320px;
}
.profile-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
}
.profile-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--success-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    font-size: 0.8rem;
}
.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.profile-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.profile-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}



/* ===============================================
   CONTACT PREMIUM SECTION - Layout moderne
   =============================================== */

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}
.contact-premium-card {
    background: rgba(255,255,255,0.18);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.25);
    min-width: 0;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    transition: box-shadow 0.2s;
    color: var(--text-dark);
}
.contact-premium-card:hover {
    box-shadow: 0 12px 40px rgba(37,99,235,0.18), 0 2px 8px rgba(0,0,0,0.10);
}
.reservation-card {
    background: linear-gradient(120deg, rgba(37,99,235,0.10) 0%, rgba(249,115,22,0.10) 100%), rgba(255,255,255,0.18);
    border: 1.5px solid rgba(37,99,235,0.18);
}
.contact-premium-card .cta-btn {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 1.1rem 2rem;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-premium-card .cta-btn:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-light) 100%);
    box-shadow: 0 4px 24px rgba(37,99,235,0.18);
}
.contact-premium-card .cta-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.contact-premium-card .cta-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: #fff;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
    position: relative;
}
.contact-premium-card .cta-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}
.contact-premium-card .cta-text p {
    color: rgba(13,23,33,0.95);
    font-size: 1.05rem;
    margin-bottom: 0;
}
.contact-premium-card .cta-description {
    color: rgba(13,23,33,0.9);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.contact-premium-card .cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.contact-premium-card .feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(13,23,33,0.9);
    font-weight: 500;
    font-size: 1rem;
}
.contact-premium-card .feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.contact-premium-card .privacy-notice {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 900px) {
    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-premium-card {
        padding: 2rem 1.2rem;
    }
    .contact-header .section-badge {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 1rem;
    }
}
.cta-text-content > p {
    color: #f3f6fa;
    opacity: 0.92;
}
/* ===============================================
   ABOUT SECTION - Design moderne
   =============================================== */
.about {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    animation: patternFloat 30s ease-in-out infinite;
}
@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
.about .container {
    position: relative;
    z-index: 2;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}
.highlight-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.about-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    margin: 5rem 0;
    align-items: start;
}
.about-story {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.story-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.story-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.story-timeline {
    position: relative;
}
.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}
.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-marker {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.timeline-marker i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}
.about-expertise {
    display: flex;
    justify-content: center;
}
.image-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    max-width: 350px;
}
.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}
.image-container:hover .image-overlay {
    transform: translateY(0);
}
.image-container:hover img {
    transform: scale(1.05);
}
.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.overlay-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}
.about-skills {
    margin: 5rem 0;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.skill-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.skill-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.skill-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.skill-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-out;
}
.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}
.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}
.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-actions .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}
.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}


/* ===============================================
   SERVICES SECTION - Design premium
   =============================================== */
.services {
    background: white;
    position: relative;
    padding: 6rem 0;
}
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
}
.services .container {
    position: relative;
    z-index: 2;
}
 .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
} 

.service-card { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    max-width: 370px; 
    margin-left: auto; 
    margin-right: auto; 
}
.service-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}
.service-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn-service {
    margin-top: auto;
    align-self: stretch;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* One column on mobile */
  }
}

.premium-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}
.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #40c057);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.service-icon.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
.service-icon.success {
    background: linear-gradient(135deg, var(--success-color), #40c057);
}
.service-icon.accent {
    background: linear-gradient(135deg, var(--accent-color), #38b2ac);
}
.service-icon.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #fa5252);
}
.service-meta h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.service-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}
.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.service-features {
    margin-bottom: 2.5rem;
}

.service-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.amount {
    font-size: 2.2rem;
}
.currency {
    font-size: 1.1rem;
}
.custom-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.price-range {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.price-from, .price-to {
    font-size: 1.6rem;
}
.price-separator {
    font-size: 1.2rem;
    margin: 0 0.3rem;
}
.price-details {
    color: var(--text-light);
    font-size: 0.9rem;
}
.duration {
    font-weight: 500;
}
.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 1rem;
    transition: var(--transition);
}
.services-info {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.info-card {
    text-align: center;
    padding: 2rem;
}
.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===============================================
   INSTAGRAM SECTION - @ben.nutritionniste
   =============================================== */
.instagram-section {
    background: linear-gradient(135deg, 
        #833ab4 0%, 
        #fd1d1d 50%, 
        #fcb045 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}
.instagram-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.animated-shapes::before,
.animated-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShapes 8s ease-in-out infinite;
}
.animated-shapes::before {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -5%;
    animation-delay: -3s;
}
.animated-shapes::after {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: -10%;
    animation-delay: -6s;
}
@keyframes floatShapes {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}
.instagram-section .container {
    position: relative;
    z-index: 2;
}
.instagram-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.profile-preview {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.profile-avatar {
    position: relative;
}
.avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    position: relative;
}
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}
.verified-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #1DA1F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 3px solid white;
}
.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.profile-handle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}
.profile-category {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    opacity: 0.8;
}
.profile-category i {
    color: #4ade80;
}
.instagram-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--bg-white), #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}
.instagram-bio {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.bio-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.bio-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.highlight-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.follow-btn {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}
.story-highlights {
    margin-bottom: 4rem;
}
.highlights-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}
.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.highlight-item:hover {
    transform: translateY(-5px);
}
.highlight-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}
.highlight-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: highlightSpin 3s linear infinite;
}
@keyframes highlightSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.highlight-circle.tips {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}
.highlight-circle.recipes {
    background: linear-gradient(45deg, #10b981, #059669);
}
.highlight-circle.science {
    background: linear-gradient(45deg, #3b82f6, var(--primary-color));
}
.highlight-circle.training {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}
.highlight-circle.qa {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}
.highlight-name {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.instagram-feed {
    margin-bottom: 5rem;
}
.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.feed-header h3 {
    font-size: 2rem;
    margin: 0;
}
.view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}
.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.instagram-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.instagram-post.featured {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}
.post-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}
.image-placeholder.nutrition {
    background: linear-gradient(45deg, #10b981, #059669);
}
.image-placeholder.recipe {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}
.image-placeholder.tips {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}
.image-placeholder.science {
    background: linear-gradient(45deg, #3b82f6, var(--primary-color));
}
.image-placeholder.training {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}
.image-placeholder.wellness {
    background: linear-gradient(45deg, #ec4899, #db2777);
}
.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.instagram-post:hover .post-overlay {
    opacity: 1;
}
.overlay-stats {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.overlay-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}
.post-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}
.post-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}
.post-popularity {
    font-size: 0.9rem;
    font-weight: 500;
}
.instagram-cta-final {
    position: relative;
}
.cta-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045, #833ab4);
    border-radius: 32px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.cta-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rotating-border {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #833ab4, #fd1d1d, #fcb045, #833ab4);
    animation: rotateBorder 4s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.cta-main-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}
.pulse-dots {
    position: absolute;
    width: 200px;
    height: 200px;
}
.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulseDots 2s ease-in-out infinite;
}
.dot-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}
.dot-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 0.7s;
}
.dot-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.4s;
}
@keyframes pulseDots {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}
.cta-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.cta-text-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
}
.feature-item {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    font-size: 1.1rem;
    text-align: left;

}
.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    justify-content: center;

}
.primary-cta-btn {
    position: relative;
    width:auto;
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.primary-cta-btn:hover {
    background: linear-gradient(45deg, var(--secondary-light), var(--secondary-color));
    
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: white;
}
.primary-cta-btn i {
    padding-right: 0.7em;
}
.secondary-cta-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}
.primary-cta-btn:hover .btn-shine {
    left: 100%;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    opacity: 0.8;
}
.cta-note i {
    color: #fbbf24;
    animation: bellShake 2s ease-in-out infinite;
}
@keyframes bellShake {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    5%, 15%, 25% {
        transform: rotate(15deg);
    }
    10%, 20% {
        transform: rotate(-15deg);
    }
}
.instagram-handle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}
.instagram-stat {
    text-align: center;
}
.instagram-stat .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: white;
}
.instagram-stat .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.instagram-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.instagram-post {
    aspect-ratio: 1;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.instagram-post:hover {
    transform: scale(1.05);
}
.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instagram-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}
.instagram-post:hover::after {
    opacity: 1;
}
/* ===============================================
   CONTACT SECTION - MODERN REDESIGN
   =============================================== */
.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticles 8s ease-in-out infinite;
}
.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}
.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}
@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.7;
    }
}
.contact-section .container {
    position: relative;
    z-index: 2;
}
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}
.contact-header .section-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 28px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
    border: none;
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
}
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-method {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}
.contact-method:hover::before {
    left: 100%;
}
.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}
.contact-method.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.contact-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}
.contact-phone {
    background: linear-gradient(135deg, var(--success-color), #40C057);
    color: white;
}
.contact-email {
    background: linear-gradient(135deg, var(--secondary-color), #EA580C);
    color: white;
}
.contact-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
}
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.method-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.method-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 210, 255, 0.1);
    flex-shrink: 0;
}
.contact-method.primary .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.method-icon.phone {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}
.method-icon.email {
    background: linear-gradient(45deg, #3b82f6, var(--primary-color));
    color: white;
}
.method-icon.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    animation: iconPulse 2s ease-out infinite;
}
.method-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.method-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--text-dark);
}
.method-info p {
    opacity: 0.8;
    line-height: 1.5;
}
.method-detail {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}
.method-content {
    margin-bottom: 1.5rem;
}
.method-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}
.primary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.primary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}
.contact-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.method-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.quick-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}
.quick-action:hover {
    background: rgba(0, 210, 255, 0.2);
    transform: translateY(-2px);
    color: var(--primary-color);
}
.contact-form-section {
    position: relative;
}
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}
.form-header p {
    opacity: 0.7;
    font-size: 1.1rem;
    color: var(--text-dark);

}
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    position: relative;
}
.input-container,
.select-container,
.textarea-container {
    position: relative;
}
.input-container input,
.select-container select,
.textarea-container textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    color: var(--text-dark);
}
.input-container input:focus,
.select-container select:focus,
.textarea-container textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}
.input-container label,
.select-container label,
.textarea-container label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 4px; /* Ajuste la valeur selon l’arrondi désiré */

    font-size: 1rem;
    color: rgba(13,23,33,0.65);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 0.5rem;
}
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label,
.select-container select:focus + label,
.select-container select:not([value=""]) + label,
.textarea-container textarea:focus + label,
.textarea-container textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.input-highlight,
.select-highlight,
.textarea-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-container input:focus ~ .input-highlight,
.select-container select:focus ~ .select-highlight,
.textarea-container textarea:focus ~ .textarea-highlight {
    width: 100%;
}
.select-container select {
    cursor: pointer;
}
.character-counter {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}
.character-counter .current {
    color: var(--primary-color);
    font-weight: 600;
}
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    min-width: 200px;
}
.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-light));

    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.4);
}
.submit-btn.loading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: button-loading 1.5s infinite;
    pointer-events: none;
}
.submit-btn.loading .btn-content {
    opacity: 0;
}
.submit-btn.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.submit-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: success-pulse 0.6s ease-out;
}
.submit-btn.success .btn-content {
    opacity: 0;
}
.submit-btn.success::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}
.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
}
.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.btn-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.submit-btn.loading .btn-content {
    opacity: 0;
}
.submit-btn.loading .btn-loader {
    opacity: 1;
}
.submit-btn.success .btn-content,
.submit-btn.success .btn-loader {
    opacity: 0;
}
.submit-btn.success .btn-success {
    opacity: 1;
}
.contact-footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.response-time,
.availability,
.languages {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.response-icon,
.availability-icon,
.languages-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}
.response-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}
.availability-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}
.languages-icon {
    background: linear-gradient(45deg, #3b82f6, var(--primary-color));
}
.response-text h4,
.availability-text h4,
.languages-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--text-dark);
}
.response-text p,
.availability-text p,
.languages-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.4;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===============================================
   FOOTER PREMIUM
   =============================================== */
/* Footer background to match hero section */

.modern-footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 0 0;
    overflow: hidden;
}
/* === Footer custom columns and copyright bar (2025 refonte) === */
.footer-copyright-bar {
    color: var(--text-lighter) !important;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    width:100%;
    text-align:center;
    padding:1.2rem 0 0.7rem 0;
    background:transparent;
    font-size:1.1rem; 
    font-weight:500; 
    letter-spacing:0.01em;
}
.footer-columns {
    color: var(--text-lighter);
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:2.5rem;
    padding:2.5rem 0 1.5rem 0;
    max-width:1200px;
    margin:0 auto;
}

.footer-col {
    min-width: 180px;
}
.footer-col-title {
    color: var(--secondary-color);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col-list li {
    margin-bottom: 0.7rem;
}
.footer-col-list a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.2s;
}
.footer-col-list a:hover {
    color: var(--primary-color, #073caf);
}

.logo-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    font-size: 1.5rem;
    color: white;
}
.logo-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.3;
    animation: pulse-border 2s infinite;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: white;
    line-height: 1;
}
.logo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.footer-mission {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.footer-mission strong {
    color: var(--primary-color);
    font-weight: 600;
}
.footer-social-premium {
    margin-top: 2rem;
}
.footer-social-premium h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.social-premium-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.social-premium-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}
.social-premium-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-color);
}
.social-premium-link.instagram:hover {
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}
.social-premium-link.facebook:hover {
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}
.social-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}
.instagram .social-icon-bg {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}
.facebook .social-icon-bg {
    background: #1877f2;
}
.social-info {
    display: flex;
    flex-direction: column;
}
.social-platform {
    font-weight: 600;
    font-size: 0.9rem;
}
.social-handle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer-column-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}
.footer-column-title i {
    font-size: 1rem;
}
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-list li {
    margin-bottom: 0.8rem;
}
.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: block;
}
.footer-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}
.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.footer-nav-link:hover::before {
    width: 0.5rem;
}
.contact-premium-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-premium-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.contact-premium-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.phone .contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.email .contact-icon {
    background: linear-gradient(135deg, #3b82f6, var(--primary-dark));
}
.schedule .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.contact-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.2rem;
}
.contact-value:hover {
    color: var(--primary-color);
}
.contact-copy-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.contact-copy-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}
.footer-bottom-premium {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}
.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-copyright p {
    margin: 0;
    color: white;
    font-weight: 500;
}
.copyright-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 400 !important;
}
.footer-legal-links {
    display: flex;
    gap: 2rem;
}
.legal-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.legal-link:hover {
    color: var(--primary-color);
}
.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2.5rem; /* increased horizontal padding */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    color: white;
}
.badge-icon {
    font-size: 1.2rem;
}
.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.badge-text span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-text span:last-child {
    font-size: 0.75rem;
    opacity: 0.9;
}
.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}
.footer-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
    opacity: 0.1;
}
.footer-bottom-content.footer-bottom-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0;
}
.footer-bottom-content.footer-bottom-grid .footer-badge {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.footer-bottom-content.footer-bottom-grid .footer-legal-links {
    justify-self: center;
    display: flex;
    gap: 1rem;
}
.footer-bottom-content.footer-bottom-grid .footer-legal-links .legal-link {
    color: rgba(255,255,255,0.85);
}
.footer-bottom-content.footer-bottom-grid .footer-copyright {
    justify-self: end;
    text-align: right;
    color: rgba(255,255,255,0.95);
}
.footer-bottom-content.footer-bottom-grid .legal-link:focus {
    outline: 2px solid rgba(37,99,235,0.18);
    outline-offset: 2px;
    border-radius: 4px;
    padding: 0.12rem 0.25rem;
}
@media (max-width: 768px) {
    .footer-bottom-content.footer-bottom-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    .footer-bottom-content.footer-bottom-grid .footer-badge,
    .footer-bottom-content.footer-bottom-grid .footer-legal-links,
    .footer-bottom-content.footer-bottom-grid .footer-copyright {
        justify-self: center;
    }
    .footer-bottom-content.footer-bottom-grid .footer-legal-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .footer-bottom-content.footer-bottom-grid .footer-copyright {
        font-size: 0.95rem;
    }
}
@keyframes pulse-border {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .section {
        padding: 3rem 0;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-menu-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 2rem;
        height: 100%;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    .nav-link {
        padding: 1.2rem 1.5rem;
        border-radius: 16px;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        justify-content: space-between;
    }
    .nav-indicator {
        display: none;
    }
    .nav-cta {
        margin-top: auto;
        display: none;
    }
    .consultation-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .brand-text {
        display: none;
    }
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
    }
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .menu-toggle {
        display: flex;
    }
    .hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    .hero-main {
        order: 1;
        padding-top: 0;
    }
    .hero-profile {
        order: 2;
        padding-top: 0;
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    .hero-description {
        font-size: 1.1rem;
        max-width: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .profile-card {
        max-width: 280px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .about-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-story {
        padding: 2rem;
    }
    .timeline-item {
        gap: 1.5rem;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .skill-card {
        padding: 2rem;
    }
    .about-cta {
        padding: 3rem 2rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .form-group {
        flex-direction: column;
    }
    .instagram-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .instagram-feed {
        padding: 2rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .profile-card {
        padding: 1.5rem;
        max-width: 260px;
    }
    .profile-image {
        width: 100px;
        height: 100px;
    }
    .story-timeline::before {
        left: 15px;
    }
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .timeline-item {
        gap: 1rem;
    }
    .about-story {
        padding: 1.5rem;
    }
    .story-intro h3 {
        font-size: 1.5rem;
    }
    .story-lead {
        font-size: 1rem;
    }
    .cta-content h3 {
        font-size: 1.8rem;
    }
    .image-container {
        max-width: 280px;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .price-main .amount {
        font-size: 1.8rem;
    }
    .blog-newsletter {
        padding: 2rem 1.5rem;
    }
    .newsletter-info h3 {
        font-size: 1.5rem;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .instagram-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem;
    }
    .profile-preview {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .instagram-bio {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    .highlights-container {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .highlight-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .feed-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    .cta-text-content h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .secondary-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    .nav-container {
        padding: 0 1rem;
        height: 65px;
    }
    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .nav-menu-inner {
        padding: 1.5rem;
    }
    .nav-link {
        padding: 1rem;
        font-size: 1rem;
    }
    .consultation-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    .instagram-section {
        padding: 4rem 0;
    }
    .profile-preview {
        gap: 1rem;
    }
    .avatar-ring {
        width: 80px;
        height: 80px;
    }
    .avatar-placeholder {
        font-size: 1.8rem;
    }
    .profile-info h1 {
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .highlight-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    .cta-text-content h2 {
        font-size: 1.8rem;
    }
    .rotating-border {
        width: 80px;
        height: 80px;
    }
    .cta-main-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .form-container {
        padding: 2rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-brand-section {
        padding-right: 0;
    }
    .footer-navigation {
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
    .social-premium-grid {
        flex-direction: row;
        justify-content: center;
    }
    .social-premium-link {
        flex: 1;
        min-width: 0;
    }
    .social-info {
        display: none;
    }
    .method-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .method-actions {
        justify-content: center;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .price-main .amount {
        font-size: 1.8rem;
    }
}
/* ===============================================
   ANIMATIONS & EFFECTS
   =============================================== */
@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);
    }
}
.hero-image img {
    animation: float 3s ease-in-out infinite;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
.loading {
    opacity: 0.7;
    pointer-events: none;
}
.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.input-container input::placeholder,
.textarea-container textarea::placeholder {
    color: rgba(13,23,33,0.48);
}
.contact-section {
    position: relative;
}
.contact-section .contact-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.04));
    pointer-events: none;
    z-index: 0;
}
.contact-section .container {
    position: relative;
    z-index: 1;
}

/* ===============================================
   AI AGENT SECTION - Assistant IA Styles
   =============================================== */
.ai-agent-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    overflow: hidden;
    color: white;
}
.ai-agent-section .section-description {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}
.ai-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.gradient-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.2) 0%, transparent 50%);
}
.floating-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    animation: float 8s ease-in-out infinite;
}
.ai-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}
.ai-main-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
.ai-demo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}
.ai-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.ai-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.ai-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.ai-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}
.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.status-indicator {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}
.status-text {
    font-size: 0.9rem;
    font-weight: 600;
}
.ai-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.ai-header p {
    font-size: 1.1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
}
.ai-features {
    margin-bottom: 3rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.ai-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.ai-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: white;
}
.ai-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.ai-feature p {
    font-size: 0.95rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}
.ai-cta {
    text-align: center;
    margin-bottom: 2rem;
}
.cta-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.ai-cta-btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.ai-cta-btn.primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}
.ai-cta-btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ai-cta-btn.primary:hover .btn-glow {
    opacity: 1;
}
.ai-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 193, 7, 0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}
.disclaimer-icon {
    color: #FFC107;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}
.ai-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}
.ai-disclaimer a {
    color: #FFC107;
    text-decoration: underline;
}
.ai-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.testimonial-content {
    margin-bottom: 1.5rem;
}
.quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}
.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}
.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}
.author-role {
    opacity: 0.8;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .ai-agent-section {
        padding: 3rem 0;
    }
    .ai-demo-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .ai-cta-btn {
        width: 100%;
        justify-content: center;
    }
    .ai-testimonials {
        grid-template-columns: 1fr;
    }
    .ai-icon-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===============================================
   PODCAST SECTION - Podcast Styles
   =============================================== */
.podcast-section {
    background: var(--bg-light, #f5f7fa);
    padding: 4.5rem 0 3.5rem 0;
}
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin: 2.5rem 0 2.2rem 0;
}
.podcast-card {
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 4px 24px 0 rgba(37, 99, 235, 0.08), 0 1.5px 6px 0 rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}
.podcast-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.13), 0 2px 8px 0 rgba(0,0,0,0.07);
}
.podcast-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-top-left-radius: 1.1rem;
    border-top-right-radius: 1.1rem;
    background: #e5e7eb;
}
.podcast-info {
    padding: 1.1rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.podcast-info h4 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-color, #073caf);
    margin-bottom: 0.4rem;
}
.podcast-info span {
    font-size: 0.97rem;
    color: var(--accent-color, #4ECDC4);
    font-weight: 500;
}
.podcast-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.podcast-platforms {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.podcast-platforms span {
    color: var(--text-dark, #222);
    font-weight: 500;
    margin-right: 0.7rem;
}
.podcast-platforms a {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: var(--primary-color, #073caf);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}
.podcast-platforms a:hover {
    color: var(--secondary-color, #F97316);
}
@media (max-width: 700px) {
    .podcast-section {
        padding: 2.5rem 0 1.5rem 0;
    }
    .podcast-grid {
        gap: 1.2rem;
    }
    .podcast-card {
        min-height: 220px;
    }
    .podcast-info h4 {
        font-size: 1rem;
    }
}







