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

:root {
  /* Light theme (default) */
  --navy:   #1a2e4a;
  --gold:   #c9a84c;
  --gold-light: #e8c97a;
  --white:  #ffffff;
  --off-white: #f7f5f0;
  --gray:   #5a6a7a;
  --light-gray: #e8ecf0;
  --text-primary: #2c3e50;
  --text-secondary: #5a6a7a;
  --bg-primary: #ffffff;
  --bg-secondary: #f7f5f0;
  --hero-gradient-start: #1a2e4a;
  --hero-gradient-mid: #2c4a6e;
  --hero-gradient-end: #3a6491;
  --hero-tagline: #a8c4e0;
  --hero-location: #c8d8e8;
  --contact-text: #a8c4e0;
  --footer-bg: #0f1c2e;
  --footer-text: #7a9ab8;
  --card-border: rgba(255,255,255,0.12);
  --card-bg: rgba(255,255,255,0.07);
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark theme */
    --navy:   #2d4a6e;
    --gold:   #e8c97a;
    --gold-light: #f5d999;
    --white:  #e8eaed;
    --off-white: #1e1e1e;
    --gray:   #b3bac1;
    --light-gray: #2a2a2a;
    --text-primary: #e8eaed;
    --text-secondary: #b3bac1;
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --hero-gradient-start: #0a1929;
    --hero-gradient-mid: #1a2e4a;
    --hero-gradient-end: #2d4a6e;
    --hero-tagline: #8bb4e0;
    --hero-location: #a8c4e0;
    --contact-text: #8bb4e0;
    --footer-bg: #0a0a0a;
    --footer-text: #9ab3cc;
    --card-border: rgba(255,255,255,0.15);
    --card-bg: rgba(255,255,255,0.05);
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Navigation (Mobile First) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background-color: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.navbar-brand .seal-icon {
  font-size: 1.5rem;
}

.navbar-links {
  display: none; /* Hidden on mobile, shown on tablet+ */
  list-style: none;
  gap: 1.5rem;
}

.navbar-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--gold-light);
}

/* ===== Hero Section (Mobile First) ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 60%, var(--hero-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  max-width: 100%;
  padding: 0 0.5rem;
}

.hero-profile {
  width: 100px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 10vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-tagline {
  font-size: clamp(0.95rem, 4vw, 1.3rem);
  color: var(--hero-tagline);
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--hero-location);
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  max-width: 280px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  width: 100%;
  max-width: 280px;
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
}

/* ===== Section Shared (Mobile First) ===== */
section {
  padding: 3rem 1.2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 0 0.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== Services Section (Mobile First) ===== */
.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-top-color: var(--gold);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* ===== Why Choose Us (Mobile First) ===== */
.why-us {
  background: var(--bg-primary);
}

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

.why-item {
  text-align: center;
  padding: 1.2rem;
}

.why-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.why-item h3 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.why-item p {
  color: var(--text-secondary);
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
}

/* ===== Service Area (Mobile First) ===== */
.service-area {
  background: var(--bg-secondary);
}

.area-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.area-content > p {
  color: var(--text-secondary);
  font-family: 'Arial', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.area-tag {
  background: var(--bg-primary);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.availability-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
}

/* ===== Contact Section (Mobile First) ===== */
.contact {
  background: var(--navy);
  color: var(--white);
}

.contact .section-header h2 {
  color: var(--white);
}

.contact .section-header p {
  color: var(--contact-text);
}

.contact .divider {
  background: var(--gold);
}

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

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.contact-card:hover {
  background: var(--card-border);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-card h3 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.6rem;
}

.contact-card a,
.contact-card p {
  color: var(--white);
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
}

.contact-card a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.contact-card .sub {
  font-size: 0.8rem;
  color: var(--contact-text);
  margin-top: 0.3rem;
}

/* ===== Footer (Mobile First) ===== */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
}

footer strong {
  color: var(--gold-light);
}

/* Footer credentials spacing */
footer p.credentials {
  margin-top: 0.4rem;
}

/* ===== Responsive Design - Mobile First ===== */
/* Tablet and up (640px+) */
@media (min-width: 640px) {
  /* Navigation */
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
    gap: 0.65rem;
  }

  .navbar-brand .seal-icon {
    font-size: 1.6rem;
  }

  .navbar-links {
    display: flex; /* Show navigation on tablet+ */
  }

  /* Hero */
  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-profile {
    width: 120px;
    height: 170px;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.1rem;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  /* Sections */
  section {
    padding: 4rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
  }

  /* Services Grid - 2 columns on tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  .service-icon {
    font-size: 2.4rem;
  }

  /* Why Grid - 2 columns on tablet */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .why-number {
    font-size: 2.8rem;
  }

  /* Service Areas */
  .area-content > p {
    font-size: 1rem;
  }

  .areas-list {
    gap: 0.7rem;
  }

  .area-tag {
    font-size: 0.88rem;
    padding: 0.45rem 1rem;
  }

  .availability-note {
    font-size: 0.88rem;
    padding: 0.6rem 1.4rem;
  }

  /* Contact Grid - 2 columns on tablet (3rd card wraps) */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .contact-icon {
    font-size: 2.1rem;
  }

  /* Footer */
  footer {
    padding: 1.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  /* Navigation */
  .navbar {
    padding: 1rem 2rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
    gap: 0.75rem;
  }

  .navbar-brand .seal-icon {
    font-size: 1.8rem;
  }

  .navbar-links {
    gap: 2rem;
  }

  .navbar-links a {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    padding: 6rem 2rem 4rem;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-profile {
    width: 140px;
    height: 200px;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    margin: 1rem 0 2rem;
  }

  .hero-location {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.9rem 2rem;
  }

  /* Sections */
  section {
    padding: 5rem 2rem;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .section-label {
    letter-spacing: 3px;
  }

  .section-header p {
    font-size: 1.05rem;
  }

  /* Services Grid - 3 columns on desktop */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  /* Why Grid - 4 columns on desktop */
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .why-item {
    padding: 1.5rem;
  }

  .why-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  .why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .why-item p {
    font-size: 0.9rem;
  }

  /* Service Areas */
  .area-content > p {
    margin-bottom: 2rem;
  }

  .areas-list {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .area-tag {
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem;
  }

  .availability-note {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

  /* Contact Grid - 3 columns on desktop */
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .contact-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .contact-card a,
  .contact-card p {
    font-size: 1.05rem;
  }

  .contact-card .sub {
    font-size: 0.85rem;
  }

  /* Footer */
  footer {
    padding: 2rem;
    font-size: 0.875rem;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero-content {
    max-width: 850px;
  }

  .services-grid,
  .why-grid,
  .contact-grid {
    max-width: 1200px;
  }
}

