:root {
    --navy: #0b1b32;
    --navy-light: #14294a;
    --charcoal: #1f334d;
    --accent: #c41e3a;
    --accent-hover: #a31830;
    --blue: #1e4e8c;
    --blue-hover: #153b6b;
    --text: #1f2937;
    --muted: #5a6675;
    --bg: #f7f8fa;
    --white: #ffffff;
    --border: #e2e5ea;
    --shadow: 0 6px 20px rgba(11, 27, 50, 0.08);
    --shadow-hover: 0 12px 28px rgba(11, 27, 50, 0.13);
    --radius: 8px;
    --radius-lg: 12px;
    --max: 1200px;
    --trans: 0.2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--accent); color: #fff; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: radial-gradient(circle at 10% 20%, rgba(196,30,58,0.04) 0%, transparent 25%),
                      radial-gradient(circle at 90% 80%, rgba(30,78,140,0.04) 0%, transparent 25%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--navy); }

.container { width: min(92%, var(--max)); margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem; border-radius: var(--radius); border: none; font-weight: 600;
    cursor: pointer; transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    text-decoration: none; font-size: 0.95rem; letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(11,27,50,0.1);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11,27,50,0.15); }
.btn-primary { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue-hover) 100%); color: var(--white); }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, #e03a56 100%); color: var(--white); }
.btn-accent:hover { background: linear-gradient(135deg, var(--accent-hover) 0%, #c41e3a 100%); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-call { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebc5a; color: #fff; }
.btn-block { width: 100%; }

.section { padding: 4rem 0; }
.section-dark { background: var(--navy); color: #e2e8f0; }
.section-title { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin: 0 0 0.5rem; }
.section-title.white { color: #fff; }
.section-sub { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
.section-sub.white { color: #cbd5e1; }

/* Header */
.site-header {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow); position: sticky; top: 0; z-index: 10000;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; color: var(--navy); }
.logo-main { font-size: 1.4rem; font-weight: 800; letter-spacing: 1px; }
.logo-sub { font-size: 0.58rem; color: var(--muted); letter-spacing: 0.4px; }
.main-nav { display: flex; justify-content: center; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 0.5rem 0; }
.main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 1.5rem; width: min(92%, var(--max)); }
.main-nav a { color: var(--text); font-weight: 600; font-size: 0.92rem; padding: 0.25rem 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }
.header-cta { display: flex; gap: 0.6rem; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--navy); cursor: pointer; }

/* Hero */
.hero {
    min-height: min(85vh, 780px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--charcoal) 100%);
    color: #fff; padding: 5rem 0; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 5L90 25v40L60 95 30 65V25L60 5z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.4;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: min(94%, 1320px); margin: 0 auto; }
.hero-content { max-width: none; }
.hero-kicker {
    display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.75rem; border-left: 3px solid var(--accent); padding-left: 0.65rem;
}
.hero-content h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1.05; margin: 0 0 1.2rem; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.hero-content p { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 2rem; line-height: 1.65; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-actions .btn { padding: 0.85rem 1.5rem; font-size: 1rem; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.9rem; color: #cbd5e1; }
.hero-trust i { color: var(--accent); margin-right: 0.35rem; }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; width: 100%; }
.hero-image {
    width: 100%; max-width: none; border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4); object-fit: cover; aspect-ratio: 3/2; max-height: 520px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-image:hover { transform: scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hero-stat {
    position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,0.95); color: var(--navy);
    padding: 0.9rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow); font-weight: 700; font-size: 0.9rem;
    z-index: 3;
}
.hero-stat i { color: var(--accent); margin-right: 0.3rem; }
.hero-stat small { color: var(--muted); font-weight: 500; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.intro-content h2 { font-size: 1.8rem; color: var(--navy); margin-top: 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
    background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow);
    border: 1px solid var(--border); border-top: 3px solid var(--accent);
    transition: transform var(--trans), box-shadow var(--trans); display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-icon { width: 54px; height: 54px; background: rgba(196,30,58,0.08); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--navy); }
.card p { color: var(--muted); flex-grow: 1; margin-bottom: 1.25rem; font-size: 0.95rem; }
.card .btn { align-self: flex-start; }

/* Services */
.section-services { background: var(--bg); }
.section-header { text-align: center; margin: 0 auto 2.5rem; max-width: 720px; }
.section-kicker { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.cards-services { gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); border-top: 3px solid var(--accent); box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(11,27,50,0.12); }
.service-card .card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--accent) 0%, #e03a56 100%); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 8px 20px rgba(196,30,58,0.25); margin-bottom: 1.25rem; transition: transform var(--trans); }
.service-card:hover .card-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; color: var(--navy); }
.service-card p { color: var(--muted); flex-grow: 1; margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-card .btn { align-self: flex-start; margin-top: auto; }

/* Why Choose ZENITH */
.section-why .feature-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.section-why .feature-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.85rem; transition: background var(--trans), transform var(--trans); }
.section-why .feature-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.section-why .feature-item i { width: 44px; height: 44px; background: rgba(196,30,58,0.18); font-size: 1.1rem; margin-top: 0; }
.section-why .feature-item strong { color: #fff; font-size: 1.05rem; }
.section-why .feature-item span { color: #cbd5e1; }

/* Why choose / features */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.feature-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature-item i { width: 32px; height: 32px; background: rgba(196,30,58,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--accent); margin-top: 0.1rem; flex-shrink: 0; }
.feature-item strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }
.feature-item span { color: var(--muted); font-size: 0.9rem; }

/* Industries We Serve */
.section-industries { background: var(--white); }
.cards-industries { gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.industry-card { text-align: center; padding: 2rem; border-top: 3px solid var(--navy); }
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,27,50,0.1); }
.industry-card i { width: 60px; height: 60px; background: rgba(11,27,50,0.06); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.85rem; transition: background var(--trans), color var(--trans), transform var(--trans); }
.industry-card:hover i { background: var(--navy); color: #fff; transform: scale(1.08); }

/* Our Presence */
.section-presence { background: var(--white); }
.section-presence .location-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.section-presence .location-card { border-top: 3px solid var(--accent); padding: 2rem; transition: transform var(--trans), box-shadow var(--trans); }
.section-presence .location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.section-presence .location-code { width: 64px; height: 64px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); font-size: 1.1rem; box-shadow: 0 6px 18px rgba(11,27,50,0.2); }

/* Locations */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.location-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.location-code { width: 56px; height: 56px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 1rem; }
.location-card h3 { margin: 0 0 0.25rem; color: var(--navy); }
.location-card small { color: var(--muted); }
.map-embed { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: none; display: block; }

.office-card { border-left: 4px solid var(--accent); }
.office-card h4 { margin: 0 0 0.5rem; color: var(--navy); }
.office-card address { font-style: normal; color: var(--muted); white-space: pre-line; }

/* CTA Band */
.cta-band { text-align: center; padding: 3rem 0; }
.cta-band h2 { margin: 0 0 0.75rem; }
.cta-band p { max-width: 700px; margin: 0 auto 1.5rem; color: #cbd5e1; }

/* Forms */
.form { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--navy); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 1rem; background: #fff;
    transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,78,140,0.1); }
