/* 
  MEDICO LIFE SCIENCE - Design System
  ====================================
  Easily modify colors by changing the CSS variables below
*/

:root {
    /* Primary Colors */
    --primary: #fdf485;                /* Lemon Yellow */
    --primary-foreground: #000000;     /* Black for contrast */
    
    /* Secondary/Background Colors */
    --secondary: #ffffff;              /* White */
    --secondary-foreground: #4e4e4e;   /* Text color */
    
    /* Accent - Red */
    --accent: #710000;                 /* Red */
    --accent-foreground: #ffffff;      /* White */
    
    /* Green - Natural elements */
    --green: #6cdd51;                  /* Green */
    --green-foreground: #ffffff;
    
    /* Background */
    --background: #ffffff;
    --foreground: #4e4e4e;
    
    /* Light backgrounds */
    --light-bg: #f7f7fb;
    --frozen: #e4eaf1;
    --light-lemon: #fffeef;
    --sky-blue: #f1f5f9;
    
    /* Border */
    --border: #e6e6e6;
    --border-lemon: #eeecd3;
    
    /* Additional colors */
    --text-muted: #b6b6b6;
    --grey: #a7a7a7;
    --dark-grey: #363b3e;
    --brown: #433c30;
    --pink: #dd78a0;
    --yellow: #fbd12a;
    --peach: #ff6565;
    
    /* Spacing */
    --radius: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Archivo', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

/* Utility Classes */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn i { width: 1.25rem; height: 1.25rem; }
.btn-icon { width: 1rem; height: 1rem; transition: transform var(--transition-normal); }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-hero {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(253, 244, 133, 0.3);
}
.btn-hero:hover {
    background-color: #fcef5e;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(253, 244, 133, 0.4);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--border);
}
.btn-hero-outline:hover {
    background-color: var(--light-bg);
    border-color: var(--accent);
}

.btn-contact {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.625rem 1.25rem;
}
.btn-contact:hover {
    background-color: #4a0000;
    transform: translateY(-1px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
    padding: 0.625rem 1.25rem;
}
.btn-ghost:hover { color: var(--accent); }

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.75rem 1.5rem;
}
.btn-accent:hover {
    background-color: #4a0000;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
}
.btn-outline:hover {
    background-color: var(--light-bg);
    border-color: var(--accent);
}

.btn-card {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    width: 100%;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--accent);
    padding: 1rem 2rem;
    font-size: 1rem;
}
.btn-secondary:hover {
    background-color: var(--light-bg);
}

.btn-full { width: 100%; }

/* ======================================
   KICKER / TAG
   ====================================== */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    background-color: rgba(92, 69, 191, 0.12);
    color: var(--accent);
}
.kicker-icon { width: 1rem; height: 1rem; }
.kicker-light {
    background-color: rgba(253, 244, 133, 0.2);
    color: var(--primary);
}
.kicker-testimonial {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary);
}

/* ======================================
   HEADER
   ====================================== */
.header {
    position: fixed;
    top: 1rem;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.75rem 0;
    transition: all var(--transition-slow);
    
    /* 90% width with 5% margins on each side */
    width: 90vw;
    left: 5vw;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(92, 69, 191, 0.08);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-link:hover .logo-icon { transform: scale(1.05); }

.logo-icon {
    width: 8rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}
.logo-icon span {
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
    display: none;
}
@media (min-width: 640px) { .logo-text { display: block; } }

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--foreground);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}
.nav-link:hover { color: var(--accent); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}
.active{
    color: var(--accent);
}
.nav-link:hover::after { width: 100%; }

.nav-icon { width: 1rem; height: 1rem; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header-actions .btn-contact { display: none; }
.header-actions .btn-ghost { display: none; }
@media (min-width: 640px) { .header-actions .btn-contact { display: flex; } }
@media (min-width: 1024px) { .header-actions .btn-ghost { display: flex; } }

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    transition: color var(--transition-normal);
}
.mobile-menu-btn:hover { color: var(--accent); }
.mobile-menu-btn i { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(92, 69, 191, 0.12);
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}
.mobile-menu.open { display: block; }

.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; }

.mobile-nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: var(--foreground);
    font-weight: 600;
    transition: all var(--transition-normal);
}
.mobile-nav-link:hover {
    background-color: var(--light-bg);
    color: var(--accent);
}

.mobile-divider {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border);
}
/* Hero Section */
        .hero-contact {
            min-height: 60vh;
            padding-top: 8rem;
            padding-bottom: 4rem;
            background: linear-gradient(135deg, var(--accent) 0%, #4a0000 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-contact-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-contact h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .hero-contact p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
        }

        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }




/* ======================================
   FOOTER
   ====================================== */
