/* Custom Executive CSS for CPA Cloud Keeper, Inc. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-navy: #0B2545;
  --navy-dark: #07172C;
  --navy-light: #134074;
  --accent-teal: #0082CD;
  --accent-teal-hover: #006FB3;
  --accent-gold: #D4AF37;
  --bg-slate: #F8FAFC;
  --text-main: #0F172A;
  --text-muted: #475569;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #FFFFFF;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

/* Gradients */
.bg-navy-gradient {
  background: linear-gradient(135deg, #07172C 0%, #0B2545 60%, #134074 100%);
}

.bg-teal-gradient {
  background: linear-gradient(135deg, #0082CD 0%, #0284C7 100%);
}

.text-gradient-teal {
  background: linear-gradient(135deg, #38BDF8 0%, #0082CD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FDE047 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.sticky-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #E2E8F0;
}

/* Cards & Elevation */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E2E8F0;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(11, 37, 69, 0.1);
  border-color: #CBD5E1;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0082CD 0%, #0284C7 100%);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px 0 rgba(0, 130, 205, 0.35);
  transition: all 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 130, 205, 0.5);
}

.btn-navy {
  background: #0B2545;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px 0 rgba(11, 37, 69, 0.3);
  transition: all 0.25s ease;
}
.btn-navy:hover {
  background: #07172C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(11, 37, 69, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B89228 100%);
  color: #07172C;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.35);
  transition: all 0.25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(212, 175, 55, 0.5);
}

/* Accordion Styling */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Table Responsive Wrapper */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-left: 0;
  margin-right: 0;
}

/* Mobile Specific Responsive Adjustments */
@media (max-width: 640px) {
  .btn-primary, .btn-navy, .btn-gold {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #0082CD; border-radius: 4px; }
