/* ============================================
   FelixPCB - Professional PCB CAM Engineering
   Modern, Image-Rich, Fully Responsive
   ============================================ */

:root {
    --primary: #1a4f8b;
    --primary-dark: #0d3a6e;
    --primary-light: #2563a8;
    --accent: #0f9d58;
    --accent-light: #34a853;
    
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #404055;
    --gray-600: #5c5c70;
    --gray-500: #7a7a8c;
    --gray-400: #9e9eab;
    --gray-300: #c4c4ce;
    --gray-200: #e2e2e8;
    --gray-100: #f4f4f7;
    --gray-50: #fafafb;
    --white: #ffffff;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --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);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; color: var(--gray-900); }
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.125rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.375rem; font-weight: 700; color: var(--gray-900); z-index: 1001; }
.logo-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 1.125rem; }
.logo-accent { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.9375rem; font-weight: 500; color: var(--gray-600); padding: 8px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; background: var(--gray-100); border-radius: var(--radius); z-index: 1001; transition: all var(--transition); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active { background: var(--primary); }
.nav-toggle.active span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); flex-direction: column; align-items: stretch; padding: 100px 24px 40px; gap: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.35s ease; overflow-y: auto; }
    .nav-menu.active { right: 0; }
    .nav-link { padding: 16px 0; font-size: 1.0625rem; border-bottom: 1px solid var(--gray-200); }
    .nav-link::after { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions .btn { display: none; }
    .nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 999; }
    .nav-overlay.active { opacity: 1; visibility: visible; }
}
@media (max-width: 480px) {
    .nav { height: 64px; }
    .nav-menu { width: 100%; padding: 80px 20px 32px; }
    .logo { font-size: 1.25rem; }
    .logo-icon { width: 34px; height: 34px; font-size: 1rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13, 58, 110, 0.92), rgba(26, 79, 139, 0.85)); }
.hero-content { max-width: 700px; color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.15); border-radius: 50px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero-title { font-size: 3rem; font-weight: 700; margin-bottom: 20px; line-height: 1.15; color: var(--white); }
.hero-subtitle { font-size: 1.125rem; opacity: 0.9; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9375rem; opacity: 0.9; }
.hero-feature i { color: var(--accent-light); }

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-features { gap: 16px; }
    .hero-feature { font-size: 0.875rem; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 48px; }
.section-tag { display: inline-block; padding: 6px 14px; background: rgba(26, 79, 139, 0.1); color: var(--primary); border-radius: 50px; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 1.0625rem; color: var(--gray-600); }
.section-text { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.what-we-do { background: var(--gray-50); }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.what-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition); }
.what-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.what-image { height: 200px; overflow: hidden; }
.what-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.what-card:hover .what-image img { transform: scale(1.05); }
.what-content { padding: 24px; }
.what-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 1.125rem; margin-bottom: 16px; }
.what-content h3 { margin-bottom: 8px; }
.what-content p { font-size: 0.9375rem; color: var(--gray-600); }

@media (max-width: 1024px) { .what-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .what-grid { grid-template-columns: 1fr; } .what-image { height: 180px; } }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--white); }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.services-intro-content .section-tag { margin-bottom: 12px; }
.services-intro-content .section-title { text-align: left; margin-bottom: 16px; }
.services-intro-content p { color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }
.services-intro-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.services-intro-image img { width: 100%; height: auto; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-item { background: var(--gray-50); padding: 24px; border-radius: var(--radius-lg); text-align: center; transition: all var(--transition); }
.service-item:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(26, 79, 139, 0.1); color: var(--primary); border-radius: var(--radius); font-size: 1.25rem; margin: 0 auto 12px; }
.service-item h4 { margin-bottom: 6px; font-size: 1rem; }
.service-item p { font-size: 0.8125rem; color: var(--gray-500); }

