/*
Theme Name: VIMS Healthcare Excellence
Theme URI: https://vimscollege.com
Author: Viraj Institute of Medical Science
Description: Premium education theme for VIMS - Bihar's leading paramedical institution.
Version: 2.1.0
License: GNU General Public License v2 or later
Text Domain: vims-theme
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #0a4d68;
    --primary-dark: #063448;
    --primary-light: #0f6a8b;
    --secondary: #05a8aa;
    --secondary-light: #17c3b2;
    --accent: #ff6b35;
    --accent-hover: #e85a25;
    --success: #10b981;
    --success-bg: #d1fae5;
    
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    --transition: 200ms ease;
    --rounded: 0.5rem;
    --rounded-lg: 0.75rem;
    --rounded-xl: 1rem;
    --rounded-2xl: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--gray-700); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 700; line-height: 1.25; color: var(--gray-900); margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 1400px; margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.site-logo img { height: 50px; width: auto; max-width: 200px; object-fit: contain; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo-link img { height: 50px; width: auto; max-width: 200px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .main-name { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; color: var(--primary); display: block; line-height: 1.2; white-space: nowrap; }
.logo-text .tagline { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }

.main-navigation ul { display: flex; list-style: none; gap: 0.25rem; margin: 0; }
.main-navigation a { display: block; padding: 0.5rem 1rem; font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 500; color: var(--gray-700); border-radius: var(--rounded); transition: all var(--transition); }
.main-navigation a:hover, .main-navigation .current-menu-item > a { color: var(--primary); background: var(--gray-50); }
.main-navigation .menu-item-has-children { position: relative; }
.main-navigation .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border-radius: var(--rounded-lg); box-shadow: var(--shadow-xl); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); flex-direction: column; margin: 0; }
.main-navigation .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation .sub-menu a { padding: 0.75rem 1rem; font-size: 0.875rem; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem; color: var(--primary); }

.menu-toggle { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; position: relative; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); position: absolute; left: 11px; transition: all var(--transition); }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    .main-navigation, .header-cta { display: none; }
    .main-navigation.active { display: flex; position: fixed; top: 82px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 1.5rem; flex-direction: column; overflow-y: auto; }
    .main-navigation.active ul { flex-direction: column; }
    .main-navigation.active .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 1rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 600;
    border-radius: var(--rounded-lg); border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); text-decoration: none; line-height: 1.4;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,107,53,0.4); }
.btn-secondary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--gray-900); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-teal { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-teal:hover { background: var(--secondary-light); border-color: var(--secondary-light); color: var(--white); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block, .w-full { width: 100%; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="20" cy="80" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') center/400px; }
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; font-size: 0.875rem; color: var(--white); margin-bottom: 1.5rem; }
.hero-badge-icon { width: 20px; height: 20px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--white); }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title .highlight { color: var(--secondary-light); }
.hero-description { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 500px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat { text-align: left; }
.hero-stat-number { font-family: var(--font-sans); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-number span { color: var(--secondary-light); font-size: 1.5rem; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.hero-image img { border-radius: var(--rounded-2xl); box-shadow: var(--shadow-xl); }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { display: none; }
}
@media (max-width: 640px) {
    .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
    .hero-stat { text-align: center; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-block; padding: 0.5rem 1rem; background: var(--primary); color: var(--white); font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 9999px; margin-bottom: 1rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

/* ============================================
   PROGRAM CARDS
   ============================================ */
.programs-section { background: var(--gray-50); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.program-card {
    background: var(--white); border-radius: var(--rounded-xl); padding: 1.5rem;
    border: 1px solid var(--gray-200); transition: all var(--transition);
    position: relative; overflow: hidden;
}
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.program-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.program-card:hover::before { transform: scaleX(1); }
.program-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--rounded-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; color: var(--white); }
.program-card-title { font-size: 1.125rem; margin-bottom: 0.75rem; }
.program-card-title a { color: var(--gray-900); }
.program-card-title a:hover { color: var(--primary); }
.program-card-description { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 1rem; line-height: 1.6; }
.program-card-meta { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); font-size: 0.8125rem; color: var(--gray-500); }
.program-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem; color: var(--secondary); margin-top: 1rem; }
.program-card-link:hover { color: var(--primary); }

/* ============================================
   FEATURES
   ============================================ */
