:root {
  --bg-deep: #ffffff; /* White */
  --bg-card: #f8fafc; /* Light Gray */
  --bg-card-hover: #f1f5f9;
  
  --cyan: #1e3a8a; /* Trustworthy Navy Blue */
  --cyan-dark: #172554; /* Darker Navy */
  --red: #dc2626; /* Trustworthy Red */
  --red-dark: #b91c1c;
  --blue: #1e3a8a; /* Alias for cyan */
  
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #475569; /* Slate 600 */
  --border: #e2e8f0; /* Slate 200 */
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-glow-cyan: 0 4px 15px rgba(30, 58, 138, 0.15);
  --shadow-glow-red: 0 4px 15px rgba(220, 38, 38, 0.15);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.06);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: var(--font-main); background-color: var(--bg-deep); color: var(--text-main); line-height: 1.7; font-size: 16px; }
a { text-decoration: none; color: var(--cyan); transition: var(--transition); }
a:hover { color: var(--cyan-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary { 
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
  padding: 14px 28px; 
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); 
  color: #fff; 
  font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; 
  border: none; border-radius: 50px; cursor: pointer; transition: var(--transition); 
  box-shadow: var(--shadow-glow-red);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3); color:#fff; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
  padding: 14px 28px; 
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%); 
  color: #FFF; 
  font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; 
  border: none; border-radius: 50px; cursor: pointer; transition: var(--transition); 
  box-shadow: var(--shadow-glow-cyan);
}
.btn-secondary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3); }

.btn-outline { 
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
  padding: 12px 28px; 
  background-color: transparent; color: var(--cyan); 
  font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; 
  border: 2px solid var(--cyan); border-radius: 50px; cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background-color: var(--cyan); border-color: var(--cyan); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-glow-cyan); }

/* Header */
.top-bar { background-color: #f8fafc; color: var(--text-muted); padding: 10px 0; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--cyan); }
.top-bar-left { display: flex; gap: 25px; }

.site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; padding: 20px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2.2rem; font-weight: 900; color: var(--text-main); display: flex; align-items: center; gap: 12px; letter-spacing: -1px; }

/* Desktop Nav */
.main-nav ul { display: flex; list-style: none; gap: 40px; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--text-main); font-weight: 600; font-size: 1.05rem; padding: 10px 0; transition: var(--transition); }
.main-nav a:hover { color: var(--cyan); }

/* Mobile Menu Toggle */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 2.2rem; color: var(--text-main); cursor: pointer; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background: #ffffff; min-width: 280px; box-shadow: var(--shadow-card); border: 1px solid var(--border); border-radius: var(--radius-md); top: 100%; left: 0; z-index: 101; padding: 10px 0; }
@media (min-width: 993px) { .dropdown:hover .dropdown-content { display: block; } }
.dropdown-content a { display: block; padding: 12px 25px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text-main); }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: var(--bg-card); color: var(--cyan); padding-left: 35px; }

/* Responsive Header */
@media (max-width: 992px) {
  .top-bar-left span:last-child { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-deep); padding: 30px 20px; flex-direction: column; border-bottom: 1px solid var(--border); }
  .main-nav.active { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 20px; align-items: flex-start; }
  .main-nav .btn-primary { width: 100%; justify-content: center; margin-top: 20px; }
  .mobile-menu-btn { display: block; }
  .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 20px; display: none; background: transparent; }
  .dropdown.active .dropdown-content { display: block; }
  .header-cta { display: none; }
}

/* Typography & Headings */
h1, h2, h3 { font-family: var(--font-main); color: var(--text-main); font-weight: 800; letter-spacing: -0.5px; }

/* Sections */
.section-white { background: var(--bg-deep); padding: 100px 0; }
.section-bg { background: var(--bg-card); padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }

/* Hero Section */
.hero-container { display: flex; flex-wrap: wrap; align-items: stretch; }
.hero-content { flex: 1; min-width: 300px; padding: 80px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-image { flex: 1; min-width: 300px; position: relative; min-height: 400px; }

/* Cards & Layout */
.main-content h2 { font-size: 2.5rem; margin: 0 0 25px; }
.main-content h3 { font-size: 1.8rem; margin: 40px 0 20px; color: var(--cyan); }
.main-content p { margin-bottom: 25px; font-size: 1.15rem; color: var(--text-muted); }

/* Sidebar */
.sidebar { position: sticky; top: 120px; }
.sidebar-box { background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 35px; box-shadow: var(--shadow-card); margin-bottom: 30px; }
.sidebar-box h3 { font-size: 1.4rem; color: var(--text-main); margin-bottom: 25px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav a { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 600; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--cyan); padding-left: 10px; }

/* FAQ Accordion */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.acc-item { margin-bottom: 15px; background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.acc-question { width: 100%; padding: 25px; text-align: left; background: none; border: none; font-size: 1.25rem; font-weight: 700; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main); }
.acc-question:hover { color: var(--cyan); }
.acc-answer { padding: 0 25px; display: none; }
.acc-answer p { margin: 0 0 25px; color: var(--text-muted); }
.acc-item.active { border-color: var(--cyan); box-shadow: var(--shadow-glow-cyan); }
.acc-item.active .acc-answer { display: block; }

/* CTA Block */
.rs-cta { background: linear-gradient(135deg, var(--bg-card) 0%, #e2e8f0 100%); padding: 100px 0; text-align: center; border-radius: var(--radius-lg); margin: 80px 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border); position: relative; overflow: hidden; }
.rs-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--red)); }
.rs-cta h2 { font-size: 3.5rem; margin-bottom: 25px; font-weight: 900; letter-spacing: -1px; }
.rs-cta p { font-size: 1.3rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; color: var(--text-muted); }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background-color: #0f172a; color: #f1f5f9; padding: 100px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 80px; }
.footer-col h3 { font-size: 1.2rem; color: #ffffff; margin-bottom: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 18px; }
.footer-col a { color: #94a3b8; font-weight: 500; }
.footer-col a:hover { color: #ffffff; }
.footer-bottom { background-color: #020617; padding: 25px 0; text-align: center; color: #94a3b8; font-size: 14px; font-weight: 500; border-top: 1px solid rgba(255,255,255,0.05); }

/* Mobile Adjustments */
@media (max-width: 992px) {
  h1, .page-inner-banner h1 { font-size: 2.5rem !important; }
  h2, .main-content h2, .rs-cta h2 { font-size: 2rem !important; line-height: 1.2; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-white, .section-bg, .rs-cta { padding: 60px 0; }
  .rs-cta { margin: 40px 10px; border-radius: var(--radius-md); }
}
@media (max-width: 768px) {
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; justify-content: center; }
}

.page-inner-banner { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important; padding: 100px 0 !important; text-align: center; border-bottom: 5px solid var(--red) !important; color: #ffffff !important; }
.page-inner-banner h1 { font-size: 3.5rem !important; margin-bottom: 15px; color: #ffffff !important; text-transform: uppercase; letter-spacing: -1px; }
.page-inner-banner p { font-size: 1.25rem !important; max-width: 600px; margin: 0 auto; color: #cbd5e1 !important; }
.breadcrumb-bar { background-color: var(--bg-card); border-bottom: 1px solid var(--border); padding: 15px 0; font-size: 14px; }
.bc-inner { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.bc-inner a { color: var(--text-muted); }
.bc-inner a:hover { color: var(--cyan); }
.section-deep { background: var(--bg-deep); }

/* Mobile FAB */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  z-index: 9999;
  animation: pulse-red 2s infinite;
}
.mobile-fab:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-fab {
    display: flex;
  }
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
