/* Safe Fleet Holdings LLC - Global Styles */

:root {
  --bg-primary: #05070a;
  --bg-secondary: #0a0f1a;
  --bg-card: rgba(17,24,39,0.7);
  --bg-card-solid: #111827;
  --border-color: rgba(148,163,184,0.15);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-cyan: #00d4ff;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --gradient-primary: linear-gradient(135deg,var(--accent-cyan),var(--accent-blue),var(--accent-purple));
  --gradient-glow: radial-gradient(circle at 50% 0%,rgba(0,212,255,0.15),transparent 60%);
  --font-family: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-family); background:var(--bg-primary); color:var(--text-primary); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; transition:var(--transition); }
img { max-width:100%; display:block; }
.container { width:100%; max-width:1280px; margin:0 auto; padding:0 24px; }

/* Typography */
.gradient-text { background:var(--gradient-primary); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.section-title { font-size:2.5rem; font-weight:700; letter-spacing:-0.02em; margin-bottom:1rem; }
.section-subtitle { font-size:1.125rem; color:var(--text-secondary); max-width:600px; margin:0 auto 3rem; line-height:1.7; }
.section-header { text-align:center; margin-bottom:4rem; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:0.5rem; padding:0.875rem 2rem; font-size:0.9375rem; font-weight:600; border-radius:8px; border:none; cursor:pointer; transition:var(--transition); letter-spacing:0.01em; }
.btn-primary { background:var(--gradient-primary); color:#fff; box-shadow:0 4px 20px rgba(59,130,246,0.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(59,130,246,0.4); }
.btn-outline { background:transparent; color:var(--text-primary); border:1px solid var(--border-color); }
.btn-outline:hover { border-color:var(--accent-cyan); color:var(--accent-cyan); background:rgba(0,212,255,0.05); }
.btn-sm { padding:0.625rem 1.25rem; font-size:0.875rem; }

/* Navigation */
.navbar { position:fixed; top:0; left:0; width:100%; z-index:1000; padding:1.25rem 0; transition:var(--transition); border-bottom:1px solid transparent; }
.navbar.scrolled { background:rgba(5,7,10,0.85); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:var(--border-color); padding:0.875rem 0; }
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.logo { font-size:1.35rem; font-weight:800; letter-spacing:-0.02em; display:flex; align-items:center; gap:0.5rem; }
.logo-icon { width:36px; height:36px; background:var(--gradient-primary); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:#fff; }
.nav-links { display:flex; align-items:center; gap:2.5rem; list-style:none; }
.nav-links a { font-size:0.9375rem; font-weight:500; color:var(--text-secondary); position:relative; padding:0.25rem 0; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gradient-primary); transition:var(--transition); border-radius:1px; }
.nav-links a:hover,.nav-links a.active { color:var(--text-primary); }
.nav-links a:hover::after,.nav-links a.active::after { width:100%; }
.nav-cta { display:flex; align-items:center; gap:1rem; }
.mobile-menu-btn { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:0.25rem; }
.mobile-menu-btn span { display:block; width:24px; height:2px; background:var(--text-primary); transition:var(--transition); }

/* Hero */
.hero { min-height:100vh; display:flex; align-items:center; position:relative; padding-top:80px; overflow:hidden; }
.hero::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:var(--gradient-glow); pointer-events:none; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:0.5rem; padding:0.5rem 1rem; background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2); border-radius:100px; font-size:0.875rem; font-weight:500; color:var(--accent-cyan); margin-bottom:1.5rem; }
.hero-badge .dot { width:8px; height:8px; background:var(--accent-green); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-title { font-size:3.75rem; font-weight:800; line-height:1.1; letter-spacing:-0.03em; margin-bottom:1.5rem; }
.hero-desc { font-size:1.125rem; color:var(--text-secondary); line-height:1.8; margin-bottom:2.5rem; max-width:540px; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-visual-inner { width:100%; max-width:520px; aspect-ratio:1; position:relative; }
.orbit { position:absolute; border:1px solid var(--border-color); border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); }
.orbit-1 { width:100%; height:100%; animation:rotate 20s linear infinite; }
.orbit-2 { width:75%; height:75%; animation:rotate 15s linear infinite reverse; }
.orbit-3 { width:50%; height:50%; animation:rotate 10s linear infinite; }
.orbit-dot { position:absolute; width:12px; height:12px; background:var(--gradient-primary); border-radius:50%; box-shadow:0 0 20px rgba(0,212,255,0.5); }
.orbit-1 .orbit-dot { top:0; left:50%; transform:translate(-50%,-50%); }
.orbit-2 .orbit-dot { bottom:0; left:50%; transform:translate(-50%,50%); }
.orbit-3 .orbit-dot { top:50%; right:0; transform:translate(50%,-50%); }
@keyframes rotate { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.central-core { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:140px; height:140px; background:var(--gradient-primary); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:3rem; box-shadow:0 0 60px rgba(0,212,255,0.3); }

/* Section Common */
.section { padding:6rem 0; position:relative; }
.section-alt { background:var(--bg-secondary); }

/* Cards & Glass */
.glass-card { background:var(--bg-card); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid var(--border-color); border-radius:16px; padding:2rem; transition:var(--transition); }
.glass-card:hover { border-color:rgba(0,212,255,0.3); transform:translateY(-4px); box-shadow:var(--shadow-glow),var(--shadow-card); }
.card-icon { width:56px; height:56px; background:rgba(0,212,255,0.1); border:1px solid rgba(0,212,255,0.2); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.25rem; color:var(--accent-cyan); }
.card-title { font-size:1.25rem; font-weight:600; margin-bottom:0.75rem; }
.card-text { color:var(--text-secondary); font-size:0.9375rem; line-height:1.7; }

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

/* Feature List */
.feature-list { list-style:none; display:flex; flex-direction:column; gap:0.875rem; }
.feature-list li { display:flex; align-items:center; gap:0.75rem; color:var(--text-secondary); font-size:0.9375rem; }
.feature-list .check { width:20px; height:20px; background:rgba(16,185,129,0.15); color:var(--accent-green); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.75rem; flex-shrink:0; }

/* Stats */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.stat-card { text-align:center; padding:2rem; border-radius:16px; border:1px solid var(--border-color); background:var(--bg-card); }
.stat-number { font-size:2.5rem; font-weight:800; background:var(--gradient-primary); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:0.5rem; }
.stat-label { font-size:0.9375rem; color:var(--text-secondary); }

/* CTA */
.cta-section { padding:5rem 0; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:800px; height:400px; background:radial-gradient(ellipse,rgba(0,212,255,0.08),transparent 70%); pointer-events:none; }
.cta-box { background:var(--bg-card); border:1px solid var(--border-color); border-radius:24px; padding:4rem 3rem; position:relative; z-index:1; max-width:900px; margin:0 auto; }

/* Footer */
.footer { background:var(--bg-secondary); border-top:1px solid var(--border-color); padding:4rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand .logo { margin-bottom:1rem; }
.footer-brand p { color:var(--text-secondary); font-size:0.9375rem; line-height:1.7; max-width:300px; }
.footer-title { font-size:1rem; font-weight:600; margin-bottom:1.25rem; color:var(--text-primary); }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:0.75rem; }
.footer-links a { color:var(--text-secondary); font-size:0.9375rem; display:inline-flex; align-items:center; gap:0.5rem; }
.footer-links a:hover { color:var(--accent-cyan); transform:translateX(4px); }
.footer-bottom { border-top:1px solid var(--border-color); padding-top:2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-bottom p { color:var(--text-muted); font-size:0.875rem; }
.footer-bottom-links { display:flex; gap:1.5rem; }
.footer-bottom-links a { color:var(--text-muted); font-size:0.875rem; }
.footer-bottom-links a:hover { color:var(--accent-cyan); }

/* About Page */
.page-hero { padding:10rem 0 5rem; text-align:center; position:relative; }
.page-hero .hero-title { font-size:3rem; }
.page-hero .hero-desc { margin:0 auto; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-image { background:var(--bg-card); border:1px solid var(--border-color); border-radius:20px; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.about-image .code-pattern { font-family:'Courier New',monospace; font-size:0.7rem; color:var(--text-muted); opacity:0.4; line-height:1.4; padding:2rem; text-align:left; width:100%; height:100%; overflow:hidden; }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.value-card { padding:1.75rem; background:var(--bg-card); border:1px solid var(--border-color); border-radius:16px; transition:var(--transition); }
.value-card:hover { border-color:rgba(0,212,255,0.3); }
.value-card h3 { font-size:1.1rem; font-weight:600; margin-bottom:0.5rem; display:flex; align-items:center; gap:0.5rem; }
.value-card p { color:var(--text-secondary); font-size:0.9375rem; line-height:1.6; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card { background:var(--bg-card); border:1px solid var(--border-color); border-radius:16px; padding:2rem; text-align:center; transition:var(--transition); }
.team-card:hover { border-color:rgba(0,212,255,0.3); transform:translateY(-4px); }
.team-avatar { width:80px; height:80px; background:var(--gradient-primary); border-radius:50%; margin:0 auto 1.25rem; display:flex; align-items:center; justify-content:center; font-size:1.75rem; color:#fff; }
.team-role { font-size:1.125rem; font-weight:600; margin-bottom:0.25rem; }
.team-dept { font-size:0.875rem; color:var(--text-secondary); }

/* Services */
.service-card-large { background:var(--bg-card); border:1px solid var(--border-color); border-radius:20px; padding:2.5rem; transition:var(--transition); display:flex; flex-direction:column; }
.service-card-large:hover { border-color:rgba(0,212,255,0.3); transform:translateY(-4px); box-shadow:var(--shadow-glow),var(--shadow-card); }
.service-card-large .card-icon { width:64px; height:64px; font-size:1.75rem; }

/* Solutions */
.solution-card { background:var(--bg-card); border:1px solid var(--border-color); border-radius:20px; overflow:hidden; transition:var(--transition); display:grid; grid-template-columns:1fr 1fr; align-items:center; }
.solution-card:hover { border-color:rgba(0,212,255,0.3); }
.solution-content { padding:2.5rem; }
.solution-visual { background:rgba(0,212,255,0.05); height:100%; min-height:280px; display:flex; align-items:center; justify-content:center; font-size:4rem; border-left:1px solid var(--border-color); }
.solution-card:nth-child(even) .solution-visual { order:-1; border-left:none; border-right:1px solid var(--border-color); }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
.contact-form { background:var(--bg-card); border:1px solid var(--border-color); border-radius:20px; padding:2.5rem; }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-size:0.875rem; font-weight:500; margin-bottom:0.5rem; color:var(--text-secondary); }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:0.875rem 1rem; background:rgba(255,255,255,0.03); border:1px solid var(--border-color); border-radius:10px; color:var(--text-primary); font-family:inherit; font-size:0.9375rem; transition:var(--transition); outline:none; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--accent-cyan); box-shadow:0 0 0 3px rgba(0,212,255,0.1); }
.form-group textarea { resize:vertical; min-height:120px; }
.contact-info-grid { display:flex; flex-direction:column; gap:1.25rem; }
.contact-info-card { background:var(--bg-card); border:1px solid var(--border-color); border-radius:16px; padding:1.5rem; display:flex; align-items:flex-start; gap:1rem; transition:var(--transition); }
.contact-info-card:hover { border-color:rgba(0,212,255,0.3); }
.contact-info-icon { width:48px; height:48px; background:rgba(0,212,255,0.1); border:1px solid rgba(0,212,255,0.2); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.25rem; color:var(--accent-cyan); flex-shrink:0; }
.contact-info-card h3 { font-size:1rem; font-weight:600; margin-bottom:0.25rem; }
.contact-info-card p { color:var(--text-secondary); font-size:0.9375rem; }

/* Legal Pages */
.legal-section { padding:10rem 0 5rem; }
.legal-container { max-width:800px; margin:0 auto; }
.legal-title { font-size:2.5rem; font-weight:700; margin-bottom:0.75rem; text-align:center; }
.legal-updated { text-align:center; color:var(--text-muted); font-size:0.875rem; margin-bottom:3rem; }
.legal-content { background:var(--bg-card); border:1px solid var(--border-color); border-radius:20px; padding:3rem; }
.legal-content h2 { font-size:1.35rem; font-weight:600; margin-top:2rem; margin-bottom:1rem; color:var(--text-primary); }
.legal-content h2:first-child { margin-top:0; }
.legal-content p { color:var(--text-secondary); font-size:0.9375rem; line-height:1.8; margin-bottom:1rem; }
.legal-content ul,.legal-content ol { margin-left:1.5rem; margin-bottom:1rem; color:var(--text-secondary); font-size:0.9375rem; line-height:1.8; }
.legal-content li { margin-bottom:0.5rem; }
.legal-content a { color:var(--accent-cyan); }
.legal-content a:hover { text-decoration:underline; }
.legal-toc { background:rgba(0,212,255,0.05); border:1px solid rgba(0,212,255,0.15); border-radius:12px; padding:1.5rem 2rem; margin-bottom:2rem; }
.legal-toc h3 { font-size:1rem; font-weight:600; margin-bottom:1rem; color:var(--accent-cyan); }
.legal-toc ul { list-style:none; margin:0; }
.legal-toc li { margin-bottom:0.5rem; }
.legal-toc a { color:var(--text-secondary); font-size:0.9375rem; }
.legal-toc a:hover { color:var(--accent-cyan); }

/* Animations */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.active { opacity:1; transform:translateY(0); }

/* Back to Top */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:44px; height:44px; background:var(--bg-card); border:1px solid var(--border-color); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; visibility:hidden; transition:var(--transition); z-index:999; color:var(--text-primary); font-size:1.1rem; }
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { border-color:var(--accent-cyan); color:var(--accent-cyan); transform:translateY(-2px); }

/* Responsive */
@media (max-width:1024px) {
  .hero-title { font-size:3rem; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
  .hero-grid { grid-template-columns:1fr; text-align:center; gap:3rem; }
  .hero-desc { margin-left:auto; margin-right:auto; }
  .hero-buttons { justify-content:center; }
  .hero-visual-inner { max-width:320px; }
  .grid-3,.grid-2,.grid-4 { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .solution-card { grid-template-columns:1fr; }
  .solution-visual { min-height:200px; border-left:none !important; border-right:none !important; border-top:1px solid var(--border-color); order:-1 !important; }
  .stats-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .section-title { font-size:2rem; }
  .nav-links { display:none; position:absolute; top:100%; left:0; width:100%; background:var(--bg-secondary); border-bottom:1px solid var(--border-color); flex-direction:column; padding:1.5rem; gap:1.25rem; }
  .nav-links.active { display:flex; }
  .mobile-menu-btn { display:flex; }
  .nav-cta .btn { display:none; }
  .page-hero { padding:8rem 0 3rem; }
  .legal-content { padding:1.5rem; }
}
