/* ============================================
   RBS CONSULTANTS - SHARED STYLES
   ============================================ */

:root {
    --primary-dark: #0d0f1a;
    --primary-navy: #12132a;
    --secondary-navy: #1a1c35;
    --gold: #c9a55c;
    --gold-light: #d4b76a;
    --gold-dark: #a88b4a;
    --cream: #f5f1e8;
    --text-light: #e8e6e0;
    --text-muted: #9a9a9a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--primary-dark); color: var(--text-light); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: var(--transition); background: rgba(13, 15, 26, 0.95); backdrop-filter: blur(20px); }
header.scrolled { padding: 0.75rem 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--cream); }
.logo-text span { font-weight: 400; font-size: 0.85rem; letter-spacing: 3px; color: var(--text-muted); display: block; margin-top: -5px; }
.logo-accent { width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); margin-top: 2px; }

/* Desktop Navigation */
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-light); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-contact { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone { color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.nav-phone svg { width: 18px; height: 18px; stroke: var(--gold); vertical-align: middle; margin-right: 5px; }

/* Buttons */
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); padding: 0.85rem 2rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); display: inline-block; text-align: center; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 165, 92, 0.3); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 0.85rem 2rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: inline-block; text-align: center; }
.btn-outline:hover { background: var(--gold); color: var(--primary-dark); }

/* Mobile Menu Button */
.mobile-menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; background: none; border: none; z-index: 1001; }
.mobile-menu-btn span { width: 28px; height: 2px; background: var(--cream); transition: var(--transition); display: block; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Navigation */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--primary-navy); z-index: 1000; transition: var(--transition); padding: 100px 40px 40px; display: flex; flex-direction: column; }
.mobile-nav.active { right: 0; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-links { list-style: none; margin-bottom: 2rem; }
.mobile-nav-links li { border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.mobile-nav-links a { display: block; padding: 1.25rem 0; color: var(--text-light); font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); padding-left: 10px; }
.mobile-nav-contact { margin-top: auto; }
.mobile-nav-contact p { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.9rem; }
.mobile-nav-contact a { color: var(--gold); font-size: 1.2rem; font-weight: 600; }
.mobile-nav-contact .btn-primary { width: 100%; margin-top: 1.5rem; }

/* Page Header / Banner */
.page-header { padding: 180px 0 100px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--secondary-navy) 100%); position: relative; text-align: center; }
.page-header::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a55c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--cream); margin-bottom: 1rem; position: relative; }
.page-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; position: relative; }
.breadcrumb a { color: var(--gold); font-size: 0.9rem; }
.breadcrumb span { color: var(--text-muted); font-size: 0.9rem; }

/* Section Styles */
.section { padding: 5rem 0; }
.section-dark { background: var(--primary-dark); }
.section-navy { background: var(--primary-navy); }
.section-gradient { background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%); }
.section-label { display: inline-block; color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; position: relative; padding-left: 3rem; }
.section-label::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2rem; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

/* Cards */
.card { background: var(--primary-navy); padding: 2rem; position: relative; overflow: hidden; transition: var(--transition); border: 1px solid transparent; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.card:hover::before { transform: scaleX(1); }
.card:hover { border-color: rgba(201, 165, 92, 0.2); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.card-icon { width: 60px; height: 60px; background: rgba(201, 165, 92, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: var(--transition); }
.card:hover .card-icon { background: var(--gold); }
.card-icon svg { width: 28px; height: 28px; stroke: var(--gold); transition: var(--transition); }
.card:hover .card-icon svg { stroke: var(--primary-dark); }
.card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 1rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.card-link:hover svg { transform: translateX(5px); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Form Styles */
.form-container { background: rgba(0, 0, 0, 0.3); padding: 2.5rem; border: 1px solid rgba(201, 165, 92, 0.2); }
.form-container h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 1.5rem; text-align: center; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(201, 165, 92, 0.2); color: var(--text-light); font-family: inherit; font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.08); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--primary-navy); color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Contact Info Cards */
.contact-card { text-align: center; padding: 2rem 1.5rem; background: var(--primary-navy); transition: var(--transition); }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.contact-card-icon { width: 55px; height: 55px; background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.contact-card h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--gold); }
.contact-card a:hover { text-decoration: underline; }

/* Footer */
footer { background: var(--primary-navy); padding: 4rem 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 1.25rem 0 1.5rem; max-width: 280px; }
.footer-social { display: none; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(201, 165, 92, 0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-social a svg { width: 18px; height: 18px; stroke: var(--gold); transition: var(--transition); }
.footer-social a:hover svg { stroke: var(--primary-dark); }
.footer-links h5 { font-size: 0.95rem; color: var(--cream); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--gold); }

/* Disclaimer Modal */
.disclaimer-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.disclaimer-modal { background: var(--primary-navy); max-width: 550px; width: 100%; padding: 2.5rem; border: 1px solid rgba(201, 165, 92, 0.3); }
.disclaimer-modal h2 { font-size: 1.5rem; color: var(--cream); margin-bottom: 1.25rem; text-align: center; }
.disclaimer-modal p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.7; }
.disclaimer-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; }
.disclaimer-buttons .btn-primary, .disclaimer-buttons .btn-outline { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; }
.disclaimer-hidden { display: none; }

