/* ============================================
   Pr Yassir EL ANDALOUSSI - Site Clone
   Reproduction statique du site original
   ============================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

/* PALETTE & VARIABLES */
:root {
    --primary: #007aff;
    --primary-dark: #0062cc;
    --accent: #ff3f25;
    --accent-soft: #fe8157;
    --accent-orange: #ff632e;
    --dark: #000000;
    --gray-text: #555;
    --gray-light: #f5f5f5;
    --gray-border: #cfcfcf;
    --white: #ffffff;
    --container-max: 1200px;
    --section-padding: 80px 20px;
    --transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-logo img {
    max-height: 70px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    font-weight: 500;
    font-size: 15px;
    color: #222;
    padding: 10px 0;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-list > li > a:hover {
    color: var(--primary);
}

/* Submenu */
.has-submenu {
    position: relative;
}

.has-submenu::after {
    content: " ▾";
    font-size: 11px;
    color: #888;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    padding: 12px 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1010;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    color: #333;
    border-left: 2px solid transparent;
}

.submenu li a:hover {
    background: #f9f9f9;
    border-left-color: var(--primary);
    color: var(--primary);
}

.contact-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}

.hero-tag::before {
    content: "⸻ ";
    margin-right: 8px;
    color: var(--primary);
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #0a0a23;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--gray-text);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-soft);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 129, 87, 0.35);
}

.btn-outline {
    background: var(--white);
    color: #000;
    border-color: #000;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    z-index: 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.section-tag::before {
    content: "⸻ ";
    margin-right: 6px;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    color: #0a0a23;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-intro {
    color: var(--gray-text);
    font-size: 17px;
    max-width: 720px;
    margin-bottom: 50px;
}

/* ============================================
   SPÉCIALITÉS / TABS
   ============================================ */
.specialties {
    background: #fafbfd;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 2px solid #e5e9f0;
    margin-bottom: 36px;
}

.tab-btn {
    background: transparent;
    border: 0;
    padding: 18px 26px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    font-weight: 600;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.tab-content img {
    float: left;
    margin: 0 28px 16px 0;
    border-radius: 8px;
    max-width: 300px;
}

.tab-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
}

/* ============================================
   BANNER FORMULAIRE
   ============================================ */
.contact-banner {
    background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
    text-align: center;
    padding: 60px 20px;
}

.contact-banner-image {
    max-width: 1200px;
    margin: 0 auto 40px;
    width: 100%;
}

.contact-banner h2 {
    font-size: 38px;
    color: #0a0a23;
    margin-bottom: 16px;
}

.contact-banner p {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Form */
.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.form-field input,
.form-field textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0e4ec;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #222;
    transition: var(--transition);
    background: #fbfbfd;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit {
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.form-submit:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.form-footer-note {
    margin-top: 18px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* ============================================
   INTERVENTIONS (Slider/Grid)
   ============================================ */
.interventions {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.intervention-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid #f0f2f7;
}

.intervention-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.intervention-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}

.intervention-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intervention-card:hover .intervention-thumb img {
    transform: scale(1.06);
}

.intervention-body {
    padding: 22px 24px 28px;
}

.intervention-date {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.intervention-card h4 {
    font-size: 17px;
    line-height: 1.4;
    color: #0a0a23;
    margin-bottom: 14px;
    font-weight: 600;
    min-height: 70px;
}

.intervention-card hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 14px 0;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more::after {
    content: "→";
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(6px);
}

/* ============================================
   PASSAGES TV
   ============================================ */
.tv-section {
    background: linear-gradient(135deg, #fafbfd 0%, #eef4ff 100%);
}

.tv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    background: #000;
}

.tv-iframe-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.tv-content h2 {
    font-size: 38px;
    color: #0a0a23;
    margin: 14px 0 24px;
}

.tv-content h5 {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    margin-bottom: 30px;
}

/* ============================================
   QUOTE SECTION (Bandeau noir)
   ============================================ */
.quote-section {
    background: #0a0a23;
    color: var(--white);
    padding: 90px 20px;
}

.quote-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-section .section-tag {
    color: #f5f5f5;
}

.quote-section h4 {
    font-size: 32px;
    line-height: 1.4;
    color: #f5f5f5;
    font-weight: 600;
}

.quote-icon {
    text-align: center;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.7;
}

/* ============================================
   GALERIE
   ============================================ */
.gallery-section {
    background: var(--white);
    padding: 70px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-item {
    border: 2px solid var(--gray-border);
    overflow: hidden;
    aspect-ratio: 1.4 / 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a23;
    color: #d8dde6;
    padding: 70px 20px 30px;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-block h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-block h6 {
    color: #aab1c0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-phone {
    color: var(--primary) !important;
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-block h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: #aab1c0;
    font-size: 14px;
    transition: var(--transition);
}

.footer-block ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact-info {
    color: #aab1c0;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 14px;
}

.footer-contact-info strong {
    color: #fff;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #8c93a3;
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgb(76, 217, 100);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(76, 217, 100, 0.4);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2.2s infinite;
}

.floating-call:hover {
    transform: scale(1.08);
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgb(79, 206, 93);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(79, 206, 93, 0.4);
    z-index: 999;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    color: #fff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(76, 217, 100, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 217, 100, 0); }
}

/* ============================================
   PAGE CONTENT (sub-pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0050b3 100%);
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header .breadcrumb {
    font-size: 14px;
    opacity: 0.85;
}

.page-header .breadcrumb a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Career page */
.career-list {
    max-width: 900px;
    margin: 0 auto;
}

.career-item {
    border-left: 3px solid var(--primary);
    padding: 8px 0 30px 24px;
    margin-bottom: 8px;
    position: relative;
}

.career-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 14px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
}

.career-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-item h4 {
    font-size: 18px;
    color: #0a0a23;
    margin-bottom: 6px;
    font-weight: 600;
}

.career-item p {
    color: var(--gray-text);
    font-size: 15px;
}

/* Publications */
.publications-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.publication-item {
    background: #fff;
    padding: 22px 26px;
    border-radius: 10px;
    border: 1px solid #eaeef5;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.publication-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.publication-authors {
    font-weight: 600;
    color: #444;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.publication-title {
    color: #0a0a23;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.publication-meta {
    font-size: 13px;
    color: var(--gray-text);
    font-style: italic;
}

.publication-meta strong {
    color: var(--primary);
    font-style: normal;
}

/* Interview content */
.interview-content {
    max-width: 880px;
    margin: 0 auto;
}

.interview-question {
    color: var(--primary);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.5;
    margin: 28px 0 14px;
    padding: 16px 22px;
    background: rgba(0, 122, 255, 0.06);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.interview-answer {
    color: #2a2a3a;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
    padding-left: 22px;
    text-align: justify;
}

.interview-answer ul {
    list-style: disc;
    padding-left: 24px;
    margin: 14px 0;
}

.interview-answer ul li {
    margin-bottom: 8px;
}

/* Articles list */
.articles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Contact specific */
.contact-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-size: 26px;
    color: #0a0a23;
    margin-bottom: 24px;
}

.contact-info-card .info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-info-card .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card .info-content strong {
    display: block;
    color: #0a0a23;
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-info-card .info-content p,
.contact-info-card .info-content a {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-tag,
    .hero-buttons {
        justify-content: center;
        display: flex;
    }

    .hero h1 {
        font-size: 42px;
    }

    .cards-grid,
    .articles-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-inner,
    .tv-grid,
    .footer-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-inner {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
        padding: 20px;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list > li {
        border-bottom: 1px solid #eef0f5;
    }

    .nav-list > li > a {
        display: block;
        padding: 14px 0;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 14px 14px;
    }

    .has-submenu:hover .submenu {
        transform: none;
    }

    .hero {
        padding: 60px 20px 50px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-title,
    .contact-banner h2,
    .tv-content h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 16px;
    }

    .cards-grid,
    .articles-list,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .tab-content {
        padding: 22px;
    }

    .tab-content img {
        float: none;
        margin: 0 0 18px 0;
        max-width: 100%;
    }

    .tabs-header {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 14px 18px;
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-section h4 {
        font-size: 22px;
    }

    .floating-call,
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 20px;
    }

    .floating-call { left: 18px; }
    .floating-whatsapp { right: 18px; }

    .page-header h1 {
        font-size: 30px;
    }

    .interview-question {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 14px;
    }

    .site-logo img {
        max-height: 50px;
    }

    .contact-btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}