@media (max-width: 1024px) {
    .services-intro { grid-template-columns: 1fr; gap: 32px; }
    .services-intro-image { order: -1; max-width: 500px; margin: 0 auto; }
    .services-intro-content .section-title { text-align: center; }
    .services-intro-content .section-tag { display: block; text-align: center; }
    .services-intro-content p { text-align: center; }
    .services-intro-content .btn { display: block; width: fit-content; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section { position: relative; padding: 80px 0; }
.stats-bg { position: absolute; inset: 0; z-index: -1; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13, 58, 110, 0.95), rgba(26, 79, 139, 0.9)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-card { text-align: center; color: var(--white); }
.stat-card .stat-number { font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-card .stat-suffix { font-size: 2rem; font-weight: 600; }
.stat-card .stat-label { font-size: 0.9375rem; opacity: 0.85; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-card .stat-number { font-size: 2.25rem; }
}
@media (max-width: 480px) {
    .stat-card .stat-number { font-size: 1.875rem; }
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: auto; }
.why-content .section-tag { margin-bottom: 12px; }
.why-content .section-title { text-align: left; margin-bottom: 16px; }
.why-content .section-text { margin-bottom: 28px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 16px; }
.why-feature-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 1.125rem; flex-shrink: 0; }
.why-feature-content h4 { margin-bottom: 4px; font-size: 1rem; }
.why-feature-content p { font-size: 0.875rem; color: var(--gray-600); }

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-image { order: -1; max-width: 500px; margin: 0 auto; }
    .why-content .section-title, .why-content .section-tag, .why-content .section-text { text-align: center; }
    .why-content .section-tag { display: block; }
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.industry-card { background: var(--gray-50); padding: 28px 16px; border-radius: var(--radius-lg); text-align: center; transition: all var(--transition); }
.industry-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.industry-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(26, 79, 139, 0.1); color: var(--primary); border-radius: var(--radius); font-size: 1.5rem; margin: 0 auto 12px; }
.industry-card h4 { font-size: 0.9375rem; color: var(--gray-700); }

@media (max-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } .industry-card { padding: 20px 12px; } }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 60px 0; }
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255, 255, 255, 0.85); font-size: 1.0625rem; margin-bottom: 28px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--gray-800); border-radius: var(--radius); color: var(--gray-400); transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9375rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; }
.footer-contact li i { color: var(--primary-light); margin-top: 3px; width: 16px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--gray-800); font-size: 0.875rem; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 640px) { .footer { padding: 48px 0 20px; } .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { position: relative; padding: 140px 0 70px; }
.page-header-bg { position: absolute; inset: 0; z-index: -1; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13, 58, 110, 0.92), rgba(26, 79, 139, 0.88)); }
.page-header-content { text-align: center; max-width: 700px; margin: 0 auto; color: var(--white); }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { opacity: 0.9; font-size: 1.0625rem; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.875rem; }
.breadcrumb a { opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb i { font-size: 0.625rem; opacity: 0.5; }
.breadcrumb span { color: var(--accent-light); }

@media (max-width: 768px) { .page-header { padding: 110px 0 50px; } .page-header p { font-size: 1rem; } }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: auto; }
.mission-vision { background: var(--gray-50); }
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mv-card { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.mv-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mv-card h3 i { color: var(--primary); }
.mv-card p { color: var(--gray-600); line-height: 1.7; }

@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-image { order: -1; max-width: 500px; margin: 0 auto; } }
@media (max-width: 640px) { .mv-grid { grid-template-columns: 1fr; } .mv-card { padding: 24px; } }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail { background: var(--white); }
.service-section { padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.service-section:last-child { border-bottom: none; }
.service-section-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.service-section-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.service-section-image img { width: 100%; height: auto; }
.service-section-content h2 { margin-bottom: 12px; font-size: 1.5rem; }
.service-section-content > p { color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.service-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--gray-50); border-radius: var(--radius); font-size: 0.9375rem; color: var(--gray-700); }
.service-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

@media (max-width: 1024px) { .service-section-grid { grid-template-columns: 1fr; gap: 24px; } .service-section-image { max-width: 400px; } }