.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 3rem;
    border-radius: 2rem 2rem 0 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(78, 78, 78, 0.95);
    border-radius: 2rem 2rem 0 0;
}

.footer-content { position: relative; z-index: 10; }

.footer-grid {
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-info { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-logo { display: flex; align-items: center; gap: 0.5rem; }

.footer-logo-icon {
    width: 15rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon span { color: var(--accent-foreground); font-weight: 700; font-size: 1.25rem; }

.footer-logo-text { font-weight: 700; font-size: 1.25rem; color: var(--secondary); }

.footer-description { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

.social-links { display: flex; gap: 0.75rem; }

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition-normal);
}
.social-link:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}
.social-link i { width: 1.25rem; height: 1.25rem; }

.footer-nav {}

.footer-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-normal);
}
.footer-links a:hover { color: var(--primary); }
.footer-links a:hover::before { width: 1rem; }

.footer-contact {}

.contact-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-primary { color: var(--secondary); font-weight: 600; }
.contact-secondary { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
.copyright span {
    display: block;
    margin-top: 0.25rem;
}
@media (min-width: 640px) {
    .copyright span {
        display: inline;
        margin-top: 0;
        margin-left: 0.5rem;
    }
}
/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--accent-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 5px 20px rgba(113, 0, 0, 0.3);
    z-index: 1000;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #4a0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(113, 0, 0, 0.4);
}

.scroll-top i {
    width: 1.5rem;
    height: 1.5rem;
}
/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }

/* Reveal animation (used with IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CAREERS SECTION ========== */
.careers-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--light-bg), #ffffff);
    border-radius: 1rem;
    margin-top: 2rem;
}
.careers-content { max-width: 900px; margin: 0 auto; text-align: left; gap: 1.25rem; display: flex; flex-direction: column; }
.careers-content h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--dark-grey); }
.careers-content h3 { margin-top: 1.25rem; color: var(--accent); font-size: 1.125rem; }
.careers-content p { color: var(--foreground); line-height: 1.7; }

/* ===== Benefits / Why Join ===== */
.benefits-wrapper {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(253,244,133,0.04), rgba(255,255,255,0.6));
    border: 1px solid var(--border-lemon);
    overflow: hidden; /* prevent accidental overflow */
}

.benefits-header { text-align: center; margin-bottom: 1rem; }
.benefits-title { margin: 0; color: var(--dark-grey); font-size: 1.25rem; }
.benefits-lead { margin: .5rem 0 0; color: var(--text-muted); font-size: .95rem; }

.benefits-grid {
    display: flex;
    flex-direction: column; /* STACK vertically on mobile */
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    overflow-x: visible;
    padding-bottom: 0.5rem;
}
.benefits-grid::-webkit-scrollbar { height: 8px; }
.benefits-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.06); border-radius: 999px; }

/* Small → Medium: two columns per row */
@media (min-width: 640px) {
    .benefits-grid { flex-direction: row; flex-wrap: wrap; overflow-x: visible; }
    .benefit-card { flex: 0 0 calc((100% - 1rem) / 2); max-width: calc((100% - 1rem) / 2); min-width: 0; }
}

/* Desktop: 2x2 grid layout */
@media (min-width: 1024px) {}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: .75rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(92,69,191,0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), opacity 0.45s ease, transform 0.45s ease;
    /* Mobile: full width stacked */
    width: 100%;
    max-width: none;
    min-width: 0; /* allow shrinking */
}

/* Compact text/icon for very small screens */
@media (max-width: 420px) {
    .benefit-card { padding: 0.6rem; }
    .benefit-body h4 { font-size: 0.92rem; }
    .benefit-body p { font-size: 0.8rem; }
    .benefit-icon-wrap { width: 2rem; height: 2rem; }
}

/* Small → Medium: switch to two-column grid */
@media (min-width: 640px) {
    .benefits-grid { flex-wrap: wrap; overflow-x: visible; }
    .benefit-card { flex: 0 0 calc((100% - 1rem) / 2); max-width: calc((100% - 1rem) / 2); }
}

.benefit-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon { width: 1.35rem; height: 1.35rem; color: white; }

.benefit-body h4 { margin: 0 0 .25rem 0; font-size: 1rem; color: var(--dark-grey); }
.benefit-body p { margin: 0; font-size: .95rem; color: var(--text-muted); line-height: 1.4; }

.benefit-card:hover, .benefit-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(92,69,191,0.08);
    border-color: rgba(113,0,0,0.12);
}

