/* =============================================================================
 * OMNITECH — SHARED SITE CHROME
 * Extracted verbatim from careers.html so the careers pages keep exactly the
 * same header, footer, buttons and breakpoints as the rest of omnitech.pro.
 * Edit here, not in the pages.
 * ============================================================================= */

/* ========== ALL YOUR ORIGINAL CSS – PRESERVED 100% ========== */
:root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d153a;
    --secondary: #ff5722;
    --secondary-light: #ff8a65;
    --secondary-dark: #d84315;
    --accent: #ffd600;
    --accent-light: #ffec3d;
    --accent-dark: #ffab00;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #546e7a;
    --gray-light: #b0bec5;
    --gray-bg: #f5f7fa;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.2);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--dark);
    background-color: white;
}

.language-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.language-toggle i {
    font-size: 16px;
}

.language-toggle.spanish-active {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: white;
}

.language-toggle.english-active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background-color: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 87, 34, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--light);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    color: var(--primary);
    position: relative;
}

.contact-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 87, 34, 0.2);
    z-index: -1;
}

.contact-hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Content */
.contact-content {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-header p {
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label i {
    color: var(--secondary);
}

.form-control {
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(245, 247, 250, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-control::placeholder {
    color: var(--gray-light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

/* Contact Info */
.contact-info-container {
    background-color: var(--primary);
    color: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.contact-info-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-info {
    position: relative;
    z-index: 1;
}

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

.info-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--light);
}

.info-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light);
}

.method-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.method-link {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 30px;
}

.hours-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: var(--light);
}

.time {
    color: var(--accent);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--gray-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-heavy);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--light);
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--primary);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(26, 35, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
}

.faq-item.active .faq-question {
    background-color: rgba(26, 35, 126, 0.05);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--secondary);
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .btn {
    font-size: 18px;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.8;
}

.cta-note i {
    color: var(--accent);
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
    }
    
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 30px 25px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
    
    .language-toggle span {
        display: none;
    }
    
    .language-toggle {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 25px 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-section .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}
    
/* ================= CAREERS PAGE ================= */
