/* ------------------------------
   Base Styles & Variables
------------------------------ */
:root {
  --blue-900: #0b1f33;
  --blue-700: #1f4b80;
  --blue-500: #2f6fb3;
  --blue-100: #e4eef9;
  --accent-gold: #f0b347;
  --bg-main: #f5f7fb;
  --bg-alt: #e9edf5;
  --text-main: #141b2b;
  --text-muted: #5a6475;
  --card-bg: #ffffff;
  --border-subtle: #d3d9e5;
  --shadow-soft: 0 16px 40px rgba(9, 18, 35, 0.12);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --header-height: 76px;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.5;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 31, 51, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-size: cover;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
}

/* Logo image in header */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 42px;   /* main logo size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* (Old text-logo styles kept in case you ever want them) */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(145deg, #2f6fb3, #1f4b80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(5, 15, 30, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Rubik", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(226, 235, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: rgba(225, 235, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
  border-color: var(--accent-gold);
}

/* Header phone */
.header-phone {
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  background: rgba(240, 179, 71, 0.12);
  border: 1px solid rgba(240, 179, 71, 0.5);
  color: #fdf7ea;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.header-phone::before {
  content: "📞";
  font-size: 1rem;
}

/* ------------------------------
   Hero
------------------------------ */
.hero {
  background: radial-gradient(circle at top left, #2f6fb3 0, #0b1f33 40%, #0b1f33 100%);
  color: #ffffff;
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.4vw + 1.4rem, 3.2rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.03rem;
  max-width: 34rem;
  color: rgba(236, 244, 255, 0.9);
  margin-bottom: 1.7rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.7rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-gold), #ffcf6e);
  color: #1a1203;  /* slightly darker for readability */
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(12, 7, 0, 0.45);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.hero-phone-note {
  font-size: 0.9rem;
  color: rgba(228, 235, 250, 0.85);
}

.hero-phone-note span {
  font-weight: 500;
  color: #ffffff;
}

/* Hero highlights */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.2rem;
  font-size: 0.95rem;
  color: rgba(228, 235, 250, 0.9);
}

.hero-highlights li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--accent-gold);
}

/* Hero side panel */
.hero-panel {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.22), rgba(15, 26, 44, 0.9));
  border-radius: 22px;
  padding: 1.2rem 1.3rem 1.4rem;
  border: 1px solid rgba(193, 210, 245, 0.25);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 31, 51, 0.7);
  border: 1px solid rgba(193, 210, 245, 0.4);
  margin-bottom: 1rem;
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  font-size: 0.85rem;
  color: rgba(221, 233, 255, 0.85);
}

.hero-checklist h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.hero-checklist ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(225, 235, 255, 0.95);
}

.hero-checklist li {
  padding: 0.15rem 0;
}

/* ------------------------------
   Sections
------------------------------ */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
  color: var(--blue-900);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ------------------------------
   Services
------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.service-card h3 {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1.1rem;
  margin: 0;
  color: var(--blue-900);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.services-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ------------------------------
   About
------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-text h2 {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1.9rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--blue-900);
}

.about-text p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}

.stat-card ul,
.stat-card ol {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ------------------------------
   Contact
------------------------------ */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.contact-text h2 {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1.85rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--blue-900);
}

.contact-text p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
}

.contact-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.98rem;
  color: var(--blue-900);
  font-weight: 500;
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-footnote {
  margin-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  padding: 1.6rem 0;
  background: #0b1f33;
  color: rgba(220, 235, 255, 0.8);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.footer-small {
  font-size: 0.8rem;
  color: rgba(193, 210, 245, 0.75);
}
/* Facebook link in footer */
.footer-facebook {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #cfe1ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-facebook:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none; /* simple mobile: hide nav links for now */
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.2rem 0 3rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-phone {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }

  .site-logo {
    height: 36px; /* slightly smaller on small screens */
  }
}