/* Color accents per card */
.benefits-grid .benefit-card:nth-child(1) .benefit-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--light-lemon)); }
.benefits-grid .benefit-card:nth-child(2) .benefit-icon-wrap { background: linear-gradient(135deg, #cfe8ff, #eaf6ff); }
.benefits-grid .benefit-card:nth-child(3) .benefit-icon-wrap { background: linear-gradient(135deg, #ffdce6, #ffc9d6); }
.benefits-grid .benefit-card:nth-child(4) .benefit-icon-wrap { background: linear-gradient(135deg, var(--green), #6deb7a); }

/* Entrance animation using reveal / in-view classes */
.benefit-card.reveal { opacity: 0; transform: translateY(12px); }
.benefit-card.reveal.in-view { opacity: 1; transform: translateY(0); }
.benefit-card.reveal:nth-child(1).in-view { transition-delay: 0.04s; }
.benefit-card.reveal:nth-child(2).in-view { transition-delay: 0.10s; }
.benefit-card.reveal:nth-child(3).in-view { transition-delay: 0.16s; }
.benefit-card.reveal:nth-child(4).in-view { transition-delay: 0.22s; }

@media (max-width: 420px) { .benefit-icon-wrap { width: 2.25rem; height: 2.25rem; } }

.benefit-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--light-lemon));
    color: var(--primary-foreground);
    border-radius: .6rem;
    flex-shrink: 0;
}

.benefit-card h4 { margin: 0; font-size: 1rem; color: var(--dark-grey); }
.benefit-card p { margin: 0; color: var(--text-muted); font-size: .95rem; line-height: 1.4; }

.benefit-card:hover, .benefit-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(92,69,191,0.06);
    border-color: var(--accent);
}

.benefit-card:focus { outline: 3px solid rgba(113,0,0,0.12); outline-offset: 3px; }

@media (max-width: 420px) { .benefit-icon { width: 1.75rem; height: 1.75rem; } }

.job-list { display: grid; gap: 1rem; margin-top: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .job-list { grid-template-columns: repeat(2, 1fr); } }
.job-card { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding: 1rem; border-radius: .75rem; background: var(--secondary); border:1px solid var(--border); box-shadow: 0 6px 20px rgba(92,69,191,0.04); }
.job-card h4 { margin:0; font-size:1rem; color:var(--foreground); }
.job-location { font-size:0.875rem; color:var(--text-muted); }
.career-apply-note { margin-top: 1rem; font-size:0.95rem; color:var(--foreground); }
.apply-btn { padding: .5rem 1rem; border-radius: .75rem; }
.apply-btn:hover { transform: translateY(-2px); }

/* ========== WE ARE HIRING ========== */
.hiring-section { padding: 3rem 0; margin-top: 2rem; }
.hiring-header { max-width: 800px; margin: 0 auto 1.25rem; text-align: center; }
.hiring-header h2 { font-size: 1.75rem; color: var(--dark-grey); }
.hiring-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .hiring-grid { grid-template-columns: repeat(3, 1fr); } }
.hiring-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding: 1rem; border-radius: .75rem; background: var(--secondary); border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(92,69,191,0.04); }
.hiring-info h4 { margin: 0 0 .25rem 0; color: var(--foreground); }
.hiring-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.5; margin-bottom: .5rem; }
.job-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .5rem; }
.tag { background: var(--light-bg); color: var(--accent); padding: .25rem .5rem; border-radius: .5rem; font-weight: 700; font-size: .75rem; }
.hiring-actions { display: flex; align-items: center; justify-content: flex-end; }
@media (max-width: 640px) { .hiring-actions { justify-content: flex-start; } }

/* ========== APPLY FORM (contact-style) ========== */
.apply-section { padding: 3rem 0; margin-top: 2rem; }
.section-header { text-align: center; margin-bottom: 1.25rem; }
.section-title { font-size: 1.75rem; color: var(--dark-grey); }
.section-subtitle { color: rgba(78,78,78,0.8); }

.form-container { max-width: 820px; margin: 0 auto; background: var(--secondary); border-radius: 1rem; padding: 2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
.form-row { display: flex; gap: 1rem; margin-bottom: 1rem; flex-direction: column; }
@media (min-width: 768px) { .form-row { flex-direction: row; } }
.form-group { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-weight: 700; color: var(--foreground); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--secondary);
    font-size: .95rem;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.file-list { margin-top: .5rem; font-size: .9rem; color: var(--text-muted); }
.hint { color: var(--text-muted); font-size: .85rem; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--accent), #4a0000);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(113,0,0,0.25); }

.error { color: var(--accent); font-size: .85rem; height: 1rem; }
.recaptcha-note { margin-top: .75rem; font-size: .85rem; color: var(--text-muted); }

/* ======================================
   SCROLLBAR
   ====================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb {
    background: rgba(92, 69, 191, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(92, 69, 191, 0.5); }