/* ============================================
   QUALITY PAGE
   ============================================ */
.quality-process { background: var(--white); }
.process-timeline { max-width: 900px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; margin-bottom: 32px; align-items: start; }
.timeline-item:nth-child(even) .timeline-content { order: 3; }
.timeline-item:nth-child(even) .timeline-spacer { order: 1; }
.timeline-content { background: var(--gray-50); padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.timeline-content h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.timeline-content p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; }
.timeline-marker { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: 50%; font-weight: 600; font-size: 1rem; flex-shrink: 0; }
.timeline-spacer { }
.quality-standards { background: var(--gray-50); }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.standard-card { background: var(--white); padding: 28px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); }
.standard-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.standard-card i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.standard-card h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.standard-card p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; }

@media (max-width: 768px) {
    .timeline-item { grid-template-columns: auto 1fr; gap: 16px; }
    .timeline-item:nth-child(even) .timeline-content { order: 2; }
    .timeline-spacer { display: none; }
    .standards-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INDUSTRIES PAGE
   ============================================ */
.industries-detail { background: var(--white); }
.industries-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.industry-detail-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; background: var(--gray-50); padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all var(--transition); }
.industry-detail-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.industry-detail-card .industry-icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: var(--primary); color: var(--white); border-radius: var(--radius-lg); font-size: 1.5rem; }
.industry-detail-card h3 { margin-bottom: 8px; }
.industry-detail-card p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; }

@media (max-width: 768px) { .industries-detail-grid { grid-template-columns: 1fr; } .industry-detail-card { grid-template-columns: 1fr; text-align: center; } .industry-detail-card .industry-icon { margin: 0 auto; } }

/* ============================================
   SECURITY PAGE
   ============================================ */
.security-features { background: var(--white); }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.security-card { display: flex; gap: 16px; padding: 24px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all var(--transition); }
.security-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.security-card .security-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 1.125rem; flex-shrink: 0; }
.security-card h3 { margin-bottom: 6px; font-size: 1.0625rem; }
.security-card p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.6; }

@media (max-width: 768px) { .security-grid { grid-template-columns: 1fr; } .security-card { flex-direction: column; text-align: center; } .security-card .security-icon { margin: 0 auto; } }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item .contact-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(26, 79, 139, 0.1); color: var(--primary); border-radius: var(--radius); flex-shrink: 0; }
.contact-item h4 { margin-bottom: 4px; font-size: 0.9375rem; }
.contact-item p, .contact-item a { color: var(--gray-600); font-size: 0.9375rem; }
.contact-item a:hover { color: var(--primary); }
.contact-form-wrapper { background: var(--gray-50); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.contact-form-wrapper h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; color: var(--gray-700); margin-bottom: 8px; font-size: 0.9375rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-family: inherit; font-size: 0.9375rem; transition: all var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 79, 139, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.file-upload { border: 2px dashed var(--gray-300); border-radius: var(--radius-lg); padding: 28px; text-align: center; cursor: pointer; transition: all var(--transition); background: var(--white); }
.file-upload:hover { border-color: var(--primary); background: rgba(26, 79, 139, 0.02); }
.file-upload i { font-size: 1.75rem; color: var(--primary); margin-bottom: 12px; }
.file-upload p { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 4px; }
.file-upload span { color: var(--primary); font-weight: 500; }
.file-upload input { display: none; }
.map-container { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; height: 350px; background: var(--gray-100); border: 1px solid var(--gray-200); }
.map-container iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrapper { padding: 24px; } .map-container { height: 280px; margin-top: 36px; } }

/* Highlights Grid (reusable) */
.highlights { background: var(--gray-50); }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.highlight-card { background: var(--white); padding: 28px 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); }
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.highlight-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(26, 79, 139, 0.1); color: var(--primary); border-radius: var(--radius); font-size: 1.25rem; margin-bottom: 16px; }
.highlight-card h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.highlight-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 1024px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .highlights-grid { grid-template-columns: 1fr; } }
