/* ===================================================
   NORTHCOM SECURITY - Corporate Website Stylesheet
   Color Palette: Red (#C41E24), White (#FFFFFF), 
   Dark (#1A1A1A), Gray accents (#F5F5F5, #E0E0E0)
   =================================================== */

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

:root {
    --red: #C41E24;
    --red-dark: #A01920;
    --red-light: #E8353B;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #F2F2F2;
    --gray: #E0E0E0;
    --mid-gray: #999999;
    --dark-gray: #555555;
    --dark: #1A1A1A;
    --text: #333333;
    --text-light: #666666;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 6px;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 16px auto;
    border-radius: 2px;
}

.divider-left {
    margin-left: 0;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: color var(--transition);
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--red);
}

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

.logo-text strong {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.logo-text small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    margin-left: 8px;
    padding: 8px 20px;
}

.nav-links .nav-cta:hover {
    background: var(--red-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 50%, var(--red-dark) 100%);
    overflow: hidden;
}

.hero-overlay {
    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="50" cy="50" r="40" fill="none" stroke="rgba(196,30,36,0.08)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(196,30,36,0.05)" stroke-width="0.5"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 120px 24px 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 50%, var(--red-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Preview (Home) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Stats / Why Us --- */
.why-us {
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Industries (Home) --- */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.industry-tag:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: var(--shadow-sm);
}

.industry-tag i {
    color: var(--red);
    font-size: 0.85rem;
}

/* --- Trust Badges --- */
.trust-section {
    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.trust-badge:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--red);
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
    color: var(--white);
}

.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-inner p {
    opacity: 0.8;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* --- About Page --- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--gray);
    border-radius: var(--radius);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--mid-gray);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--red);
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.85rem;
}

/* Mission / Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    text-align: center;
    transition: all var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.mv-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.8rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.3rem;
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
}

.timeline-content {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    transition: all var(--transition);
}

.timeline-content:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--red);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Services Detail Page --- */
.service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-benefits h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text);
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits li i {
    color: var(--red);
    font-size: 0.75rem;
}

.service-divider {
    height: 1px;
    background: var(--gray);
    margin: 8px 0;
}

/* --- Clients Page --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.client-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.client-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.3rem;
}

.client-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.client-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Client Logos */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.logo-placeholder {
    background: var(--white);
    border: 1px dashed var(--gray);
    border-radius: var(--radius);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder span {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* Partnership */
.partnership-content {
    max-width: 700px;
}

.partnership-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.partnership-content > p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 28px;
}

.partnership-stats {
    display: flex;
    gap: 40px;
}

.p-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--red);
    font-weight: 800;
}

.p-stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form {
    margin-top: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.required {
    color: var(--red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.input-error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.15) !important;
}

/* CAPTCHA */
.captcha-group {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
}

.captcha-challenge {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.captcha-challenge label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.captcha-challenge input {
    max-width: 200px;
    padding: 10px 14px;
    font-size: 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
}

.captcha-challenge input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.1);
}

/* Alerts */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.alert i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.alert-success {
    background: #edf7ed;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c6cb;
}

/* Contact Sidebar */
.contact-info-sidebar .info-card {
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 36, 0.08);
    border-radius: 50%;
    color: var(--red);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.map-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--gray);
    border-radius: var(--radius);
    overflow: hidden;
}

.map-inner {
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mid-gray);
}

.map-inner i {
    font-size: 2rem;
    color: var(--red);
    opacity: 0.5;
}

.map-inner p {
    font-weight: 600;
    font-size: 0.9rem;
}

.map-inner small {
    font-size: 0.8rem;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer-logo .logo-text strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
}

.footer-logo .logo-text small {
    font-size: 0.65rem;
    opacity: 0.7;
    letter-spacing: 0.04em;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
}

.contact-list i {
    color: var(--red);
    margin-top: 3px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid,
    .values-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Navbar Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 12px 16px;
        border-radius: var(--radius);
        display: block;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(196, 30, 36, 0.06);
        color: var(--red) !important;
    }

    .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    /* Hero Mobile */
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .page-banner {
        padding: 120px 0 40px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    /* About Mobile */
    .about-intro {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Services Mobile */
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-benefits li {
        justify-content: center;
    }

    /* Clients Mobile */
    .clients-grid {
        grid-template-columns: 1fr;
    }

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

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

    .partnership-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-inner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stats-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

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