:root {
  --navy: #0c234b;
  --red: #bf0d3e;
  --gold: #ffd700;
  --bg: #fbf9f8;
  --text: #1b1c1c;
  --muted: #5a5f69;
  --border: #d9dce2;
  --white: #ffffff;
  --navy-light: #1a3a6a;
  --red-light: #d93865;
}

* { 
  box-sizing: border-box;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

@font-face {
  font-family: 'PatrioticHeading';
  src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fefefe 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  background-attachment: fixed;
}

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

a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(12, 35, 75, 0.1);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 2px rgba(12, 35, 75, 0.1);
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}
.brand:hover::after { display: none; }

.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.menu a {
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.menu a:hover { 
  color: var(--red);
  transform: translateY(-1px);
}

.menu a.btn {
  padding: 0.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.menu a.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.menu a.btn:hover::before {
  left: 100%;
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(191, 13, 62, 0.25);
  position: relative;
  z-index: 1;
}

.btn:hover { 
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(12, 35, 75, 0.35);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(12, 35, 75, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(12, 35, 75, 0.2);
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d2b58 0%, var(--navy) 50%, #0a1f3f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,215,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(191,13,62,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero h1 { 
  margin: 0 0 1.5rem 0; 
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -0.5px;
}

.hero p { 
  color: #e8edf6; 
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section { 
  padding: 4rem 0; 
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card h2, .card h3 {
  margin-top: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p, .card ul {
  margin-bottom: 1.5rem;
}

.card ul {
  padding-left: 1.5rem;
}

.card li {
  margin-bottom: 0.5rem;
  position: relative;
}

.card li::before {
  content: '⭐';
  position: absolute;
  left: -1.5rem;
  color: var(--gold);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-link:hover {
  border-color: var(--navy);
}
.card-link .btn { margin-top: 0.75rem; }

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
  position: relative;
}

.price .small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  color: #7a5600;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(255,215,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.legal-list a { 
  color: var(--navy); 
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: 5rem;
  border-top: 4px solid var(--red);
  background: linear-gradient(135deg, var(--navy) 0%, #0a1f3f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0z' fill='none'/%3E%3Cpath d='M10 3l2 4h-4l2-4z' fill='rgba(255,215,0,0.1)'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.footer .container {
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.small { 
  font-size: 0.9rem; 
  line-height: 1.6;
}

input, select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12, 35, 75, 0.1);
  transform: translateY(-1px);
}

label { 
  font-size: 0.95rem; 
  color: var(--navy);
  font-weight: 600;
  display: block; 
  margin-bottom: 0.5rem;
}

.field { 
  margin-bottom: 1.2rem;
  position: relative;
}

.alert {
  border: 2px solid #d7af00;
  background: linear-gradient(135deg, #fff8da 0%, #fff1cc 100%);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin: 1.2rem 0;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(215, 175, 0, 0.1);
}

.ok { 
  color: #0f6d2a; 
  font-weight: 700;
}

.err { 
  color: #9f102f; 
  font-weight: 700;
}

/* Star rating system */
.stars {
  display: inline-flex;
  gap: 0.2rem;
  margin: 0.5rem 0;
}

.stars span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Flag wave animation */
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

.flag-wave {
  animation: wave 3s ease-in-out infinite;
}

@media (max-width: 760px) {
  .menu { 
    display: none; 
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* service-area map */
.service-area {
  margin: 2.5rem 0;
}
.service-area h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.map-card svg {
  width: 100%;
  height: auto;
  display: block;
}


  margin: 0.7rem 0 1rem;
  transform: scale(0.85);
  transform-origin: left;
}
.err  { color: var(--red); }
.ok   { color: #138000; }
/* City list */
.city-list { text-align:center; margin:1rem 0; }
.city-list p { color:var(--navy); margin:.5rem 0; }
.city-list p:first-child { font-weight:500; line-height:1.8; }

/* Charity / giving-back section */
.charity-section {
  background: linear-gradient(135deg, #0d2b58 0%, var(--navy) 60%, #0a1f3f 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.charity-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.charity-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.charity-section .section-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.charity-section h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.charity-section .charity-intro {
  text-align: center;
  color: #ccdeff;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.charity-section .charity-intro strong {
  color: #fff;
}

.charity-orgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.charity-org-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.charity-org-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.charity-org-card .org-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.charity-org-card .org-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.charity-org-card .org-desc {
  font-size: 0.8rem;
  color: #a8c0e8;
  line-height: 1.4;
}

.charity-cta {
  text-align: center;
  color: #ccdeff;
  font-size: 0.95rem;
  font-style: italic;
}

.charity-cta strong {
  color: var(--gold);
  font-style: normal;
}

.charity-org-card .org-name a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,215,0,0.5);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.charity-org-card .org-name a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.charity-org-card .org-name a::after {
  display: none;
}
