/* ═══════════════════════════════════════════════════════════════════
   TRIPLE C EXPRESS INC - Main Stylesheet
   Design: Horizon - Clean & Corporate
   Color Scheme: Aqua Fresh (matches provided styles.css)
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════ CSS VARIABLES ═══════════ */
:root {
    --primary-light: #E0F2F1;
    --primary-medium: #26A69A;
    --primary-dark: #00796B;
    --primary-accent: #004D40;
    --secondary-light: #B2DFDB;
    --white: #FFFFFF;
    --off-white: #F8FAFA;
    --text-dark: #2C2C2C;
    --text-medium: #4A4A4A;
    --text-light: #6B7280;
    --gradient-primary: linear-gradient(135deg, #26A69A 0%, #00796B 100%);
    --gradient-dark: linear-gradient(135deg, #00796B 0%, #004D40 100%);
    --gradient-light: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    --shadow-soft: 0 4px 20px rgba(0, 121, 107, 0.15);
    --shadow-medium: 0 8px 40px rgba(0, 121, 107, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --error-color: #D32F2F;
    --success-color: #2E7D32;
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.7; overflow-x: hidden; background: var(--white); }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ═══════════ UTILITY CLASSES ═══════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.bg-gradient { background: var(--gradient-light); }

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 50px; border: 2px solid transparent; cursor: pointer;
    transition: var(--transition); text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: 0 4px 15px rgba(38, 166, 154, 0.4); }
.btn-primary:hover { background: var(--gradient-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 121, 107, 0.5); }
.btn-secondary { background: var(--white); color: var(--primary-dark); border-color: var(--white); }
.btn-secondary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-outline { background: transparent; border-color: var(--primary-medium); color: var(--primary-dark); }
.btn-outline:hover { background: var(--primary-medium); color: var(--white); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary-dark); }
.btn-lg { padding: 18px 42px; font-size: 15px; }
.btn-sm { padding: 10px 24px; font-size: 13px; }

/* ═══════════ HEADER ═══════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}
.header-top { background: var(--gradient-dark); color: var(--white); padding: 10px 0; font-size: 14px; }
.header-top-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.header-contact { display: flex; gap: 30px; flex-wrap: wrap; }
.header-contact span { display: flex; align-items: center; gap: 8px; }
.header-contact a { color: var(--white); }
.header-contact a:hover { color: var(--secondary-light); }
.header-main { padding: 15px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 5px; }
.nav-links a { padding: 12px 20px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: var(--text-dark); border-radius: 8px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); background: var(--primary-light); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; z-index: 1001; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--primary-dark); border-radius: 2px; transition: var(--transition); }

/* ═══════════ PAGE HEADER ═══════════ */
.page-header { background: var(--gradient-dark); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('images/hero-bg.jpg') center/cover no-repeat; opacity: 0.15; }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(32px, 5vw, 56px); color: var(--white); margin-bottom: 15px; }
.page-header p { font-size: 18px; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-top: 25px; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.breadcrumb a { color: var(--secondary-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 10px; }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--primary-dark); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.section-tag::before { content: ''; width: 40px; height: 3px; background: var(--primary-medium); border-radius: 2px; }
.section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; color: var(--text-dark); }
.section-title span { color: var(--primary-dark); }
.section-subtitle { font-size: 17px; color: var(--text-medium); line-height: 1.8; }

/* ═══════════ HERO ═══════════ */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.85) 0%, rgba(0, 121, 107, 0.75) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding-top: 140px; padding-bottom: 60px; overflow: hidden;
}
.hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px; background: linear-gradient(to top, var(--white), transparent); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 25px; border: 1px solid rgba(255, 255, 255, 0.2); animation: fadeInUp 0.8s ease forwards; }
.hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; margin-bottom: 25px; line-height: 1.1; animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.hero-text > p { font-size: 18px; margin-bottom: 35px; opacity: 0.95; line-height: 1.8; animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0; }
.hero-stats { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 20px; padding: 40px; border: 1px solid rgba(255, 255, 255, 0.2); animation: fadeInRight 1s ease 0.5s forwards; opacity: 0; }
.hero-stats h3 { font-size: 22px; margin-bottom: 30px; color: var(--white); text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.stat-item { text-align: center; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 15px; transition: var(--transition); }
.stat-item:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-5px); }
.stat-number { font-size: 36px; font-weight: 900; color: var(--white); display: block; font-family: 'Montserrat', sans-serif; }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-top: 5px; }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