.features-section { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card { text-align: center; padding: 2rem; background: var(--gray-50); border-radius: var(--rounded-xl); transition: all var(--transition); }
.feature-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon { width: 72px; height: 72px; margin: 0 auto 1.25rem; background: linear-gradient(135deg, var(--secondary-light), var(--secondary)); border-radius: var(--rounded-xl); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); }
.feature-title { font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-description { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; margin: 0; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card { text-align: center; padding: 1.5rem; }
.stat-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: rgba(255,255,255,0.1); border-radius: var(--rounded-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.stat-number { font-family: var(--font-sans); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-number span, .stat-number .suffix { color: var(--secondary-light); }
.stat-label, .stat-title { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* ============================================
   INFO CARDS
   ============================================ */
.info-card { background: var(--white); border-radius: var(--rounded-xl); padding: 1.5rem; border-left: 4px solid var(--secondary); box-shadow: var(--shadow); }
.info-card h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.125rem; }
.info-card ul { list-style: none; margin: 0; padding: 0; }
.info-card li { padding: 0.5rem 0; color: var(--gray-600); line-height: 1.5; }

/* ============================================
   TABLES
   ============================================ */
.table-wrapper { overflow-x: auto; border-radius: var(--rounded-xl); box-shadow: var(--shadow-md); margin: 2rem 0; }
.data-table, .vims-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.data-table thead, .vims-table thead { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.data-table th, .vims-table th { padding: 1rem 1.25rem; text-align: left; color: var(--white); font-family: var(--font-sans); font-weight: 600; white-space: nowrap; }
.data-table td, .vims-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tbody tr, .vims-table tbody tr { background: var(--white); transition: background var(--transition); }
.data-table tbody tr:hover, .vims-table tbody tr:hover { background: var(--gray-50); }
.data-table tbody tr:nth-child(even), .vims-table tbody tr:nth-child(even) { background: var(--gray-50); }
.data-table tbody tr:nth-child(even):hover, .vims-table tbody tr:nth-child(even):hover { background: var(--gray-100); }
.fee-highlight, .fee-amount { font-family: var(--font-sans); font-weight: 700; color: var(--primary); }

/* ============================================
   FORMS
   ============================================ */
.form-card, .admission-card { background: var(--white); border-radius: var(--rounded-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.form-card-header, .admission-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 1.5rem; color: var(--white); }
.form-card-header h3, .admission-card-header h3, .admission-card-title { color: var(--white); margin-bottom: 0.5rem; font-size: 1.25rem; }
.form-card-header p, .admission-card-header p, .admission-card-subtitle { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9375rem; }
.form-card-body, .admission-card-body { padding: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea, .admission-form input, .admission-form select, .admission-form textarea { width: 100%; padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 1rem; border: 2px solid var(--gray-200); border-radius: var(--rounded-lg); transition: all var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .admission-form input:focus, .admission-form select:focus, .admission-form textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(5,168,170,0.15); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); padding: 4rem 0; text-align: center; }
.cta-section h2, .cta-title { color: var(--white); margin-bottom: 1rem; }
.cta-section p, .cta-description { color: rgba(255,255,255,0.9); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cta-phone { margin-top: 1.5rem; color: rgba(255,255,255,0.9); }
.cta-phone a { color: var(--white); font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding-top: 4rem; }
.footer-main, .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 1024px) { .footer-main, .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-main, .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo-name { display: block; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-logo-tagline { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }
.footer-brand p, .footer-description { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--rounded); display: flex; align-items: center; justify-content: center; color: var(--white); transition: all var(--transition); }
.footer-social a:hover { background: var(--secondary); transform: translateY(-2px); }
.footer-column h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--secondary-light); padding-left: 0.5rem; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9375rem; }
.footer-contact-icon { color: var(--secondary); flex-shrink: 0; width: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 0.875rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--secondary-light); }
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 140px 0 3rem; text-align: center; }
.page-header h1, .page-title { color: var(--white); margin-bottom: 1rem; }
.page-header p, .page-subtitle { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.breadcrumbs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.875rem; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .separator { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: var(--secondary-light); }

/* ============================================
   CONTENT
   ============================================ */
.content-area { padding: 4rem 0; }
.content-wrapper, .content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
@media (max-width: 1024px) { .content-wrapper, .content-grid { grid-template-columns: 1fr; } }

.main-content { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--white); border-radius: var(--rounded-xl); padding: 1.5rem; box-shadow: var(--shadow); }
.widget-title { font-size: 1.125rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-100); position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--secondary); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-actions, .floating-buttons { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 900; }
.fab, .fab-whatsapp, .fab-phone, .fab-top { width: 56px; height: 56px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-lg); transition: all var(--transition); font-size: 1.5rem; text-decoration: none; color: var(--white); }
.fab:hover, .fab-whatsapp:hover, .fab-phone:hover, .fab-top:hover { transform: scale(1.1); color: var(--white); }
.fab-whatsapp { background: #25D366; }
.fab-phone { background: var(--accent); }
.fab-top { background: var(--primary); }

/* ============================================
   CAREER CARDS
   ============================================ */
.career-card { display: block; background: var(--white); border-radius: var(--rounded-xl); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: all var(--transition); text-decoration: none; }
.career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.career-card h3 { font-size: 1.125rem; color: var(--gray-900); margin-bottom: 0.5rem; }
.career-card p { color: var(--gray-600); font-size: 0.9375rem; margin: 0; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-gray, .bg-off-white { background: var(--gray-50); }
.bg-white { background: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.section-cta { text-align: center; margin-top: 2rem; }
.lead { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; }
@media (max-width: 1024px) { .hide-tablet { display: none; } }
@media (max-width: 640px) { .hide-mobile { display: none; } }
