.site-header {
    position: fixed;
    top: 20px;   /* floats below the top */
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: white;
    padding: 12px 20px;
    border-radius: 18px;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.navbar {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    align-items: center;
}

.header-col {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo {
    padding: 0;
    background: none;
    border: none;
}

.logo span {
    font-weight: 800;
    font-size: 20px;
    color: #0A4B74; /* #213B8F; #1A2A6C; #2B2B2B; */
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 26px;
    background: #d7f4ff;
    padding: 10px 25px;
    border-radius: 30px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #2B2B2B; /* warm brown #5A3A31; Teal-Navy Hybrid #2B2B2B; */
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    background: #e8d7cf;
    color: #D2691E; /* chestnut orange */
}

.diamond {
    width: 8px;
    height: 8px;
    background: black;   /* #cda385; */
    transform: rotate(45deg);
    display: inline-block;
    transition: 0.3s ease;
}

.nav-links li a:hover .diamond {
    background: #A54B17; /* darker robin tone */
}

/* Dropdown base */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #f0e4dd; /* soft robin-cream */
    padding: 10px 0;
    border-radius: 12px;
    list-style: none;
    width: 220px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #5A3A31;  /* warm robin brown */
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #e8d7cf; /* soft warm highlight */
    color: #D2691E;       /* robin orange */
}

/* Horizontal Bar Heading */
.section-heading {
    width: 100%;
    background: #f0e4dd;             /* soft cream tone */
    padding: 0px 0px 0px 0px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.section-heading h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #1A2A6C;                  /* deep navy blue */
    letter-spacing: 1px;
}

/* First Section – Two Column Layout */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* padding: 120px 40px;  Extra top for floating header */
    padding: 120px 40px 20px 40px;
}

/* Left Column */
.about-left {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Text Overlay on Image */
.about-overlay {
    position: absolute;
    bottom: 150px;
    left: 180px;
    color: white;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8);
}

.overlay-big {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.overlay-sub {
    font-size: 18px;
    font-weight: 500;
    margin-top: 8px;
}

/* Right Column */
.about-right {
    flex: 1;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

/* Badges */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    background: #F0E4DD;  /* Soft robin-inspired */
    color: #5A3A31;        /* Warm brown text */
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-overlay {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}

/* SERVICES SECTION */
.services-section {
    /* padding: 80px 40px; top; right; bottom; left; */
    padding: 0px 40px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Each row = 2 columns */
.service-row {
    display: grid;
    grid-template-columns: 1fr 2fr;  /* ratio 1:2 */
    gap: 30px;
    align-items: center;
}

/* Left column image */
.service-img img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Right column text */
.service-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A2A6C; /* deep navy */
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Make responsive */
@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* CONTACT GRID (icons + details) */
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-icon { 
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #F0E4DD; /* soft robin cream */
}

.contact-info h4 {
  margin: 0;
  font-size: 14px;
  color: #1A2A6C;
  font-weight: 700;
}
.contact-info p {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #333;
}
.contact-info a { color: #1A2A6C; text-decoration: none; }

/* Map wrapper */
.map-wrap {
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* CONTACT FORM STYLES */
.form-field small.error {
    color: #cc0000;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.form-field input.error,
.form-field textarea.error {
    border: 2px solid #cc0000 !important;
}

.contact-form-section .form-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-section h2 {
  margin-top: 0;
  color: #1A2A6C;
  font-size: 26px;
}

/* Form elements */
.contact-form-section label {
  display:block;
  margin-top: 12px;
  font-weight: 600;
  color: #333;
}
.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}
.contact-form-section small { color: #666; }

/* Buttons and status */
.form-actions {
  margin-top: 14px;
  display:flex;
  gap:12px;
  align-items:center;
}
.btn.primary {
  background:#1A2A6C;
  color:white;
  padding:10px 16px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:700;
}
#formStatus { font-size:14px; color:#1A2A6C; }

/* Responsive */
@media (max-width: 900px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-section .form-card { padding: 18px; }
}

/* Footer styling */
.site-footer {
  background: #f8f3ef;
  padding: 40px 40px 20px;
  margin-top: 60px;
  border-top: 3px solid #ddd;
  color: #333;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #1A2A6C;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1A2A6C;
}

.footer-brand {
  color: #1A2A6C;
  font-size: 24px;
  font-weight: bold;
}

.footer-tagline {
  font-size: 14px;
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-placeholder {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #1A2A6C;
  color: white;
  border-radius: 6px;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 600px;
  width: 90%;
  z-index: 9999;
  text-align: center;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 0;
}

.cookie-banner .btn.secondary {
  background: #f0e4dd;
  color: #333;
}

.cookie-banner a {
  font-size: 14px;
  color: #1A2A6C;
  text-decoration: none;
}

.accessibility-btn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background: #1A2A6C;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}

.accessibility-panel {
  position: fixed;
  right: 20px;
  bottom: 160px;
  width: 220px;
  padding: 14px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

.accessibility-panel button {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: none;
  background: #f0e4dd;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.high-contrast {
  filter: invert(100%) hue-rotate(180deg);
}

.no-animations * {
  animation: none !important;
  transition: none !important;
}


/* Section Styling 
.section {
    padding: 80px 20px;
    margin-top: 20px;
}

.section:first-of-type {
    padding-top: 160px;
}*/
