/* ==========================================================================
   Golden Account — Custom CSS
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444f60;
  line-height: 1.6;
  background: #fff;
}

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

a {
  color: #4fc1ea;
  text-decoration: none;
}

a:hover {
  color: #3aadd6;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444f60;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.subtitle {
  color: #999;
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-grey {
  background: #fbfbfb;
}

.text-center {
  text-align: center;
}

.divider {
  width: 60px;
  height: 3px;
  background: #f39200;
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ---------- Navbar ---------- */
.navbar {
  z-index: 100;
  background: transparent;
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo img {
  height: 128px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  color: #444f60;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #4fc1ea;
}

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #444f60;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .navbar-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-links.is-open {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: #444f60;
}

.hero-subtitle {
  margin-bottom: 1.5rem;
}

.hero-illustration img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-illustration {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 500px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: #e1b023;
  color: #fff;
  box-shadow: 0 4px 12px rgba(225, 176, 35, 0.3);
}

.btn-primary:hover {
  background: #c99b1e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #e1b023;
  border: 2px solid #e1b023;
}

.btn-outline:hover {
  background: #e1b023;
  color: #fff;
}

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header .subtitle {
  font-size: 1.15rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
}

.service-item img {
  width: 64px;
  height: 64px;
}

.service-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #444f60;
}

.service-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
}

/* ---------- About ---------- */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}

/* ---------- Contact ---------- */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #344258;
  color: #fff;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 1rem;
}

.footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer h4 {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.footer p,
.footer a {
  color: #aab3bf;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a:hover {
  color: #fff;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 1rem;
  }
}

/* ---------- Content pages (privacy, terms) ---------- */
.content-page {
  padding-top: calc(64px + 3rem);
  padding-bottom: 3rem;
  min-height: 60vh;
}

.content-page h1 {
  margin-bottom: 0.5rem;
}

.content-page .subtitle {
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose strong {
  font-weight: 700;
}

.prose a {
  color: #4fc1ea;
  text-decoration: underline;
}

.prose a:hover {
  color: #3aadd6;
}

/* ---------- Language Switcher ---------- */
.lang-switch {
  border-left: 1px solid #ddd;
  padding-left: 2rem !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .lang-switch {
    border-left: none;
    padding-left: 0 !important;
  }
}