.help-text { color: var(--muted); font-size: 0.85rem; }
.alert { padding: 0.9rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert-success { background: #e6f6ee; color: #166638; border: 1px solid #b3e6cc; }
.alert-error { background: #fff0f0; color: #9e1b1b; border: 1px solid #ffcccc; }

/* Page header */
.page-header {
    background: var(--navy-light); color: #fff; padding: 3.5rem 0 2.5rem; text-align: center;
}
.page-header h1 { margin: 0 0 0.5rem; font-size: 2rem; }
.page-header p { color: #cbd5e1; margin: 0; }

/* Service detail */
.service-detail h2 { color: var(--navy); margin-top: 0; }
.service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 2rem 0; }
.service-features li { list-style: none; display: flex; gap: 0.6rem; align-items: center; color: var(--text); }
.service-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); }

/* Privacy / terms */
.legal { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.legal h2 { color: var(--navy); margin-top: 1.8rem; }
.legal h3 { color: var(--charcoal); margin-top: 1.4rem; }

/* Footer */
.site-footer { background: var(--navy); color: #cbd5e1; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; margin-bottom: 0.25rem; }
.footer-company { color: #94a3b8; font-size: 0.85rem; margin: 0 0 1rem; }
.footer-about { font-size: 0.95rem; line-height: 1.6; }
.footer-col h4 { color: #fff; margin: 0 0 1rem; font-size: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background var(--trans); }
.social-links a:hover { background: var(--accent); }
.footer-bottom { background: var(--navy-light); padding: 1rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { margin: 0; font-size: 0.85rem; }

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1001;
    width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.fab-whatsapp:hover { background: #1ebc5a; color: #fff; }

/* Mobile CTA */
.mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    display: none; grid-template-columns: repeat(3, 1fr); background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
}

body.nav-open .mobile-cta { display: none !important; }
.mobile-cta a { padding: 0.6rem; text-align: center; font-weight: 700; font-size: 0.8rem; color: #fff; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.mcta-call { background: var(--navy); }
.mcta-wa { background: #25d366; }
.mcta-quote { background: var(--accent); }

/* Admin */
.admin-body { background: #eef1f5; }
.admin-wrapper { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); color: #fff; padding: 1.5rem; }
.admin-sidebar .logo { margin-bottom: 2rem; color: #fff; }
.admin-sidebar ul { list-style: none; padding: 0; margin: 0; }
.admin-sidebar li { margin-bottom: 0.25rem; }
.admin-sidebar a { color: #cbd5e1; display: block; padding: 0.6rem 0.75rem; border-radius: var(--radius); }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.08); color: #fff; }
.admin-main { padding: 1.5rem; }
.admin-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.5rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); text-align: center; }
.stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.stat-card .label { font-size: 0.85rem; color: var(--muted); }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.admin-table th, .admin-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { background: var(--navy); color: #fff; }
.admin-table tr:hover { background: #f9fafb; }
.badge { padding: 0.25rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: #e2e8f0; color: var(--navy); }
.badge-new { background: #fff4d6; color: #8a5e00; }
.badge-contacted { background: #e6f2ff; color: #0b4f9c; }
.badge-progress { background: #f3e8ff; color: #6b21a8; }
.badge-converted { background: #dcfce7; color: #166638; }
.badge-closed { background: #e5e7eb; color: #374151; }
.admin-search { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.admin-search input, .admin-search select { padding: 0.6rem; border: 1px solid var(--border); border-radius: var(--radius); }

/* Login */
.login-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.login-box { background: #fff; padding: 2rem; border-radius: var(--radius-lg); width: 100%; max-width: 400px; box-shadow: var(--shadow); }

/* Pagination */
.pagination { display: flex; gap: 0.35rem; margin-top: 1rem; }
.pagination a, .pagination span { padding: 0.4rem 0.75rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Premium header & hero */
.accent { color: var(--accent); }
.site-header { padding: 0.5rem 0; transition: padding var(--trans), box-shadow var(--trans); }
.header-inner { padding: 0.5rem 0; gap: 1.5rem; }
.logo-main { font-size: 1.65rem; font-weight: 900; letter-spacing: 1.5px; }
.logo-sub { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.5px; margin-top: 0.15rem; }
.main-nav ul { gap: 1.75rem; }
.main-nav a { font-size: 0.9rem; letter-spacing: 0.01em; padding: 0.5rem 0; font-weight: 700; }
.header-cta .btn { padding: 0.65rem 1.1rem; font-size: 0.9rem; border-radius: 6px; }

/* Hero premium */
.hero-content h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; line-height: 1.05; margin: 0 0 1.5rem; letter-spacing: -0.02em; }
.hero-content h1 .accent { color: var(--accent); }
.hero-content p { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 2.25rem; line-height: 1.7; max-width: 560px; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn { padding: 0.95rem 1.75rem; font-size: 1rem; border-radius: var(--radius); }
.hero-actions .btn-outline.btn-whatsapp { border-color: #25d366; color: #25d366; }
.hero-actions .btn-outline.btn-whatsapp:hover { background: #25d366; color: #fff; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.95rem; color: #cbd5e1; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust i { color: var(--accent); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }
.hero-image { width: 100%; max-width: none; border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0,0,0,0.35); object-fit: cover; aspect-ratio: 3/2; max-height: 520px; }
.hero-card { position: absolute; bottom: -1.25rem; right: -1.25rem; background: rgba(255,255,255,0.97); color: var(--navy); padding: 1rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 0.9rem; z-index: 3; max-width: 260px; }
.hero-card i { color: var(--accent); font-size: 1.5rem; }
.hero-card strong { display: block; }
.hero-card small { color: var(--muted); font-weight: 500; font-size: 0.8rem; }

/* Trust strip */
.trust-strip { background: var(--navy); color: #cbd5e1; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.trust-strip span { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; }
.trust-strip i { color: var(--accent); }
.trust-strip .divider { width: 1px; height: 22px; background: rgba(255,255,255,0.15); }

/* Intro */
.section-intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.intro-content { max-width: 540px; }
.intro-content .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.intro-content p { color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7; }
.intro-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.intro-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); object-fit: cover; aspect-ratio: 4/3; max-height: 420px; }
.intro-floating { position: absolute; top: 1rem; left: -1rem; background: var(--white); padding: 0.9rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.75rem; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.intro-floating i { color: var(--accent); font-size: 1.3rem; }
.intro-floating strong { display: block; }
.intro-floating small { color: var(--muted); font-weight: 500; font-size: 0.78rem; }
.intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; width: 100%; margin-top: -2rem; position: relative; z-index: 2; padding: 0 1rem; }
.stat-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; box-shadow: var(--shadow); }
.stat-item i { color: var(--accent); font-size: 1.25rem; display: block; margin-bottom: 0.35rem; }
.stat-item strong { color: var(--navy); font-size: 0.9rem; }

/* Premium sections */
.service-link i { transition: transform var(--trans); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* Specialized */
.section-specialized { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--charcoal) 100%); }
.specialized-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.specialized-image { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,0.35); object-fit: cover; aspect-ratio: 3/2; }
.specialized-content .section-title { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.specialized-content p { color: #cbd5e1; margin-bottom: 1.75rem; }
.specialized-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.75rem; }
.specialized-list li { display: flex; align-items: center; gap: 0.7rem; color: #e2e8f0; font-weight: 600; }
.specialized-list i { color: var(--accent); }

/* Why choose */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-lead { max-width: 460px; }
.why-lead .section-title { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.why-list-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-list-checks div { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1rem; color: #e2e8f0; font-weight: 600; font-size: 0.95rem; }
.why-list-checks i { color: var(--accent); }

/* Industries */
.industry-card { position: relative; padding-bottom: 3rem; }
.industry-arrow { position: absolute; bottom: 1.25rem; right: 1.25rem; color: var(--navy); font-weight: 700; font-size: 1.2rem; transition: transform var(--trans), color var(--trans); }
.industry-card:hover .industry-arrow { color: var(--accent); transform: translateX(5px); }
.section-industry-cta { background: linear-gradient(rgba(11,27,50,0.85), rgba(11,27,50,0.9)), url('https://images.unsplash.com/photo-1779518082981-a4dbcd738e17?fm=jpg&q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.1.0') center/cover no-repeat; text-align: center; }
.section-industry-cta .section-title { margin-bottom: 0.5rem; }
.section-industry-cta .section-sub { margin-bottom: 1.5rem; }

/* Presence */
.location-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--accent); font-weight: 700; font-size: 0.9rem; transition: gap var(--trans); }
.location-link i { transition: transform var(--trans); }
.location-link:hover i { transform: translateX(4px); }
.location-card { padding-bottom: 1.5rem; }

/* Offices */
.section-offices { background: var(--bg); }
.office-list { display: grid; gap: 0.85rem; max-width: 900px; margin: 0 auto 1.5rem; }
.office-row { display: flex; align-items: center; gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow); }
.office-row i { color: var(--accent); font-size: 1.25rem; }
.office-row strong { display: block; color: var(--navy); }
.office-row span { color: var(--muted); font-size: 0.9rem; }
.office-more { text-align: center; }

/* Final CTA */
.section-final-cta { text-align: center; }
.section-final-cta .section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.final-cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Footer premium */
.site-footer { padding: 4rem 0 0; }
.footer-grid { align-items: start; gap: 2.5rem; }
.footer-logo { font-size: 1.75rem; font-weight: 900; }
.footer-company { font-size: 0.9rem; color: #94a3b8; margin-bottom: 1rem; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 1.25rem; }

/* Extra responsive */
@media (max-width: 1023px) {
    .specialized-grid, .why-grid { grid-template-columns: 1fr; }
    .why-list-checks { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .hero { padding: 3rem 0; }
    .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-card { position: relative; bottom: auto; right: auto; margin-top: -2rem; width: 92%; }
    .intro-stats { grid-template-columns: 1fr; margin-top: 1rem; padding: 0; }
    .intro-floating { left: 0.5rem; top: 0.5rem; }
    .trust-strip .divider { display: none; }
    .final-cta-actions { flex-direction: column; }
    .final-cta-actions .btn { width: 100%; }
    .office-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Responsive */
@media (max-width: 1023px) {
    .hero .container, .intro-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .menu-toggle { display: block; position: relative; z-index: 10002; }
    .main-nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); color: #fff; padding: 5rem 1.5rem 1.5rem;
        transform: translateX(-100%); transition: transform var(--trans); z-index: 9999; overflow-y: auto; display: block;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: 0.5rem; }
    .main-nav a { display: block; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: #fff; }
    .header-cta { display: none; }
    .hero { padding: 4rem 0; }
    .hero-actions { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 2.5rem 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom p { display: block; margin-bottom: 0.25rem; }
    .mobile-cta { display: grid; }
    body { padding-bottom: 55px; }
    .admin-wrapper { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .admin-table { display: block; overflow-x: auto; }
}
