/* ============================================
   Madi Global Études – Main Stylesheet
   Palette: Bleu nuit, Noir, Blanc, Or
   ============================================ */

:root {
    --navy:       #0B1F4E;
    --navy-deep:  #071535;
    --navy-mid:   #12306B;
    --gold:       #C8963E;
    --gold-light: #E8B75A;
    --white:      #FFFFFF;
    --off-white:  #F7F8FC;
    --gray-light: #EEF1F8;
    --gray:       #8892A4;
    --dark:       #111827;
    --text:       #1E293B;
    --success:    #16a34a;
    --error:      #dc2626;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 24px rgba(11,31,78,0.10);
    --shadow-lg:  0 12px 48px rgba(11,31,78,0.18);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: #4B5563; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(200,150,62,0.12), rgba(200,150,62,0.06));
    color: var(--gold);
    border: 1px solid rgba(200,150,62,0.3);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,150,62,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 16px;
    transition: all var(--transition);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    padding: 0;
}
.navbar.scrolled {
    background: var(--navy-deep);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: white; }
.logo-sub  { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta {
    background: var(--gold);
    color: white;
    padding: 9px 18px;
    border-radius: 8px;
    margin-left: 8px;
}
.nav-links .nav-cta:hover {
    background: var(--gold-light);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1a3a7a 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 40%, rgba(200,150,62,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(18,48,107,0.8) 0%, transparent 50%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        45deg,
        white 0px, white 1px,
        transparent 1px, transparent 40px
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,150,62,0.18);
    border: 1px solid rgba(200,150,62,0.4);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}
.hero-text h1 {
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeInUp 0.9s ease 0.65s both;
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.hero-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}
.step-list { display: flex; flex-direction: column; gap: 12px; }
.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}
.step-item:hover { background: rgba(255,255,255,0.1); }
.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
}
.step-text { font-size: 0.88rem; color: rgba(255,255,255,0.82); }

/* ============================================
   SERVICES BLOCKS (home)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,150,62,0.2);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(11,31,78,0.06), rgba(11,31,78,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.service-icon i { color: var(--navy); transition: color var(--transition); }
.service-card:hover .service-icon i { color: white; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; }
.service-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-bg {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-text { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 1rem;
}
.author-name { font-weight: 600; color: white; font-size: 0.9rem; }
.author-info { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============================================
   PARCOURS INTERACTIF
   ============================================ */
.parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.parcours-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.parcours-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200,150,62,0.15);
}
.parcours-card .emoji { font-size: 2.4rem; margin-bottom: 14px; }
.parcours-card h3 { font-size: 1rem; margin-bottom: 8px; }
.parcours-card p { font-size: 0.83rem; }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.team-avatar {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar .initials {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}
.team-info { padding: 24px 20px; }
.team-info h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.team-bio { font-size: 0.86rem; color: var(--gray); }

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
}
.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11,31,78,0.3);
}
.dest-flag { font-size: 3.5rem; margin-bottom: 16px; }
.dest-name { color: white; font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.dest-info { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.dest-card .dest-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}
.contact-info-block { position: sticky; top: 100px; }
.contact-info-block h2 { margin-bottom: 16px; }
.contact-info-block > p { margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}
.contact-item-text strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 3px; }
.contact-item-text span { font-size: 0.9rem; }
.contact-item-text a { color: var(--text); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--gold); }

/* Map */
#map {
    width: 100%;
    height: 280px;
    border-radius: var(--radius);
    margin-top: 24px;
    border: 1px solid var(--gray-light);
}

/* Forms */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--gray-light);
}
.form-title { font-size: 1.4rem; margin-bottom: 8px; }
.form-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--off-white);
    transition: all var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11,31,78,0.07);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* Stars rating */
.star-rating {
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 1.8rem;
    cursor: pointer;
    color: #D1D5DB;
    transition: color var(--transition);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--gold);
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success {
    background: #DCFCE7;
    color: #15803D;
    border: 1px solid #BBF7D0;
}
.alert-error {
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

/* ============================================
   SERVICES PAGE (detailed)
   ============================================ */
.services-detailed { padding: 80px 0; }
.service-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 56px 0;
    border-bottom: 1px solid var(--gray-light);
    align-items: start;
}
.service-section:last-child { border-bottom: none; }
.service-section-meta { text-align: center; }
.service-step-num {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.service-section-meta .service-big-icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-section-meta h3 { font-size: 1rem; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    transition: all var(--transition);
}
.service-feature:hover {
    background: var(--white);
    border-color: rgba(200,150,62,0.3);
    transform: translateX(4px);
}
.service-feature i { color: var(--gold); font-size: 0.9rem; width: 20px; }
.service-feature span { font-size: 0.92rem; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(200,150,62,0.15) 0%, transparent 70%);
}
.page-hero .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,150,62,0.15);
    border: 1px solid rgba(200,150,62,0.35);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 580px; margin: 0 auto; }
.page-hero-content { position: relative; z-index: 2; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #A07030 100%);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.7); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float i { font-size: 1.3rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); color: white; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding: 72px 0 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-brand > p strong { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    color: white;
}
.footer-links h4, .footer-contact h4 {
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--gold-light); }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.86rem;
}
.footer-contact ul li i {
    color: var(--gold);
    margin-top: 2px;
    width: 14px;
    min-width: 14px;
}
.footer-contact ul li a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact ul li a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    justify-content: center;
    margin-top: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info-block { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .service-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        top: 72px;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 40px 24px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; padding: 14px 24px; width: 100%; text-align: center; }
    .hamburger { display: flex; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .cta-banner { padding: 60px 0; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.mt-8 { margin-top: 32px; }
.hidden { display: none; }
