/* Primocap Inc — GVC Capital inspired style */

:root {
  --navy: #1b3a6b;
  --navy-dark: #0f2847;
  --blue-accent: #2b7cd3;
  --text: #383838;
  --text-light: #7a7a7a;
  --border: #e0e0e0;
  --bg-light: #f4f4f4;
  --bg-white: #ffffff;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-hero: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --max-content: 960px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

/* ── Header ── */
.site-header {
  background: var(--bg-white);
  text-align: center;
  padding: 28px 20px 0;
}

.logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.logo-svg {
  height: 72px;
  width: auto;
}

.site-nav {
  border-top: 1px solid var(--border);
  padding: 0 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 16px 22px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.nav-list > li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
  list-style: none;
  text-align: left;
}

.nav-list > li.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown li a:hover {
  background: #f8f8f8;
  color: var(--navy);
}

.dropdown li:last-child a { border-bottom: none; }

.mobile-toggle {
  display: none;
  margin: 12px auto;
  padding: 8px 16px;
  background: none;
  border: 1px solid var(--border);
  font-family: inherit;
  cursor: pointer;
  color: var(--navy);
}

/* ── Hero ── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(15, 40, 71, 0.35), rgba(15, 40, 71, 0.35)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
}

.page-hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 40px 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ── Content ── */
.content-wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.content-wrap h1.page-title,
.content-wrap h2.page-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.content-wrap p {
  margin-bottom: 18px;
}

.content-wrap ul {
  margin: 0 0 18px 24px;
}

.content-wrap ul li {
  margin-bottom: 8px;
}

.content-wrap h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 4px;
}

.content-wrap h5:first-of-type { margin-top: 0; }

.member-role {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 12px;
}

/* Two-column service layout */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.service-main h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.service-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
}

.service-sidebar ul {
  list-style: none;
  margin: 0;
}

.service-sidebar li {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.service-sidebar li a {
  display: block;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
}

.service-sidebar li a:hover,
.service-sidebar li a.active {
  color: var(--navy);
}

/* Services list page */
.services-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.services-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.services-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: bold;
}

.services-list li a {
  color: var(--blue-accent);
  font-size: 16px;
}

/* Transactions table */
.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.transactions-table th,
.transactions-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.transactions-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #1a1a1a;
  background: var(--bg-light);
}

.transactions-table tr:hover td {
  background: #fafafa;
}

/* ── Contact ── */
.contact-section {
  background: var(--bg-light);
  padding: 56px 24px 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: var(--bg-white);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--navy-dark);
  color: #fff;
}

.office-card {
  background: var(--bg-white);
  border-top: 4px solid var(--blue-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 32px 28px;
}

.office-card h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.office-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.office-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--blue-accent);
  margin-top: 2px;
}

.office-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.office-item a {
  color: var(--text);
}

.office-item a:hover { color: var(--blue-accent); }

/* ── Notice box ── */
.notice-box {
  background: #f9f9f9;
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 40px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: start;
}

.footer-about p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-about .copyright {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--text-light);
}

.footer-contact a:hover { color: var(--blue-accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 12px;
  }

  .nav-list.open { display: flex; }

  .nav-list > li > a {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    display: block;
    padding-left: 16px;
  }

  .nav-list > li.has-dropdown:hover .dropdown { display: block; }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
