/* =============================================
   SEUNMIDAS COMPLIANCE SERVICES - PREMIUM THEME 2025
   Professional, Clean, Modern Corporate Design
   ============================================= */

:root {
    --primary: #003087;
    --primary-dark: #00205b;
    --accent: #00a651;
    --gold: #d4af37;
    --teal: #17a2b8;
    --dark: #212529;
    --light: #ffffff;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.7; 
    color: #444; 
    background: var(--gray-light);
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section { 
    padding: 120px 0; 
}

.section-title { 
    text-align: center; 
    font-size: 3rem; 
    margin-bottom: 4rem; 
    position: relative; 
    color: var(--primary); 
}

.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 120px; 
    height: 5px; 
    background: linear-gradient(to right, var(--accent), var(--gold)); 
    border-radius: 3px; 
}

/* ========== NAVIGATION ========== */
.dual-nav-container {
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: var(--light); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    z-index: 1000; 
    transition: var(--transition);
}

.dual-nav-container.scrolled { 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px); 
}

.nav-left, .nav-right { 
    display: flex; 
    align-items: center; 
}

.nav-left { 
    flex: 1; 
}

.nav-right { 
    flex: 1; 
    justify-content: flex-end; 
}

.logo-container { 
    display: flex; 
    align-items: center; 
    gap: 18px; 
    text-decoration: none; 
}

.logo { 
    height: 70px; 
}

.logo-text { 
    font-size: 2.3rem; 
    font-weight: 800; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.logo-text span { 
    color: var(--accent); 
}

.nav-menu { 
    display: flex; 
    gap: 3rem; 
    list-style: none; 
    margin: 0;
    padding: 0;
}

.nav-menu a { 
    color: var(--dark); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 1.1rem; 
    padding: 0.8rem 1.5rem; 
    border-radius: var(--border-radius); 
    transition: var(--transition); 
    text-decoration: none;
}

.nav-menu a:hover, .nav-menu a.active { 
    color: var(--primary); 
    background: rgba(0,48,135,0.06); 
}

/* ========== HERO SECTION ========== */
.hero-section { 
    padding: 240px 5% 160px; 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    color: white; 
    text-align: center; 
    margin-top: 80px;
}

.hero-title { 
    font-size: 5rem; 
    font-weight: 900; 
    margin-bottom: 2rem;
}

.hero-subtitle { 
    font-size: 1.8rem; 
    margin: 2rem 0; 
    opacity: 0.95; 
}

.hero-cta { 
    background: var(--accent); 
    color: white; 
    padding: 1.5rem 4rem; 
    border-radius: 60px; 
    font-size: 1.3rem; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-block;
    box-shadow: 0 15px 40px rgba(0,166,81,0.4); 
    transition: var(--transition); 
    margin-top: 3rem;
}

.hero-cta:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 50px rgba(0,166,81,0.5); 
}

/* ========== SPECIALTIES ========== */
.specialties-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); 
    gap: 4rem; 
    margin-top: 5rem; 
}

.specialty-card { 
    background: white; 
    border-radius: var(--border-radius); 
    padding: 3.5rem; 
    box-shadow: var(--box-shadow); 
    transition: var(--transition); 
    border-top: 8px solid var(--accent); 
}

.specialty-card:hover { 
    transform: translateY(-20px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}

.specialty-card h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.specialty-card ul {
    list-style: none;
    padding: 0;
}

.specialty-card li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.specialty-card li:before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ========== TEAM ========== */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 4rem; 
}

.team-card { 
    text-align: center; 
    background: white; 
    border-radius: var(--border-radius); 
    padding: 3rem; 
    box-shadow: var(--box-shadow); 
    transition: var(--transition); 
}

.team-card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gray-light);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-name {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
.footer { 
    background: #111; 
    color: #ccc; 
    padding: 6rem 0 3rem; 
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 4rem; 
    margin-bottom: 4rem; 
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

/* ========== ADMIN ========== */
.admin-sidebar { 
    width: 280px; 
    background: var(--primary); 
    color: white; 
    min-height: 100vh; 
    padding: 2rem; 
}

.admin-sidebar a { 
    display: block; 
    color: #ddd; 
    padding: 1rem; 
    border-radius: 8px; 
    margin-bottom: 0.5rem; 
    transition: var(--transition); 
    text-decoration: none;
}

.admin-sidebar a:hover, .admin-sidebar a.active { 
    background: var(--primary-dark); 
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .dual-nav-container { 
        flex-direction: column; 
        gap: 1.5rem; 
        padding: 1rem 0;
    }
    .nav-menu { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 1rem;
    }
    .hero-title { 
        font-size: 3.5rem; 
    }
    .hero-section {
        padding: 180px 5% 100px;
    }
    .specialties-grid, .team-grid { 
        grid-template-columns: 1fr; 
    }
    .section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
}
