/* =============================================
   Ma Maison de Naissance — Styles modernes
   ============================================= */

:root {
    --primary: #223645;
    --primary-dark: #1a2b37;
    --accent: #ff6b6b;
    --accent-hover: #ff5252;
    --accent-light: #fff0f0;
    --text: #647589;
    --text-dark: #223645;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #223645 0%, #2d4a5e 50%, #3a6073 100%);
    --shadow-sm: 0 2px 12px rgba(34, 54, 69, 0.08);
    --shadow-md: 0 8px 30px rgba(34, 54, 69, 0.12);
    --shadow-lg: 0 16px 48px rgba(34, 54, 69, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn.ss-btn {
    background: var(--accent);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
    width: fit-content !important;
    max-width: 100%;
    min-width: 0;
    float: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    line-height: 1.3;
}

.btn.ss-btn i {
    position: static !important;
    width: auto !important;
    height: auto !important;
    line-height: 1;
    background: transparent !important;
    border-radius: 0;
    flex-shrink: 0;
    font-size: 0.85em;
}

.btn.ss-btn.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn.ss-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.45);
    color: var(--white);
}

.header-area {
    box-shadow: var(--shadow-sm);
}

.header-area .logo {
    height: auto !important;
    margin-top: 0 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.header-area .logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.header-area .logo img {
    width: auto !important;
    height: auto !important;
    max-height: 52px;
    max-width: min(180px, 55vw);
    object-fit: contain !important;
    display: block;
}

@media (min-width: 992px) {
    .header-area .logo img {
        max-height: 60px;
        max-width: 200px;
    }
}

.header-top {
    background: #f8f9fe;
    padding: 8px 0;
    border-bottom: 1px solid #eef1f4;
}

.header-cta ul li {
    color: var(--text);
    font-size: 13px;
}

.header-cta ul li i {
    color: var(--accent);
    margin-right: 6px;
}

.header-social a {
    color: var(--text);
    margin-left: 12px;
    transition: var(--transition);
    font-size: 15px;
}

.header-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.menu-area::before {
    display: none;
}

#header-sticky.sticky-menu {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.main-menu nav ul li a {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-menu nav ul li a:hover::after,
.main-menu nav ul li.active a::after {
    width: 100%;
}

.main-menu nav ul li a:hover {
    color: var(--accent);
}

.slider-content h2 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    font-weight: 700;
}

.slider-content h2 span {
    color: var(--accent);
}

.slider-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.single-service {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(34, 54, 69, 0.06);
}

.single-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 107, 0.2);
}

.single-service i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.single-service h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

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

.service-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.why-us-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--accent);
}

.why-us-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.why-us-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-us-card .icon-wrap i {
    font-size: 24px;
    color: var(--accent);
}

.call-area {
    background: var(--accent-light) !important;
    border-radius: var(--radius);
    margin: 40px auto;
    max-width: calc(100% - 30px);
}

.call-area .section-title h2 {
    font-size: clamp(22px, 3vw, 32px);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-light);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

#scrollUp {
    background: var(--accent) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    box-shadow: var(--shadow-md);
}

.breadcrumb-area {
    min-height: 280px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 254, 0.88));
}

.breadcrumb-wrap {
    position: relative;
    z-index: 1;
}

.breadcrumb-title h2 {
    color: var(--text-dark);
    font-size: clamp(28px, 4vw, 42px);
}

.location-banner {
    background: #f8f9fe;
    color: var(--text-dark);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #eef1f4;
}

.location-banner h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.location-banner p {
    color: var(--text);
    font-size: 17px;
    margin: 0;
}

.location-banner i {
    color: var(--accent);
    margin-right: 8px;
}

.slider-btn .ml-15 {
    margin-left: 15px;
}

.slider-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.slider-btn .btn.ss-btn {
    width: fit-content !important;
    flex: 0 1 auto;
}

.btn.ss-btn.btn-outline {
    background: transparent !important;
    border: 2px solid var(--accent) !important;
    color: var(--accent) !important;
    box-shadow: none !important;
}

.btn.ss-btn.btn-outline:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
}

@media (max-width: 767px) {
    .slider-btn .ml-15 {
        margin-left: 0;
        margin-top: 12px;
        display: inline-block;
    }

    .slider-btn .btn.ss-btn {
        width: 100% !important;
        justify-content: center;
    }

    .btn.ss-btn {
        white-space: normal;
        line-height: 1.4;
        padding: 14px 24px;
    }
}