/* Stats Section */
.stats { background: var(--secondary-navy); padding: 4rem 0; position: relative; }
.stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-number span { font-size: 0.6em; }
.stat-label { font-size: clamp(0.75rem, 1.5vw, 0.9rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* Sector Cards */
.sector-card { background: var(--primary-dark); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.sector-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); opacity: 0; transition: var(--transition); }
.sector-card:hover::before { opacity: 0.1; }
.sector-card:hover { transform: translateY(-5px); }
.sector-icon { width: 55px; height: 55px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.sector-icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.sector-card h4 { font-size: 0.95rem; color: var(--cream); position: relative; z-index: 2; }

/* Why Us Items */
.why-us-item { display: flex; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.why-us-item:last-child { border-bottom: none; }
.why-us-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); opacity: 0.5; line-height: 1; min-width: 50px; }
.why-us-item h4 { font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem; }
.why-us-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Achievement Cards */
.achievement { text-align: center; padding: 1.5rem; background: rgba(201, 165, 92, 0.05); border: 1px solid rgba(201, 165, 92, 0.1); transition: var(--transition); }
.achievement:hover { background: rgba(201, 165, 92, 0.1); transform: scale(1.02); }
.achievement-icon { width: 50px; height: 50px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }
.achievement-icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.achievement h5 { font-size: 1rem; color: var(--cream); margin-bottom: 0.25rem; }
.achievement p { font-size: 0.85rem; color: var(--text-muted); }

/* Feature boxes for About page */
.feature-box { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.feature-box-icon { width: 50px; height: 50px; background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-box-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.feature-box h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.25rem; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Text content */
.text-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.8; }
.text-content ul { color: var(--text-muted); margin-bottom: 1.5rem; padding-left: 1.5rem; }
.text-content li { margin-bottom: 0.5rem; }

/* CTA Banner */
.cta-banner { padding: 4rem 0; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); text-align: center; }
.cta-banner h2 { color: var(--primary-dark); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--primary-navy); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--primary-dark); color: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--primary-navy); }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .nav-links, .nav-contact { display: none; }
    .mobile-menu-btn { display: flex; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 6%; }
    .page-header { padding: 140px 0 60px; }
    .page-header h1 { font-size: 2rem; }
    .section { padding: 4rem 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 2; text-align: center; }
    .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}

@media (max-width: 576px) {
    .logo-text { font-size: 1.4rem; }
    .logo-text span { font-size: 0.7rem; }
    .mobile-nav { padding: 90px 25px 30px; max-width: 100%; }
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 1.75rem; }
    .page-header p { font-size: 1rem; }
    .section { padding: 3rem 0; }
    .section-label { font-size: 0.75rem; padding-left: 2.5rem; }
    .section-label::before { width: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .card { padding: 1.5rem; }
    .form-container { padding: 1.5rem; }
    .why-us-item { flex-direction: column; gap: 0.75rem; text-align: center; }
    .why-us-number { min-width: auto; }
    .feature-box { flex-direction: column; text-align: center; }
    .feature-box-icon { margin: 0 auto; }
    .footer-main { grid-template-columns: repeat(2, 1fr); text-align: center; }
    .footer-brand { grid-column: span 1; }
    .disclaimer-modal { padding: 1.75rem; }
    .disclaimer-buttons { flex-direction: column; }
}

