/* ==========================================================================
   CHITRANSH CONSULTANCY - RUSSIA LANDING PAGE STYLESHEET
   Design Theme: Corporate Blue, Kremlin Red & Gold Accents
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-navy: #0A192F;
    --primary-blue: #1E3A8A;
    --accent-red: #DC2626;
    --accent-red-hover: #B91C1C;
    --accent-gold: #F59E0B;
    --accent-gold-hover: #D97706;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5B;
    
    --bg-dark: #070F1E;
    --bg-card: #0F2342;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F1F5F9;
    --border-color: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Box Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.3);
    --glow-red: 0 0 20px rgba(220, 38, 38, 0.4);
    --glow-gold: 0 0 20px rgba(245, 158, 11, 0.4);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #1E1B4B 0%, #DC2626 50%, #1E3A8A 100%);
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-reg {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Header & Navbar */
.main-header {
    background-color: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.cc-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: #FFF;
    letter-spacing: -1px;
}

.plane-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    padding: 3px;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #CBD5E1;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #B91C1C);
    color: #FFF;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #EF4444, var(--accent-red));
}

.btn-primary-lg {
    background: linear-gradient(135deg, var(--accent-red), #991B1B);
    color: #FFF;
    padding: 16px 30px;
    font-size: 1.15rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    border-radius: var(--radius-md);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.7);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), #1E1B4B);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #D97706);
    color: #000;
    font-weight: 800;
}

.btn-gold:hover {
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background-color: var(--whatsapp-green);
    color: #FFF;
    padding: 8px 16px;
    font-size: 0.88rem;
    border-radius: 20px;
}

.btn-whatsapp-header:hover {
    background-color: var(--whatsapp-green-hover);
}

.btn-outline-sm {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #CBD5E1;
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn-outline-sm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('images/russia_hero.png') center/cover no-repeat;
    padding: 80px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 15, 30, 0.95) 0%, rgba(10, 25, 47, 0.85) 50%, rgba(7, 15, 30, 0.95) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.star-rating {
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight-red {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.sub-heading {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #94A3B8;
    margin-top: 5px;
}

.hero-description {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 600px;
}

.salary-highlight {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 35, 66, 0.7);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.highlight-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--accent-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.highlight-item h4 {
    font-size: 0.95rem;
    color: #FFF;
}

.highlight-item p {
    font-size: 0.8rem;
    color: #94A3B8;
}

.flight-badge-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(30, 58, 138, 0.3));
    border: 2px dashed var(--accent-red);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

.flight-badge-circle {
    background: var(--accent-red);
    color: #FFF;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--glow-red);
    flex-shrink: 0;
}

.flight-badge-circle i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.flight-badge-info .tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFF;
}

.flight-badge-info .reg {
    font-size: 0.85rem;
    color: #CBD5E1;
}

/* Form Container */
.hero-form-container {
    position: relative;
}

