/* ================================================================
   LANDROCK PACIFIC BANK - MAIN STYLESHEET
   style.css v2.1 - Last modified: 03/13/2006
   Maintained by: IT Web Development Team
   Approved by: J. Stanfield (Network Security)

   NOTE: Do not modify the security badge styles without
   approval from the Network Security division. -Webmaster
   ================================================================ */

/* ---- RESET & BASE ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #333333;
  background-color: #e8e8e8;
  line-height: 1.5;
}

a { color: #003366; text-decoration: underline; }
a:visited { color: #660066; }
a:hover { color: #CC9933; }
img { border: 0; }

/* ---- LAYOUT WRAPPER ---- */
#page-wrapper {
  width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

/* ---- UTILITY BAR ---- */
#utility-bar {
  background-color: #f0f0f0;
  border-bottom: 1px solid #cccccc;
  padding: 3px 15px;
  font-size: 10px;
  color: #666666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#utility-bar a { font-size: 10px; color: #666666; }
#utility-bar a:hover { color: #CC9933; }
.utility-links { display: flex; gap: 8px; }
.utility-links span { color: #999; }

/* ---- HEADER ---- */
#header {
  background: linear-gradient(180deg, #003366 0%, #002244 100%);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #CC9933;
}
#logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #CC9933 0%, #E8C66A 50%, #CC9933 100%);
  border: 2px solid #E8C66A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: bold;
  color: #003366;
  letter-spacing: -1px;
}
.logo-icon a {
  color: #003366;
  text-decoration: none;
}
.logo-text { color: #ffffff; }
.logo-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.logo-text h1 a { color: #ffffff; text-decoration: none; }
.logo-text h1 a:hover { color: #CC9933; }
.logo-text .tagline {
  font-size: 10px;
  color: #CC9933;
  letter-spacing: 1px;
  font-style: italic;
  margin-top: 2px;
}
.logo-text .est {
  font-size: 9px;
  color: #8899aa;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header-contact {
  text-align: right;
  color: #8899aa;
  font-size: 10px;
  line-height: 1.6;
}
#header-contact .phone {
  font-size: 14px;
  color: #CC9933;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", serif;
}

/* ---- NAVIGATION ---- */
#nav {
  background: linear-gradient(180deg, #004488 0%, #003366 100%);
  border-bottom: 1px solid #002244;
  padding: 0 10px;
  display: flex;
}
#nav a {
  display: block;
  padding: 8px 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  border-right: 1px solid #005599;
  border-left: 1px solid #005599;
  white-space: nowrap;
}
#nav a:first-child { border-left: none; }
#nav a:last-child { border-right: none; }
#nav a:hover { background-color: #CC9933; color: #003366; }
#nav a.active { background-color: #002244; color: #CC9933; }

/* ---- SECONDARY NAV ---- */
#secondary-nav {
  background-color: #f0f0f0;
  border-bottom: 1px solid #cccccc;
  padding: 0 20px;
  display: flex;
  gap: 0;
}
#secondary-nav a {
  display: block;
  padding: 5px 12px;
  color: #003366;
  text-decoration: none;
  font-size: 10px;
  border-right: 1px solid #ddd;
}
#secondary-nav a:hover { background-color: #e0e8f0; }
#secondary-nav a.active {
  background-color: #ffffff;
  font-weight: bold;
  border-bottom: 2px solid #CC9933;
}

