:root {
  --primary: #0B2046; /* Deep Navy Blue */
  --primary-light: #1A3668;
  --accent: #FF6B35; /* Vivid Orange/Amber */
  --accent-hover: #E85A25;
  --bg-color: #F4F7F6; /* Soft gray/blue tint background */
  --white: #FFFFFF;
  --text-dark: #121212;
  --text-light: #5A5A5A;
  --border: #E5E9F0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(11, 32, 70, 0.05);
  --shadow-md: 0 8px 16px rgba(11, 32, 70, 0.08);
  --shadow-lg: 0 15px 30px rgba(11, 32, 70, 0.12);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition: all 0.3s ease-in-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: var(--font-body); background-color: var(--white); color: var(--text-dark); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; background-color: var(--accent); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; border: none; border-radius: 50px; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3); }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4); }

.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px; background-color: transparent; color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; border: 2px solid var(--primary); border-radius: 50px; cursor: pointer; transition: var(--transition); }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }

/* Header */
.top-bar { background-color: var(--primary); color: #B0C4DE; padding: 8px 0; font-size: 14px; font-weight: 500; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #B0C4DE; display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }

.main-header { background-color: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; padding: 5px 0; border-bottom: 1px solid var(--border); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 900; color: var(--primary); display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }

/* Desktop Nav */
.main-nav ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--primary); font-family: var(--font-heading); font-weight: 600; font-size: 1rem; padding: 10px 0; }
.main-nav a:hover { color: var(--accent); }

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

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: var(--white); min-width: 250px; box-shadow: var(--shadow-md); border-radius: var(--radius-sm); border-top: 3px solid var(--accent); top: 100%; left: 0; z-index: 101; max-height: 400px; overflow-y: auto; }
@media (min-width: 993px) {
  .dropdown:hover .dropdown-content { display: block; }
}
.dropdown-content a { display: block; padding: 12px 20px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text-dark); }
.dropdown-content a:hover { background-color: var(--bg-color); color: var(--accent); padding-left: 25px; }

/* Responsive Header */
@media (max-width: 992px) {
  .top-bar-left a:last-child, .top-bar-right { display: none; }
  .top-bar-inner { justify-content: center; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow-md); padding: 20px; flex-direction: column; border-top: 1px solid var(--border); }
  .main-nav.active { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 15px; align-items: flex-start; }
  .main-nav .btn-primary { display: flex !important; width: 100%; color: var(--white) !important; }
  .mobile-menu-btn { display: block; }
  .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 20px; display: none; border-left: 2px solid var(--accent); margin-top: 10px; }
  .dropdown.active .dropdown-content { display: block; }
  .header-cta { display: none; }
}

/* Breadcrumbs */
.breadcrumb-bar { background-color: var(--bg-color); border-bottom: 1px solid var(--border); padding: 15px 0; font-size: 14px; font-weight: 500; }
.bc-inner { display: flex; align-items: center; gap: 10px; color: var(--text-light); }
.bc-sep { color: var(--border); }

/* Banners */
.page-inner-banner { background: var(--primary); color: var(--white); padding: 80px 0; position: relative; border-bottom: 6px solid var(--accent); }
.page-inner-banner h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 800; }
.page-inner-banner p { font-size: 1.2rem; color: #B0C4DE; max-width: 800px; font-weight: 400; }

/* Sections */
.section-white { background: var(--white); padding: 80px 0; }
.section-bg { background: var(--bg-color); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.main-content h2 { font-size: 2.2rem; color: var(--primary); margin: 40px 0 20px; font-weight: 800; letter-spacing: -0.5px; }
.main-content h2:first-child { margin-top: 0; }
.main-content h3 { font-size: 1.5rem; color: var(--primary); margin: 30px 0 15px; font-weight: 700; }
.main-content p { margin-bottom: 20px; font-size: 1.1rem; }

/* Premium List Styling */
.main-content ul, .main-content ol { margin-bottom: 30px; padding-left: 0; list-style: none; }
.main-content ol { counter-reset: custom-counter; }

.main-content ol > li {
  position: relative;
  counter-increment: custom-counter;
  padding: 20px 20px 20px 65px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 15px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.main-content ol > li:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.main-content ol > li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-heading);
}

.main-content ul > li {
  position: relative;
  padding: 15px 15px 15px 45px;
  background: var(--bg-color);
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}
.main-content ul > li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
}

.main-content li strong { display: block; color: var(--primary); font-size: 1.2rem; margin-bottom: 5px; }

/* Sidebar */
.sidebar { position: sticky; top: 120px; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.sidebar-box h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); font-weight: 800; }
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); font-weight: 500; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--accent); padding-left: 5px; }

/* FAQ Accordion */
.faq-wrapper { max-width: 800px; margin: 0 auto; margin-top: 40px; }
.acc-item, .faq-item { margin-bottom: 15px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-question, .faq-question { width: 100%; padding: 20px; text-align: left; background: var(--bg-color); border: none; font-size: 1.1rem; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); transition: var(--transition); }
.acc-question:hover, .faq-question:hover { background: #E5E9F0; }
.acc-answer, .faq-answer { padding: 0 20px; display: none; background: var(--white); }
.acc-answer p, .faq-answer p { margin: 20px 0; }
.acc-item.active .acc-question, .faq-item.active .faq-question { color: var(--accent); background: var(--white); border-bottom: 1px solid var(--border); }
.acc-item.active .acc-answer, .faq-item.active .faq-answer { display: block; }

/* Footer */
.site-footer { background-color: var(--primary); color: var(--white); margin-top: 100px; position: relative; padding-top: 80px; }
.footer-cta { background: var(--accent); border-radius: var(--radius-lg); padding: 40px; color: var(--white); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; position: absolute; top: -80px; left: 20px; right: 20px; max-width: 1160px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.footer-cta h2 { font-size: 2rem; margin-bottom: 10px; color: var(--white); }
.footer-cta p { font-size: 1.1rem; font-weight: 500; opacity: 0.9; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-top: 60px; padding-bottom: 40px; }
.footer-col h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 25px; font-weight: 800; }
.footer-col p, .footer-col li { font-size: 15px; color: #A0B0CC; margin-bottom: 12px; }
.footer-col a { color: #A0B0CC; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col ul { list-style: none; padding: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; color: #6B7C9D; font-size: 14px; }
.footer-bottom a { color: #6B7C9D; }
.footer-bottom a:hover { color: var(--white); }

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  h1, .page-inner-banner h1 { font-size: 2.2rem !important; }
  h2, .main-content h2 { font-size: 1.8rem !important; }
  .content-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-white, .section-bg, .page-inner-banner { padding: 40px 0; }
  .sidebar { position: static; margin-top: 20px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  
  .bc-inner { flex-wrap: nowrap; overflow: hidden; white-space: nowrap; }
  .bc-inner span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  
  .site-footer { margin-top: 60px; padding-top: 20px; }
  .footer-cta { position: relative; top: 0; left: 0; right: 0; margin: -50px 20px 40px; text-align: center; justify-content: center; padding: 30px 20px; }
}

/* FAB */
.fab-call { position: fixed; bottom: 30px; right: 30px; background-color: var(--accent); color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); z-index: 9999; animation: pulse-fab 2s infinite; transition: var(--transition); }
.fab-call:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse-fab {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

@media (max-width: 992px) {
  .fab-call { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 24px; }
}