@media (max-width: 375px) {
    .stats-grid { grid-template-columns: 1fr; }
}
); transition: var(--transition); }
.approach-card:hover { background: rgba(201, 165, 92, 0.1); border-color: rgba(201, 165, 92, 0.3); }
.approach-icon { width: 60px; height: 60px; background: rgba(201, 165, 92, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.approach-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.approach-card h4 { color: var(--cream); font-size: 1rem; margin-bottom: 0.75rem; }
.approach-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* Why Feature */
.why-feature { display: flex; gap: 1.5rem; padding: 2rem; background: rgba(201, 165, 92, 0.05); border: 1px solid rgba(201, 165, 92, 0.1); transition: var(--transition); }
.why-feature:hover { background: rgba(201, 165, 92, 0.1); border-color: rgba(201, 165, 92, 0.3); }
.why-feature-icon { width: 60px; height: 60px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feature-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.why-feature h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.75rem; }
.why-feature p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Industry Cards */
.industry-card { padding: 2rem; background: rgba(201, 165, 92, 0.05); border: 1px solid rgba(201, 165, 92, 0.1); transition: var(--transition); }
.industry-card:hover { background: rgba(201, 165, 92, 0.1); border-color: rgba(201, 165, 92, 0.3); transform: translateY(-5px); }
.industry-card-icon { width: 60px; height: 60px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.industry-card-icon svg { width: 30px; height: 30px; stroke: var(--gold); }
.industry-card h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 1rem; }
.industry-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Industry Tags */
.industry-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.industry-tag { background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); color: var(--gold); padding: 0.6rem 1.25rem; font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
.industry-tag:hover { background: var(--gold); color: var(--primary-dark); }

/* Value Items */
.value-item { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.value-item:last-child { border-bottom: none; }
.value-icon { width: 45px; height: 45px; background: rgba(201, 165, 92, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.value-item h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.4rem; }
.value-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* Contact Info */
.contact-info { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 42px; height: 42px; background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-info h4 { color: var(--cream); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info p { color: var(--text-muted); font-size: 0.85rem; }
.contact-info a { color: var(--gold); }

.contact-info-large { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.contact-info-large:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon-large { width: 60px; height: 60px; background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-large svg { width: 26px; height: 26px; stroke: var(--gold); }
.contact-info-large h4 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-info-large p { color: var(--text-muted); font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-large a { color: var(--gold); font-weight: 500; }

/* Form */
.form-container { background: rgba(0, 0, 0, 0.3); padding: 2rem; border: 1px solid rgba(201, 165, 92, 0.2); }
.form-container h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 1.25rem; text-align: center; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(201, 165, 92, 0.2); color: var(--text-light); font-family: inherit; font-size: 0.95rem; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.08); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: var(--primary-navy); color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* CTA Banner */
.cta-banner { padding: 4rem 0; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); text-align: center; }
.cta-banner h2 { color: var(--primary-dark); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--primary-navy); font-size: 1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--primary-dark); color: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--primary-navy); }

/* Footer */
footer { background: var(--primary-navy); padding: 4rem 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin: 1rem 0 1.5rem; max-width: 280px; line-height: 1.7; }
.footer-social { display: none; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(201, 165, 92, 0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; stroke: var(--gold); transition: var(--transition); }
.footer-social a:hover svg { stroke: var(--primary-dark); }
.footer-links h5 { font-size: 0.9rem; color: var(--cream); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
    .nav-links, .nav-contact { display: none; }
    .mobile-menu-btn { display: flex; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(3, 1fr); }
    .service-detail-header { flex-direction: column; text-align: center; }
    .service-detail-icon { margin: 0 auto; }
    .why-feature { flex-direction: column; text-align: center; }
    .why-feature-icon { margin: 0 auto; }
}

@media (max-width: 768px) {
    .container { padding: 0 6%; }
    .page-hero { padding: 8rem 0 4rem; }
    .section { padding: 4rem 0; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 2; text-align: center; }
    .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .value-item { flex-direction: column; gap: 1rem; text-align: center; }
    .value-icon { margin: 0 auto; }
    .contact-info-large { flex-direction: column; text-align: center; }
    .contact-icon-large { margin: 0 auto; }
}

@media (max-width: 576px) {
    .logo-text { font-size: 1.4rem; }
    .logo-text span { font-size: 0.65rem; }
    .mobile-nav { padding: 90px 25px 30px; max-width: 100%; }
    .section { padding: 3rem 0; }
    .card { padding: 1.5rem; }
    .form-container { padding: 1.5rem; }
    .footer-main { grid-template-columns: repeat(2, 1fr); text-align: center; }
    .footer-brand { grid-column: span 1; }
    .industry-tags { gap: 0.5rem; }
    .industry-tag { padding: 0.5rem 1rem; font-size: 0.75rem; }
    .practice-item { flex-direction: column; text-align: center; }
    .practice-icon { margin: 0 auto; }
}