/* ---- MARQUEE / TICKER ---- */
#ticker-bar {
  background-color: #FFFFF0;
  border-bottom: 1px solid #cccccc;
  padding: 4px 0;
  font-size: 10px;
  color: #003366;
  overflow: hidden;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.ticker-content .star { color: #CC9933; margin: 0 15px; }

/* ---- PAGE BANNER (inner pages) ---- */
.page-banner {
  background: linear-gradient(180deg, #003366 0%, #004488 100%);
  padding: 20px 25px;
  border-bottom: 2px solid #CC9933;
}
.page-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}
.page-banner .breadcrumbs {
  font-size: 10px;
  color: #8899aa;
}
.page-banner .breadcrumbs a { color: #aabbcc; }
.page-banner .breadcrumbs a:hover { color: #CC9933; }

/* ---- INNER PAGE LAYOUT ---- */
.inner-wrapper {
  display: flex;
  min-height: 500px;
}
.inner-sidebar {
  width: 200px;
  min-width: 200px;
  background-color: #f0f4f8;
  border-right: 1px solid #cccccc;
  padding: 12px;
}
.inner-content {
  flex: 1;
  padding: 15px 20px;
}

/* Sub-navigation */
.sub-nav { list-style: none; }
.sub-nav li {
  border-bottom: 1px solid #ddd;
}
.sub-nav li a {
  display: block;
  padding: 6px 8px;
  font-size: 10px;
  color: #003366;
  text-decoration: none;
}
.sub-nav li a:hover { background-color: #e0e8f0; color: #CC9933; }
.sub-nav li a.active {
  background-color: #003366;
  color: #ffffff;
  font-weight: bold;
}
.sub-nav-header {
  background: linear-gradient(180deg, #336699 0%, #003366 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 8px;
}

/* Sidebar contact box */
.sidebar-contact-box {
  margin-top: 12px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 10px;
  font-size: 10px;
  text-align: center;
}
.sidebar-contact-box .phone-sm {
  font-size: 12px;
  font-weight: bold;
  color: #003366;
}

/* ---- MAIN LAYOUT (homepage 3-col) ---- */
#main-wrapper { display: flex; min-height: 500px; }

#sidebar-left {
  width: 210px;
  min-width: 210px;
  background-color: #f0f4f8;
  border-right: 1px solid #cccccc;
  padding: 10px;
}
#content { flex: 1; padding: 12px 15px; }
#sidebar-right {
  width: 210px;
  min-width: 210px;
  background-color: #f0f4f8;
  border-left: 1px solid #cccccc;
  padding: 10px;
}

/* ---- SIDEBAR COMPONENTS ---- */
.sidebar-box {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  margin-bottom: 10px;
}
.sidebar-box-header {
  background: linear-gradient(180deg, #336699 0%, #003366 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 5px 8px;
  border-bottom: 1px solid #002244;
}
.sidebar-box-content { padding: 8px; }

/* Login Form */
.login-form label {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 2px;
  margin-top: 6px;
}
.login-form label:first-child { margin-top: 0; }
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 3px 4px;
  border: 1px solid #999999;
  border-top-color: #666666;
  border-left-color: #666666;
  font-size: 11px;
  font-family: Verdana, Arial, sans-serif;
  background-color: #ffffff;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #003366;
  background-color: #FFFFF5;
}
.login-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 4px 12px;
  background: linear-gradient(180deg, #e8e8e8 0%, #cccccc 100%);
  border: 1px solid #999999;
  border-top-color: #cccccc;
  border-left-color: #cccccc;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: #003366;
  cursor: pointer;
}
.login-btn:hover {
  background: linear-gradient(180deg, #CC9933 0%, #B8862D 100%);
  color: #ffffff;
  border-color: #996600;
}
.login-btn:active {
  border-top-color: #666;
  border-left-color: #666;
  border-bottom-color: #ccc;
  border-right-color: #ccc;
}
.login-links {
  margin-top: 6px;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
}
.security-note {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #e0e0e0;
  font-size: 9px;
  color: #666;
  text-align: center;
}
.security-note .lock { font-size: 12px; }

/* Rates */
.rates-table { width: 100%; font-size: 10px; border-collapse: collapse; }
.rates-table td { padding: 3px 4px; border-bottom: 1px dotted #ddd; }
.rates-table td:last-child { text-align: right; font-weight: bold; color: #003366; }
.rates-table tr:last-child td { border-bottom: none; }
.view-all { display: block; text-align: right; font-size: 10px; margin-top: 5px; }

/* Quick Links */
.quick-links { list-style: none; }
.quick-links li {
  padding: 3px 0;
  border-bottom: 1px dotted #ddd;
  font-size: 10px;
}
.quick-links li:last-child { border-bottom: none; }
.quick-links li:before { content: "\00BB\00A0"; color: #CC9933; font-weight: bold; }

/* ---- HERO BANNER ---- */
.hero-banner {
  position: relative;
  height: 240px;
  background: linear-gradient(180deg, #87CEEB 0%, #B0E0F0 40%, #98D4A8 58%, #4A8C3F 62%, #3A7230 100%);
  border: 1px solid #cccccc;
  margin-bottom: 12px;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #FFE57F 30%, #FFD740 60%, transparent 70%);
}
.hero-house { position: absolute; bottom: 58px; left: 60px; }
.house-body {
  width: 80px;
  height: 55px;
  background-color: #D4A76A;
  border: 1px solid #A0784A;
  position: relative;
}
.house-roof {
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 35px solid #8B4513;
  position: relative;
  left: -10px;
}
.house-door {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 20px;
  height: 30px;
  background-color: #8B4513;
  border: 1px solid #6B3410;
}
.house-window {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 14px;
  background-color: #87CEEB;
  border: 2px solid #A0784A;
}
.house-window.left { left: 8px; }
.house-window.right { right: 8px; }
.hero-family {
  position: absolute;
  bottom: 52px;
  left: 170px;
  font-size: 36px;
  filter: brightness(0.85);
  letter-spacing: -4px;
}
.hero-tree { position: absolute; bottom: 52px; }
.tree-trunk { width: 12px; height: 30px; background-color: #8B6914; margin: 0 auto; }
.tree-top { width: 40px; height: 40px; background-color: #2E7D32; border-radius: 50%; }
.hero-tree.t1 { right: 100px; }
.hero-tree.t2 { right: 40px; }
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55px;
  background: linear-gradient(180deg, #4A8C3F 0%, #3A7230 100%);
}
.hero-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 51, 102, 0.88);
  color: #ffffff;
  padding: 12px 18px;
  max-width: 320px;
}
.hero-overlay h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #CC9933;
  margin-bottom: 4px;
}
.hero-overlay p { font-size: 11px; line-height: 1.4; margin-bottom: 8px; }
.hero-btn {
  display: inline-block;
  padding: 4px 16px;
  background: linear-gradient(180deg, #CC9933 0%, #B8862D 100%);
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 10px;
  border: 1px solid #996600;
}
.hero-btn:hover {
  background: linear-gradient(180deg, #E8B84D 0%, #CC9933 100%);
  color: #003366;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  color: #003366;
  border-bottom: 2px solid #CC9933;
  padding-bottom: 4px;
  margin-bottom: 10px;
}

/* ---- WELCOME ---- */
.welcome-section { margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px solid #e0e0e0; }
.welcome-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  color: #003366;
  margin-bottom: 6px;
}
.welcome-section p { font-size: 11px; line-height: 1.6; color: #444; }

/* ---- NEWS ---- */
.news-section { margin-bottom: 15px; }
.news-item { padding: 8px 0; border-bottom: 1px dotted #ddd; }
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 9px; color: #999; text-transform: uppercase; }
.news-item h3 { font-size: 12px; color: #003366; margin: 2px 0; }
.news-item h3 a { text-decoration: none; }
.news-item h3 a:hover { text-decoration: underline; }
.news-item p { font-size: 10px; color: #555; line-height: 1.5; }

/* ---- SERVICES GRID ---- */
.services-section { margin-bottom: 15px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.service-card {
  border: 1px solid #cccccc;
  padding: 10px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  cursor: pointer;
}
.service-card:hover {
  border-color: #CC9933;
  background: linear-gradient(180deg, #FFFFF5 0%, #FFF8E8 100%);
}
.service-icon { font-size: 24px; margin-bottom: 4px; }
.service-card h4 { font-size: 10px; color: #003366; margin-bottom: 3px; }
.service-card p { font-size: 9px; color: #777; line-height: 1.4; }

/* ---- TEAM GRID ---- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.team-card { display: flex; gap: 10px; padding: 8px; border: 1px solid #e0e0e0; background-color: #fafafa; }
.team-photo {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #336699, #003366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC9933;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}
.team-info h4 { font-size: 11px; color: #003366; margin-bottom: 1px; }
.team-info .team-title { font-size: 9px; color: #CC9933; font-style: italic; margin-bottom: 3px; }
.team-info p { font-size: 9px; color: #666; line-height: 1.4; }

/* ---- SPOTLIGHT ---- */
.spotlight-photo {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #003366 0%, #004488 50%, #003366 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
}
.spotlight-initials {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  color: #CC9933;
  font-weight: bold;
}
.spotlight-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #CC9933;
  color: #003366;
  font-size: 7px;
  font-weight: bold;
  padding: 2px 5px;
  text-transform: uppercase;
}
.spotlight-name { font-weight: bold; font-size: 11px; color: #003366; }
.spotlight-title { font-size: 9px; color: #CC9933; font-style: italic; margin-bottom: 5px; }
.spotlight-quote { font-size: 9px; color: #555; font-style: italic; line-height: 1.4; }

/* ---- SECURITY BADGE ---- */
.security-badge { text-align: center; padding: 12px 8px; }
.shield-icon { font-size: 32px; margin-bottom: 4px; }
.security-badge h4 { font-size: 10px; color: #003366; margin-bottom: 4px; }
.security-badge p { font-size: 9px; color: #555; line-height: 1.4; }
.security-badge a { display: block; margin-top: 6px; font-size: 9px; }

/* ---- TESTIMONIALS ---- */
.testimonial { padding: 6px 0; border-bottom: 1px dotted #ddd; }
.testimonial:last-child { border-bottom: none; }
.testimonial p { font-size: 9px; color: #555; font-style: italic; line-height: 1.4; margin-bottom: 2px; }
.testimonial .author { font-size: 9px; color: #999; font-style: normal; text-align: right; }

/* Flash Notice */
.flash-notice {
  margin-top: 10px;
  padding: 6px;
  background-color: #FFFFF0;
  border: 1px solid #e0d8b0;
  font-size: 9px;
  color: #888;
  text-align: center;
}

/* ---- ABOUT US SECTION (homepage) ---- */
#about-anchor {
  background-color: #f8f8f8;
  border-top: 2px solid #CC9933;
  padding: 15px 20px;
}
.about-section { margin-bottom: 15px; }
.about-section p { font-size: 11px; color: #444; line-height: 1.6; margin-bottom: 8px; }

/* ---- FOOTER ---- */
#footer {
  background: linear-gradient(180deg, #003366 0%, #001a33 100%);
  color: #8899aa;
  padding: 15px 20px;
  border-top: 3px solid #CC9933;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #004477;
  flex-wrap: wrap;
}
.footer-links a { color: #8899aa; font-size: 10px; text-decoration: none; }
.footer-links a:hover { color: #CC9933; }
.footer-badges { text-align: center; margin-bottom: 10px; }
.badge {
  display: inline-block;
  border: 1px solid #445566;
  padding: 4px 10px;
  margin: 0 8px;
  font-size: 9px;
  color: #aabbcc;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer-legal {
  font-size: 9px;
  color: #667788;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 10px;
}
.footer-copy { text-align: center; font-size: 9px; color: #556677; margin-bottom: 6px; }
.footer-browser {
  text-align: center;
  font-size: 9px;
  color: #445566;
  font-style: italic;
  margin-bottom: 6px;
}
.footer-counter { text-align: center; font-size: 9px; color: #556677; padding: 6px 0; border-top: 1px solid #004477; margin-top: 8px; }
.counter-box {
  display: inline-block;
  background-color: #000000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 11px;
  padding: 2px 8px;
  letter-spacing: 3px;
  border: 1px inset #333;
}
.footer-webmaster { text-align: center; font-size: 8px; color: #445566; margin-top: 8px; }
.footer-webmaster a { color: #667788; }

/* ---- MODALS ---- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background-color: #f0f0f0;
  border: 2px outset #cccccc;
  width: 420px;
  font-family: Verdana, Arial, sans-serif;
}
.modal-titlebar {
  background: linear-gradient(90deg, #003366, #336699);
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-close {
  background: #cccccc;
  border: 1px outset #ffffff;
  color: #333;
  font-size: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}
.modal-close:hover { background: #ff6666; color: white; }
.modal-body { padding: 15px; font-size: 11px; line-height: 1.6; }
.modal-body .warning-icon { font-size: 28px; float: left; margin-right: 10px; }
.modal-footer { padding: 8px 15px; text-align: center; border-top: 1px solid #cccccc; }
.modal-ok-btn {
  padding: 4px 30px;
  background: linear-gradient(180deg, #e8e8e8, #cccccc);
  border: 1px outset #ffffff;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
}
.modal-ok-btn:hover { background: linear-gradient(180deg, #f0f0f0, #dddddd); }
.modal-ok-btn:active { border-style: inset; }

.construction-text { font-weight: bold; color: #CC9933; }
.blink { animation: blinker 1.2s step-start infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.skip-nav { position: absolute; left: -9999px; font-size: 10px; }
.skip-nav:focus { left: 10px; top: 10px; z-index: 999; }

/* ================================================================
   PAGE-SPECIFIC STYLES
   ================================================================ */

/* ---- ABOUT PAGE: Timeline ---- */
.timeline {
  position: relative;
  padding-left: 25px;
  margin: 15px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #CC9933;
}
.timeline-item {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 10px;
  background-color: #003366;
  border: 2px solid #CC9933;
}
.timeline-year {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: bold;
  color: #CC9933;
}
.timeline-item h4 {
  font-size: 11px;
  color: #003366;
  margin: 2px 0;
}
.timeline-item p {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
}

/* About: expanded team */
.team-grid-full { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0; }
.team-card-full {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  background: linear-gradient(180deg, #ffffff, #fafafa);
}
.team-photo-lg {
  width: 70px;
  height: 85px;
  background: linear-gradient(135deg, #336699, #003366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC9933;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}
.team-card-full h4 {
  font-size: 12px;
  color: #003366;
  margin-bottom: 2px;
}
.team-card-full .team-title {
  font-size: 10px;
  color: #CC9933;
  font-style: italic;
  margin-bottom: 4px;
}
.team-card-full p {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
}

/* About: values */
.values-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 12px 0; }
.value-card {
  text-align: center;
  padding: 12px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
}
.value-card .v-icon { font-size: 24px; margin-bottom: 4px; }
.value-card h4 { font-size: 11px; color: #003366; margin-bottom: 4px; }
.value-card p { font-size: 9px; color: #666; line-height: 1.4; }

/* ---- SECURITY PAGE ---- */
.threat-level {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background-color: #f0fff0;
  border: 1px solid #99cc99;
  margin-bottom: 15px;
}
.threat-indicator {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.threat-bar {
  width: 25px;
  height: 10px;
  border: 1px solid #999;
}
.threat-bar.red { background-color: #ccc; }
.threat-bar.orange { background-color: #ccc; }
.threat-bar.yellow { background-color: #ccc; }
.threat-bar.blue { background-color: #ccc; }
.threat-bar.green { background-color: #00aa00; }
.threat-bar.active-red { background-color: #ff0000; }
.threat-bar.active-orange { background-color: #ff8800; }
.threat-bar.active-yellow { background-color: #ffcc00; }
.threat-bar.active-blue { background-color: #0066ff; }
.threat-bar.active-green { background-color: #00aa00; }
.threat-level h4 { font-size: 12px; color: #006600; }
.threat-level p { font-size: 10px; color: #555; }

.firewall-diagram {
  border: 2px solid #003366;
  padding: 15px;
  margin: 15px 0;
  background-color: #f8f8ff;
  text-align: center;
}
.firewall-diagram h4 {
  font-size: 12px;
  color: #003366;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
}
.fw-layers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 10px 0;
}
.fw-layer {
  padding: 8px 6px;
  text-align: center;
  font-size: 8px;
  font-weight: bold;
  color: #fff;
  min-width: 80px;
  border: 1px solid rgba(0,0,0,0.2);
}
.fw-arrow {
  font-size: 16px;
  color: #CC9933;
  font-weight: bold;
}
.fw-internet { background-color: #cc3333; }
.fw-outer { background-color: #cc6633; }
.fw-ids { background-color: #cc9933; }
.fw-inner { background-color: #339933; }
.fw-encrypt { background-color: #336699; }
.fw-core { background-color: #003366; }

.security-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin: 15px 0;
}
.stat-box {
  text-align: center;
  padding: 12px;
  border: 1px solid #ddd;
  background: linear-gradient(180deg, #f8f8ff, #f0f0ff);
}
.stat-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}
.stat-label { font-size: 9px; color: #666; margin-top: 2px; }

.security-tips {
  list-style: none;
  margin: 10px 0;
}
.security-tips li {
  padding: 8px 10px 8px 30px;
  border-bottom: 1px dotted #ddd;
  font-size: 10px;
  position: relative;
  line-height: 1.5;
}
.security-tips li::before {
  content: "\\2713";
  position: absolute;
  left: 10px;
  color: #009900;
  font-weight: bold;
}

.sec-message {
  background-color: #f0f4f8;
  border: 1px solid #ccd4dc;
  padding: 15px;
  margin: 15px 0;
  display: flex;
  gap: 15px;
}
.sec-message-photo {
  width: 80px;
  height: 95px;
  background: linear-gradient(135deg, #003366, #004488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC9933;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}
.sec-message-text h4 {
  font-size: 12px;
  color: #003366;
}
.sec-message-text .sec-msg-title {
  font-size: 10px;
  color: #CC9933;
  font-style: italic;
  margin-bottom: 6px;
}
.sec-message-text p {
  font-size: 10px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 6px;
}
.sec-signature {
  font-style: italic;
  color: #666;
  margin-top: 8px;
}

/* ---- CAREERS PAGE ---- */
.job-listing {
  border: 1px solid #ddd;
  margin-bottom: 12px;
  background-color: #ffffff;
}
.job-header {
  background: linear-gradient(180deg, #f0f4f8, #e8ecf0);
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.job-header h3 {
  font-size: 13px;
  color: #003366;
  margin-bottom: 2px;
}
.job-dept {
  font-size: 10px;
  color: #CC9933;
  font-style: italic;
}
.job-tag {
  font-size: 9px;
  padding: 2px 8px;
  border: 1px solid #cc3333;
  color: #cc3333;
  font-weight: bold;
  white-space: nowrap;
}
.job-tag.new { border-color: #009900; color: #009900; }
.job-tag.urgent { border-color: #cc3333; color: #cc3333; }
.job-body {
  padding: 12px;
  font-size: 10px;
  line-height: 1.6;
  color: #444;
}
.job-body ul {
  margin: 6px 0 6px 20px;
  font-size: 10px;
}
.job-body ul li { margin-bottom: 3px; }
.job-footer {
  padding: 8px 12px;
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
  font-size: 9px;
  color: #888;
  display: flex;
  justify-content: space-between;
}
.apply-btn {
  display: inline-block;
  padding: 3px 12px;
  background: linear-gradient(180deg, #CC9933, #B8862D);
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 10px;
  border: 1px solid #996600;
}
.apply-btn:hover {
  background: linear-gradient(180deg, #E8B84D, #CC9933);
  color: #003366;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}
.benefit-card {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
}
.benefit-card .b-icon { font-size: 22px; margin-bottom: 4px; }
.benefit-card h4 { font-size: 10px; color: #003366; margin-bottom: 3px; }
.benefit-card p { font-size: 9px; color: #666; }

/* ---- PERSONAL BANKING PAGE ---- */
.product-card {
  border: 1px solid #cccccc;
  margin-bottom: 12px;
  background-color: #fff;
}
.product-header {
  background: linear-gradient(180deg, #003366, #004488);
  color: #ffffff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-header h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}
.product-header .rate {
  font-size: 18px;
  font-weight: bold;
  color: #CC9933;
  font-family: Georgia, "Times New Roman", serif;
}
.product-header .rate small {
  font-size: 10px;
  color: #aabbcc;
}
.product-body {
  padding: 12px 15px;
  font-size: 10px;
  color: #444;
  line-height: 1.6;
}
.product-body ul {
  margin: 6px 0 6px 18px;
}
.product-body ul li { margin-bottom: 3px; }
.product-footer {
  padding: 8px 15px;
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
  text-align: right;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  margin: 15px 0;
}
.comparison-table th {
  background: linear-gradient(180deg, #003366, #004488);
  color: #ffffff;
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  border: 1px solid #002244;
}
.comparison-table td {
  padding: 6px 10px;
  border: 1px solid #ddd;
}
.comparison-table tr:nth-child(even) td {
  background-color: #f8f8f8;
}
.comparison-table .check { color: #009900; text-align: center; font-weight: bold; }
.comparison-table .cross { color: #cc0000; text-align: center; }

/* ---- CONTACT PAGE ---- */
.branch-listing {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  background-color: #fff;
}
.branch-header {
  background: linear-gradient(180deg, #f0f4f8, #e8ecf0);
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.branch-header h4 {
  font-size: 12px;
  color: #003366;
}
.branch-header .branch-tag {
  font-size: 8px;
  padding: 2px 6px;
  background-color: #CC9933;
  color: #003366;
  font-weight: bold;
}
.branch-body {
  padding: 10px 12px;
  font-size: 10px;
  color: #555;
  display: flex;
  gap: 20px;
}
.branch-body .branch-info { flex: 1; }
.branch-body .branch-hours {
  width: 180px;
  font-size: 9px;
}
.branch-hours table { width: 100%; }
.branch-hours td { padding: 1px 0; }
.branch-hours td:last-child { text-align: right; }

.contact-form {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 15px 0;
}
.contact-form label {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 3px;
  margin-top: 10px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 4px 6px;
  border: 1px solid #999;
  border-top-color: #666;
  border-left-color: #666;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  background-color: #fff;
}
.contact-form textarea { height: 80px; resize: vertical; }
.contact-form select { width: auto; }
.submit-btn {
  margin-top: 12px;
  padding: 5px 20px;
  background: linear-gradient(180deg, #CC9933, #B8862D);
  color: #003366;
  font-weight: bold;
  font-size: 11px;
  font-family: Verdana, Arial, sans-serif;
  border: 1px solid #996600;
  cursor: pointer;
}
.submit-btn:hover {
  background: linear-gradient(180deg, #E8B84D, #CC9933);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #d4e6c3, #a8c68f, #d4e6c3);
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 12px 0;
  position: relative;
}
.map-placeholder .map-text {
  font-size: 11px;
  color: #555;
  font-style: italic;
  text-align: center;
  line-height: 1.8;
}
.map-roads {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}
.map-road {
  position: absolute;
  background-color: rgba(200,180,150,0.5);
}
.map-road.h1 { top: 40%; left: 0; right: 0; height: 3px; }
.map-road.h2 { top: 70%; left: 0; right: 0; height: 2px; }
.map-road.v1 { left: 30%; top: 0; bottom: 0; width: 3px; }
.map-road.v2 { left: 65%; top: 0; bottom: 0; width: 2px; }
.map-pin {
  position: absolute;
  top: 38%;
  left: 29%;
  font-size: 20px;
  z-index: 1;
}

/* ---- COMMUNITY PAGE ---- */
.program-card {
  border: 1px solid #ddd;
  margin-bottom: 12px;
  background-color: #fff;
  display: flex;
}
.program-icon {
  width: 80px;
  min-height: 80px;
  background: linear-gradient(135deg, #003366, #004488);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.program-content {
  padding: 12px;
  flex: 1;
}
.program-content h4 {
  font-size: 12px;
  color: #003366;
  margin-bottom: 4px;
}
.program-content p {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.event-list { margin: 12px 0; }
.event-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted #ddd;
}
.event-item:last-child { border-bottom: none; }
.event-date-box {
  width: 55px;
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 6px 4px;
  flex-shrink: 0;
}
.event-date-box .e-month { font-size: 9px; text-transform: uppercase; }
.event-date-box .e-day {
  font-size: 18px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", serif;
  color: #CC9933;
}
.event-info h4 { font-size: 11px; color: #003366; margin-bottom: 2px; }
.event-info p { font-size: 10px; color: #555; }
.event-info .event-location { font-size: 9px; color: #999; font-style: italic; }

/* Gallery placeholders */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
.gallery-item {
  height: 100px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}
.gallery-item .g-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,51,102,0.8);
  color: #fff;
  font-size: 8px;
  padding: 3px 5px;
  text-align: center;
}
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #87CEEB, #B0E0F0); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #98D4A8, #4A8C3F); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #FFE0B2, #FFB74D); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #C5CAE9, #7986CB); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #F8BBD0, #F48FB1); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #C8E6C9, #81C784); }

/* ---- GENERAL UTILITIES ---- */
.info-box {
  background-color: #FFFFF0;
  border: 1px solid #e0d8b0;
  padding: 10px 12px;
  font-size: 10px;
  margin: 10px 0;
}
.info-box strong { color: #003366; }

.warning-box {
  background-color: #FFF8F0;
  border: 1px solid #e0c8b0;
  padding: 10px 12px;
  font-size: 10px;
  margin: 10px 0;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.text-small { font-size: 9px; }
.text-muted { color: #999; }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