/* ═══════════ ABOUT ═══════════ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--border-radius-lg); box-shadow: var(--shadow-medium); width: 100%; height: auto; object-fit: cover; }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 4px solid var(--primary-medium); border-radius: var(--border-radius-lg); z-index: -1; }
.experience-badge { position: absolute; bottom: -30px; right: -30px; background: var(--gradient-primary); color: var(--white); padding: 30px; border-radius: var(--border-radius-lg); text-align: center; box-shadow: var(--shadow-medium); }
.experience-badge .number { font-size: 48px; font-weight: 900; display: block; font-family: 'Montserrat', sans-serif; }
.experience-badge span { font-size: 14px; font-weight: 600; text-transform: uppercase; }
.about-text p { font-size: 17px; color: var(--text-medium); margin-bottom: 25px; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-dark); }
.value-item .icon { width: 24px; height: 24px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-weight: bold; font-size: 12px; flex-shrink: 0; }

/* ═══════════ SERVICES ═══════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.service-image { height: 220px; overflow: hidden; position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(0, 77, 64, 0.8), transparent); }
.service-icon { position: absolute; bottom: 20px; left: 20px; width: 60px; height: 60px; background: var(--white); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 1; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
.service-content { padding: 30px; }
.service-content h3 { font-size: 24px; margin-bottom: 15px; color: var(--text-dark); }
.service-content p { color: var(--text-medium); margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-dark); }
.service-features li::before { content: '✓'; color: var(--primary-medium); font-weight: bold; }

/* ═══════════ FEATURES ═══════════ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.feature-card { padding: 30px; background: var(--primary-light); border-radius: 15px; transition: var(--transition); border: 2px solid transparent; }
.feature-card:hover { border-color: var(--primary-medium); transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-icon { width: 50px; height: 50px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-card h4 { font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-medium); }

/* ═══════════ CAREERS CTA ═══════════ */
.careers-cta { padding: 100px 0; background: var(--gradient-dark); position: relative; overflow: hidden; }
.careers-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('../images/driver-fleet.jpg') center/cover no-repeat; opacity: 0.15; }
.careers-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.careers-text { color: var(--white); }
.careers-text h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
.careers-text p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.careers-cards { display: grid; gap: 20px; }
.career-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 25px 30px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.2); display: flex; justify-content: space-between; align-items: center; transition: var(--transition); color: var(--white); }
.career-card:hover { background: rgba(255, 255, 255, 0.2); transform: translateX(10px); }
.career-info h4 { color: var(--white); font-size: 20px; margin-bottom: 5px; }
.career-info span { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

/* ═══════════ JOBS ═══════════ */
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.job-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); }
.job-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.job-image { height: 200px; overflow: hidden; }
.job-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.job-card:hover .job-image img { transform: scale(1.05); }
.job-content { padding: 30px; }
.job-content h3 { font-size: 22px; margin-bottom: 10px; color: var(--text-dark); }
.job-content .subtitle { font-size: 14px; color: var(--primary-dark); font-weight: 600; margin-bottom: 15px; }
.job-content p { font-size: 15px; color: var(--text-medium); margin-bottom: 20px; }

/* ═══════════ QUOTE CTA ═══════════ */
.quote-section-cta { padding: 100px 0; background: var(--primary-light); }
.quote-cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
.quote-cta-content h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
.quote-cta-content p { font-size: 18px; color: var(--text-medium); margin-bottom: 40px; }

