/* ============================================
   DR LORTON — CHIRURGIEN ORTHOPÉDISTE DIJON
   Design system unifié — Style premium médical
   Palette : Navy / Bleu / Accent doré / Crème
   Typo : Playfair Display + DM Sans
   ============================================ */

/* --- Variables --- */
:root {
    --navy: #0d2137;
    --blue: #1a4b7c;
    --sky: #2a6aad;
    --sky-light: #3a7fc7;
    --accent: #e8a84c;
    --accent-light: rgba(232,168,76,0.15);
    --cream: #faf7f2;
    --light: #eef4fb;
    --text: #1a2533;
    --muted: #5a6e84;
    --white: #ffffff;
    --border: rgba(42,106,173,0.12);
    --shadow: 0 2px 15px rgba(13,33,55,0.06);
    --shadow-md: 0 8px 30px rgba(13,33,55,0.08);
    --shadow-lg: 0 16px 50px rgba(13,33,55,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --pad: 70px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--sky); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Animations --- */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
.fade-in { animation: fadeUp 0.6s ease both; }
.fade-in-delay { animation: fadeUp 0.6s 0.15s ease both; }

/* =====================
   TOP BAR
   ===================== */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 8px var(--pad);
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
.top-bar a { color: rgba(255,255,255,0.7); }
.top-bar a:hover { color: var(--accent); }
.top-bar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 5px; fill: currentColor; }

/* =====================
   HEADER / NAV
   ===================== */
.header {
    background: var(--white);
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 var(--border);
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo:hover { color: var(--navy); }
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem; font-weight: 700;
}
.logo-img {
    height: 44px;
    width: auto;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}
.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.3px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a, .nav-dropdown > span {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav a:hover, .nav-dropdown:hover > span { background: var(--light); color: var(--sky); }
.nav a.active { color: var(--sky); font-weight: 500; }
.nav-cta {
    background: var(--sky) !important;
    color: white !important;
    font-weight: 500 !important;
    padding: 9px 20px !important;
    border-radius: 10px !important;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(42,106,173,0.3); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown svg { width: 12px; height: 12px; fill: currentColor; transition: transform 0.2s; }
.nav-dropdown:hover svg { transform: rotate(180deg); }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 10px 6px;
    min-width: 240px;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: 8px;
}
.dropdown-menu a:hover { background: var(--light); color: var(--sky); }

/* Mobile toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: white;
    padding: 56px var(--pad) 48px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(58,127,193,0.2) 0%, transparent 70%);
}
.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .badge {
    display: inline-block;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
}

/* =====================
   SECTION GENERIC
   ===================== */
.section {
    padding: 64px var(--pad);
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-full { max-width: 100%; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: white; }

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 10px;
}
.section-navy .section-label { color: var(--accent); }

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-navy h2 { color: white; }
.section p.section-desc { color: var(--muted); max-width: 680px; margin-bottom: 12px; font-size: 0.95rem; }

/* =====================
   CARDS
   ===================== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sky), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.card:hover::after { transform: scaleX(1); }
.card-icon {
    width: 48px; height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; fill: var(--sky); }
.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sky);
    margin-top: 16px;
    background: var(--light);
    padding: 10px 18px;
    border-radius: 10px;
    transition: var(--transition);
}
.card-link:hover { background: var(--sky); color: white; }
.card-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(4px); fill: white; }

.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }

/* Photo cards (chirurgies) */
.photo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    position: relative;
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sky), var(--accent));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.photo-card:hover::after { transform: scaleX(1); }
.photo-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.photo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.photo-card:hover .photo-card-img img { transform: scale(1.05); }
.photo-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.photo-card-body .badge-zone {
    display: inline-block;
    background: var(--light);
    color: var(--sky);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}
.photo-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
}
.photo-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.photo-card-body .card-link { margin-top: 14px; }

/* =====================
   ACCORDION / TOGGLE
   ===================== */
.accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.accordion-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item.active { box-shadow: var(--shadow); }
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}
.accordion-header:hover { background: var(--light); }
.accordion-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}
.accordion-header .icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.accordion-item.active .accordion-header .icon { background: var(--sky); }
.accordion-header .icon svg { width: 14px; height: 14px; fill: var(--sky); transition: transform 0.3s; }
.accordion-item.active .accordion-header .icon svg { fill: white; transform: rotate(180deg); }
.accordion-body {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.active .accordion-body { max-height: 5000px; padding: 0 22px 22px; overflow: visible; }
.accordion-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* =====================
   CONTENT LAYOUT (2 cols)
   ===================== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px var(--pad);
}
.content-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 32px 0 14px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--muted); margin-bottom: 12px; font-size: 0.92rem; line-height: 1.7; }
.content-main ul { margin: 12px 0 16px 20px; }
.content-main ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}
.content-main ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--sky);
    border-radius: 50%;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
}
.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sidebar-widget p, .sidebar-widget li {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}
.sidebar-widget > a { display: block; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
.sidebar-widget > a:last-child { border-bottom: none; }
.sidebar-widget p a { display: inline; padding: 0; border-bottom: none; font-size: inherit; }

/* Info card highlight */
.info-highlight {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border: none;
    color: white;
}
.info-highlight h3 { color: var(--accent); border-bottom-color: rgba(255,255,255,0.15); }
.info-highlight p, .info-highlight li { color: rgba(255,255,255,0.75); }
.info-highlight a { color: var(--accent); border-bottom-color: rgba(255,255,255,0.1); }
.info-highlight a:hover { color: white; }

/* =====================
   SPEC BADGE (chirurgies)
   ===================== */
.spec-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 500;
}
.spec-badge svg { width: 18px; height: 18px; fill: var(--sky); flex-shrink: 0; }

/* =====================
   STATS ROW
   ===================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 48px var(--pad);
    max-width: var(--max-width);
    margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--muted); }

/* =====================
   CTA BAND
   ===================== */
.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 48px var(--pad);
    text-align: center;
    color: white;
}
.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: white;
}
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 0.95rem; }
.cta-band .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--navy);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.cta-band .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,168,76,0.35); background: #f0b45e; }

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 48px var(--pad) 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 16px;
}
.footer p { font-size: 0.82rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.55); font-size: 0.82rem; display: block; padding: 3px 0; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.75rem;
}

/* =====================
   GOOGLE MAP
   ===================== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 20px;
    position: relative;
}
.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    pointer-events: none;
}
.map-container:hover iframe {
    pointer-events: auto;
}

/* =====================
   TABLE
   ===================== */
.info-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 10px 0; font-size: 0.88rem; vertical-align: top; }
.info-table td:first-child { font-weight: 500; color: var(--navy); width: 140px; }
.info-table td:last-child { color: var(--muted); }

/* =====================
   BTN
   ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sky);
    color: white;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,106,173,0.25); color: white; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--sky);
    font-weight: 500;
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1.5px solid var(--sky);
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline:hover { background: var(--sky); color: white; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    :root { --pad: 24px; }
    .desktop-only { display: none; }
    .top-bar { height: 4px; padding: 0; overflow: hidden; }
    .top-bar a, .top-bar span { display: none; }
    .header { height: 60px; }
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    .nav.nav-open { display: flex; }
    .nav > a, .nav > .nav-dropdown {
        border-bottom: 1px solid var(--border);
    }
    .nav a, .nav-dropdown > span {
        padding: 16px 0;
        font-size: 1.05rem;
        border-bottom: none;
        border-radius: 0;
        text-align: left;
        display: block;
        width: 100%;
    }
    .nav-dropdown > span { border-bottom: none; }
    .nav .nav-cta {
        margin-top: 24px;
        text-align: center;
        display: flex;
        justify-content: center;
        border-bottom: none;
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: 0;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .menu-toggle { display: block; z-index: 1000; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .page-hero > div[style*="grid-template-columns"] > div:last-child { justify-content: center !important; }
    .page-hero > div[style*="grid-template-columns"] > div:last-child img { width: 100% !important; max-width: 400px !important; height: 220px !important; }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { order: 1; }
    .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .page-hero { padding: 36px var(--pad) 32px; }
    .stats-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
}

/* =====================
   INFO CARDS (accueil)
   ===================== */
.info-cards-wrapper {
    background: var(--white);
    padding: 48px var(--pad) 0;
    position: relative;
    z-index: 10;
}
.info-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.info-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sky), var(--accent));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13,33,55,0.14);
}
.info-card:hover::after {
    transform: scaleX(1);
}
.info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.info-card:hover .info-card-icon {
    background: linear-gradient(135deg, var(--sky), var(--blue));
}
.info-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--sky);
    transition: var(--transition);
}
.info-card:hover .info-card-icon svg {
    fill: white;
}
.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}
.info-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.info-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sky);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.info-card:hover .info-card-action {
    color: var(--accent);
}
.info-card-action svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition);
}
.info-card:hover .info-card-action svg {
    transform: translateX(3px);
}

@media (max-width: 860px) {
    .info-cards {
        grid-template-columns: 1fr;
        margin-top: -32px;
    }
    .info-cards-wrapper { padding: 0 28px; }
}