.form-card {
    background: linear-gradient(180deg, #112240 0%, #0A192F 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 20px;
}

.badge-urgent {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.form-header h3 {
    font-size: 1.6rem;
    color: #FFF;
}

.form-header p {
    font-size: 0.88rem;
    color: #94A3B8;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #CBD5E1;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 4px;
}

.form-group input, .form-group select {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #FFF;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.form-group select option {
    background-color: #0A192F;
    color: #FFF;
}

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

.form-footer-note {
    font-size: 0.78rem;
    color: #94A3B8;
    text-align: center;
    margin-top: 5px;
}

/* Counter Strip */
.counter-strip {
    background: linear-gradient(90deg, #0F2342 0%, #1E3A8A 50%, #0F2342 100%);
    border-y: 1px solid var(--border-color);
    padding: 30px 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.counter-box .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.counter-box .label {
    font-size: 0.9rem;
    color: #CBD5E1;
}

/* Section Shared */
.section {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 50px;
}

.sub-tag {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sub-tag-gold {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #FFF;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    color: #94A3B8;
    max-width: 650px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Job Vacancies Section */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.25);
}

.featured-job {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.job-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: #FFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
}

.badge-high-pay {
    background: var(--accent-red);
    box-shadow: var(--glow-red);
}

.job-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.job-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-card:hover .job-img-box img {
    transform: scale(1.05);
}

.job-title-overlay {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(7, 15, 30, 0.95) 0%, transparent 100%);
}

.job-title-overlay h3 {
    font-size: 1.7rem;
    color: #FFF;
}

.job-title-overlay p {
    font-size: 0.88rem;
    color: var(--accent-gold);
}

.job-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.salary-box {
    background: rgba(7, 15, 30, 0.6);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px dashed rgba(245, 158, 11, 0.3);
    text-align: center;
}

.salary-label {
    font-size: 0.8rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.salary-amount small {
    font-size: 0.9rem;
    color: #CBD5E1;
}

.job-features {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-features li {
    font-size: 0.95rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-features i {
    color: var(--whatsapp-green);
}

/* Calculator Section */
.calc-section {
    background: rgba(10, 25, 47, 0.7);
}

.calc-card {
    background: linear-gradient(135deg, #0F2342 0%, #070F1E 100%);
    border: 1fr solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.calc-info h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.calc-info p {
    color: #94A3B8;
    margin-bottom: 25px;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-controls input[type="range"] {
    width: 100%;
    accent-color: var(--accent-gold);
    height: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.calc-result-box {
    background: rgba(7, 15, 30, 0.9);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--glow-gold);
}

.calc-result-box h3 {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 10px;
}

.calc-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.calc-breakdown {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-bottom: 20px;
}

.savings-note {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: #E2E8F0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.savings-note i {
    color: var(--whatsapp-green);
    font-size: 1.3rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glow-card {
    border: 1px solid var(--accent-red);
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.1) 0%, var(--bg-card) 100%);
}

.b-icon {
    width: 55px;
    height: 55px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.92rem;
    color: #94A3B8;
}

/* Quiz Section */
.quiz-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 750px;
    margin: 0 auto;
}

.quiz-header {
    margin-bottom: 30px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-step h4 {
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quiz-btn {
    background: rgba(7, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.quiz-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.quiz-result-content {
    padding: 20px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--whatsapp-green);
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: var(--radius-md);
    position: relative;
}

.highlight-step {
    border: 2px solid var(--accent-red);
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.15) 0%, var(--bg-card) 100%);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    color: #FFF;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 0.88rem;
    color: #94A3B8;
}

/* Contact Section */
.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.agency-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.agency-header .logo-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    color: #FFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.agency-header h2 {
    font-size: 1.8rem;
    color: #FFF;
}

.reg-tag {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.agency-desc {
    font-size: 0.95rem;
    color: #CBD5E1;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--accent-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95rem;
    color: #FFF;
    margin-bottom: 2px;
}

.info-item p, .info-item a {
    font-size: 0.9rem;
    color: #94A3B8;
}

.phone-links a {
    color: var(--accent-gold);
    font-weight: 600;
}

.contact-cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-call {
    background: var(--accent-red);
    color: #FFF;
}

.btn-call:hover {
    background: var(--accent-red-hover);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #FFF;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-green-hover);
}

.contact-map-card {
    background: rgba(7, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-map-card h3 {
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 8px;
}

.contact-map-card p {
    font-size: 0.88rem;
    color: #94A3B8;
    margin-bottom: 20px;
}

.office-badge-box {
    background: rgba(15, 35, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 20px;
}

.office-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.status-online {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--whatsapp-green);
    font-weight: 600;
}

.quick-call-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quick-call-box span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.direct-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    padding: 0 22px 20px 22px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #94A3B8;
}

/* Footer */
.main-footer {
    background-color: #040A14;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #94A3B8;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copyright p {
    font-size: 0.82rem;
    color: #64748B;
}

/* Floating Sticky Bar Mobile */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 10px 15px;
    z-index: 999;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 8px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
}

.sticky-call {
    background: var(--accent-red);
}

.sticky-apply {
    background: var(--accent-gold);
    color: #000;
}

.sticky-whatsapp {
    background: var(--whatsapp-green);
}

/* Modal Overlay & Dialog */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 950px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-sm {
    max-width: 500px;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: #FFF;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
}

.modal-actions-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-search {
    flex-grow: 1;
    background: rgba(7, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: #FFF;
    outline: none;
}

.modal-btn-group {
    display: flex;
    gap: 10px;
}

.btn-success-sm {
    background: var(--whatsapp-green);
    color: #FFF;
    font-size: 0.85rem;
    padding: 8px 14px;
}

.btn-danger-sm {
    background: var(--accent-red);
    color: #FFF;
    font-size: 0.85rem;
    padding: 8px 14px;
}

.table-wrapper {
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.leads-table th, .leads-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leads-table th {
    background: rgba(7, 15, 30, 0.9);
    color: var(--accent-gold);
}

.leads-table td {
    color: #CBD5E1;
}

.success-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-icon-large {
    font-size: 4rem;
    color: var(--whatsapp-green);
}

.next-step-box {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 20px;
    border-radius: var(--radius-md);
    width: 100%;
    margin-top: 10px;
}

.next-step-box h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.next-step-box p {
    font-size: 0.88rem;
    color: #CBD5E1;
    margin-bottom: 15px;
}

.btn-whatsapp-lg {
    background: var(--whatsapp-green);
    color: #FFF;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.btn-whatsapp-lg:hover {
    background: var(--whatsapp-green-hover);
}

.mt-3 {
    margin-top: 15px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .mobile-sticky-bar {
        display: grid;
    }

    body {
        padding-bottom: 60px;
    }
}