/* ═══════════ CONTACT ═══════════ */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.contact-card { background: var(--white); padding: 40px 30px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition); }
.contact-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.contact-card-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
.contact-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-dark); }
.contact-card p { font-size: 16px; color: var(--text-medium); }
.contact-card a { color: var(--primary-dark); font-weight: 600; }
.contact-card a:hover { color: var(--primary-medium); }

/* ═══════════ FORMS ═══════════ */
.form-container { background: var(--white); border-radius: var(--border-radius-lg); padding: 50px; box-shadow: var(--shadow-medium); }
.form-title { font-size: 28px; color: var(--text-dark); margin-bottom: 10px; }
.form-subtitle { font-size: 16px; color: var(--text-medium); margin-bottom: 35px; padding-bottom: 25px; border-bottom: 2px solid var(--primary-light); }
.form-section { margin-bottom: 35px; }
.form-section-title { font-size: 18px; color: var(--primary-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary-medium); border-radius: 2px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: var(--text-dark); }
label .required { color: var(--error-color); margin-left: 3px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
    width: 100%; padding: 14px 18px; border: 2px solid var(--secondary-light); border-radius: 10px;
    font-size: 16px; font-family: 'Open Sans', sans-serif; background: var(--white);
    transition: var(--transition); color: var(--text-dark); -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary-medium); box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.15); }
input.error, select.error, textarea.error { border-color: var(--error-color); }
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300796B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.error-message { color: var(--error-color); font-size: 13px; margin-top: 5px; display: none; }
.error-message.show { display: block; }
.radio-group, .checkbox-group { display: flex; gap: 25px; flex-wrap: wrap; }
.radio-group label, .checkbox-group label { display: flex; align-items: center; font-weight: 500; cursor: pointer; }
.radio-group input, .checkbox-group input { width: auto; margin-right: 10px; transform: scale(1.2); }

/* ═══════════ CAPTCHA ═══════════ */
.captcha-section { background: var(--primary-light); border-radius: var(--border-radius); padding: 25px; margin-bottom: 30px; }
.captcha-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.captcha-challenge { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.captcha-question { background: var(--white); padding: 15px 25px; border-radius: 8px; font-size: 20px; font-weight: 700; color: var(--primary-dark); font-family: 'Montserrat', sans-serif; box-shadow: 0 2px 10px rgba(0, 121, 107, 0.1); }
.captcha-input { flex: 1; min-width: 80px; max-width: 120px; }
.captcha-input input { text-align: center; font-size: 18px; font-weight: 700; }
.captcha-refresh { background: var(--white); border: 2px solid var(--secondary-light); border-radius: 8px; padding: 12px 15px; cursor: pointer; font-size: 18px; transition: var(--transition); }
.captcha-refresh:hover { background: var(--primary-medium); border-color: var(--primary-medium); color: var(--white); }
.captcha-error { color: var(--error-color); font-size: 13px; margin-top: 10px; display: none; width: 100%; }
.captcha-error.show { display: block; }
.submit-btn { width: 100%; padding: 18px 40px; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 50px; border: none; background: var(--gradient-primary); color: var(--white); cursor: pointer; transition: var(--transition); box-shadow: 0 4px 20px rgba(38, 166, 154, 0.4); font-family: 'Montserrat', sans-serif; }
.submit-btn:hover { background: var(--gradient-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 121, 107, 0.5); }

/* ═══════════ SIDEBAR ═══════════ */
.sidebar { position: sticky; top: 140px; }
.sidebar-card { background: var(--white); border-radius: var(--border-radius-lg); padding: 35px; box-shadow: var(--shadow-soft); margin-bottom: 25px; }
.sidebar-card h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--primary-light); }
.sidebar-card p { font-size: 15px; color: var(--text-medium); margin-bottom: 15px; line-height: 1.8; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-item .icon { width: 45px; height: 45px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text h4 { font-size: 14px; color: var(--text-dark); margin-bottom: 3px; }
.contact-item-text p { font-size: 15px; color: var(--text-medium); margin: 0; }
.services-list li { padding: 12px 0; border-bottom: 1px solid var(--primary-light); display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-dark); }
.services-list li:last-child { border-bottom: none; }
.services-list li::before { content: '✓'; color: var(--primary-medium); font-weight: bold; }

/* ═══════════ SUCCESS OVERLAY ═══════════ */
.success-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 77, 64, 0.9); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.success-overlay.show { display: flex; }
.success-content { background: var(--white); border-radius: var(--border-radius-lg); padding: 60px; text-align: center; max-width: 500px; width: 100%; animation: scaleIn 0.4s ease; }
.success-icon { width: 80px; height: 80px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 25px; color: var(--primary-dark); }
.success-content h2 { font-size: 28px; color: var(--text-dark); margin-bottom: 15px; }
.success-content p { font-size: 16px; color: var(--text-medium); margin-bottom: 25px; }
.redirect-text { font-size: 14px; color: var(--text-medium); }
.redirect-text span { font-weight: 700; color: var(--primary-dark); }

/* ═══════════ MAP ═══════════ */
.map-container { height: 400px; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--white); color: var(--text-dark); padding: 80px 0 0; border-top: 4px solid var(--primary-medium); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-medium); font-size: 15px; line-height: 1.8; }
.footer h4 { font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 15px; color: var(--text-dark); }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-medium); border-radius: 2px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-medium); font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-dark); padding-left: 5px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 15px; color: var(--text-medium); }
.footer-contact a { color: var(--primary-dark); }
.footer-contact a:hover { color: var(--primary-medium); }
.footer-bottom { padding: 25px 0; margin-top: 20px; background: var(--text-dark); color: var(--white); display: flex; justify-content: center; align-items: center; }
.footer-bottom p { font-size: 14px; opacity: 0.9; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .hero-content, .about-content, .careers-content { grid-template-columns: 1fr; gap: 50px; }
    .hero-stats { max-width: 500px; margin: 0 auto; }
    .about-image { order: -1; max-width: 600px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-grid { grid-template-columns: 1fr; }
    .sidebar { position: relative; top: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 100px 30px 30px; z-index: 999; overflow-y: auto; }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 18px 20px; border-bottom: 1px solid var(--primary-light); font-size: 18px; }
    .nav .btn { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .hero h1 { font-size: 32px; }
    .services-grid, .values-list { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .experience-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
    .about-image::before { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 120px 0 50px; }
    .section { padding: 60px 0; }
    .section-lg { padding: 70px 0; }
    .form-container { padding: 30px 20px; }
    .sidebar { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .captcha-challenge { flex-direction: column; align-items: stretch; }
    .captcha-input { max-width: 100%; }
    .careers-cards { gap: 15px; }
    .career-card { flex-direction: column; text-align: center; gap: 15px; }
    .career-card:hover { transform: translateY(-5px); }
    .success-content { padding: 40px 25px; }
    .map-container { height: 300px; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 26px; }
    .btn { padding: 12px 24px; font-size: 13px; }
    .stat-number { font-size: 24px; }
    .logo img { height: 45px; }
    .service-content, .job-content { padding: 20px; }
    .sidebar-card { padding: 25px; }
    .hero-stats { padding: 25px; }
    .hero-stats h3 { font-size: 18px; }
}
@media (hover: none) and (pointer: coarse) {
    .btn:hover, .service-card:hover, .feature-card:hover, .job-card:hover, .contact-card:hover, .career-card:hover { transform: none; }
    .service-card:hover .service-image img, .job-card:hover .job-image img { transform: none; }
}

/* reCAPTCHA notice */
.recaptcha-notice { font-size: 13px; color: var(--text-medium); margin: 20px 0; line-height: 1.6; }
.recaptcha-notice a { color: var(--primary-dark); text-decoration: underline; }
.recaptcha-notice a:hover { color: var(--primary-medium); }
