:root {
--midnight: #0b2c47;
--forest: #1f4d2e;
--wheat: #d4a017;
--charcoal: #333333;
--offwhite: #f7f7f5;
--beige: #f3eee6;
--white: #ffffff;
--shadow: rgba(0, 0, 0, 0.25);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
}

body {
font-family: "Montserrat", sans-serif;
color: var(--charcoal);
background-color: var(--offwhite);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}

/* Header Styles */
.header {
position: sticky;
top: 0;
z-index: 50;
background-color: rgba(255, 255, 255, 0.9);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
box-shadow: 0 2px 4px var(--shadow);
transition: transform 0.3s ease;
}

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

.brand {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
color: var(--forest);
font-weight: 700;
font-size: 1.25rem;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px; 
}

.nav-links {
display: none;
align-items: center;
gap: 2rem;
font-size: 0.875rem;
}

.nav-links a {
color: var(--charcoal);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
color: var(--forest);
transform: translateY(-2px);
}

.nav-links .active {
color: var(--forest);
font-weight: 700;
}

.cta-btn {
background-color: var(--forest);
color: var(--white);
padding: 0.625rem 1.25rem;
border-radius: 6px;
font-weight: 700;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.2s ease;
border: none;
cursor: pointer;
}

.cta-btn:hover {
background-color: #1a3c26;
transform: translateY(-2px);
}

.menu-toggle {
display: block;
background: none;
border: none;
cursor: pointer;
color: var(--forest);
transition: transform 0.3s ease;
}

.menu-toggle:hover {
transform: scale(1.1);
}

.menu-toggle svg {
width: 28px;
height: 28px;
}

#mobileDrawer {
position: fixed;
top: 64px;
left: 0;
width: 100%;
height: calc(100vh - 64px);
background-color: var(--white);
padding: 1rem 0;
box-shadow: 0 4px 6px var(--shadow);
transform: translateX(-100%);
transition: transform 0.3s ease-in-out;
display: flex;
flex-direction: column;
z-index: 40;
}

#mobileDrawer.is-open {
transform: translateX(0);
}

#mobileDrawer a {
display: block;
padding: 0.75rem 1.5rem;
font-weight: 600;
color: var(--charcoal);
text-decoration: none;
transition: background-color 0.2s ease;
}

#mobileDrawer a:hover {
background-color: var(--offwhite);
}

#mobileDrawer .cta-btn {
margin: 1rem 1.5rem;
}

@media (min-width: 768px) {
.nav-links {
    display: flex;
}

.menu-toggle {
    display: none;
}
}

/* Main Content */
.hero-contact {
background-color: var(--beige);
text-align: center;
padding: 6rem 1.5rem;
}

.hero-contact h1 {
font-size: 3rem;
font-weight: 800;
color: var(--forest);
margin-bottom: 1rem;
animation: fadeInDown 0.8s ease-out;
}

.hero-contact p {
font-size: 1.1rem;
color: var(--charcoal);
max-width: 600px;
margin: 0 auto;
animation: fadeInDown 0.8s ease-out 0.2s;
animation-fill-mode: forwards;
opacity: 0;
}

.contact-section {
padding: 5rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
}

@media (min-width: 768px) {
.contact-grid {
    grid-template-columns: 1fr 1.5fr;
}
}

.contact-info h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
color: var(--forest);
animation: fadeInRight 0.8s ease-out;
}

.info-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
animation: fadeInRight 0.8s ease-out 0.2s;
animation-fill-mode: forwards;
opacity: 0;
}

.info-item:nth-of-type(2) { animation-delay: 0.4s; }
.info-item:nth-of-type(3) { animation-delay: 0.6s; }

.info-icon {
background-color: var(--wheat);
padding: 0.75rem;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
transform: scale(1.1) rotate(5deg);
}

.info-icon svg {
width: 24px;
height: 24px;
fill: var(--forest);
}

.info-text h3 {
font-size: 1.25rem;
font-weight: 700;
color: var(--charcoal);
}

.info-text p {
font-size: 1rem;
color: var(--charcoal);
margin-top: 0.25rem;
}

.info-text a {
font-weight: 600;
color: var(--forest);
text-decoration: none;
transition: color 0.3s ease;
}

.info-text a:hover {
color: var(--midnight);
}

.social-links {
display: flex;
gap: 1.5rem;
margin-top: 3rem;
animation: fadeInRight 0.8s ease-out 0.8s;
animation-fill-mode: forwards;
opacity: 0;
}

.social-icon {
width: 40px;
height: 40px;
background-color: var(--white);
border: 2px solid var(--offwhite);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.social-icon:hover {
background-color: var(--forest);
border-color: var(--forest);
transform: translateY(-5px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon svg {
fill: var(--charcoal);
transition: fill 0.3s ease;
}

.social-icon:hover svg {
fill: var(--white);
}

.contact-form-container {
padding: 2rem;
background-color: var(--white);
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
animation: scaleIn 0.8s ease-out;
}

.contact-form-container form {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-label {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.contact-form-container input,
.contact-form-container textarea,
.contact-form-container select {
width: 100%;
padding: 1rem;
border: 1px solid var(--beige);
border-radius: 6px;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus,
.contact-form-container select:focus {
outline: none;
border-color: var(--forest);
box-shadow: 0 0 0 2px rgba(31, 77, 46, 0.2);
}

.contact-form-container textarea {
min-height: 150px;
resize: vertical;
}

.contact-form-container .cta-btn {
width: 100%;
padding: 1rem;
font-size: 1.125rem;
font-weight: 700;
}

.message-box {
position: fixed;
bottom: 2rem;
right: 2rem;
background-color: var(--forest);
color: var(--white);
padding: 1rem 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
z-index: 100;
transition: all 0.5s ease-in-out;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
}

.message-box.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.map-section {
padding: 5rem 0;
}

.map-section h2 {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 2.5rem;
color: var(--forest);
animation: fadeIn 0.8s ease-out;
}

.map-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 6px 15px var(--shadow);
background-color: var(--beige);
}

.map-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--beige);
transition: opacity 0.3s ease;
}

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

.map-placeholder-text p {
margin-bottom: 1rem;
font-weight: 600;
font-size: 1.1rem;
}

.map-frame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
opacity: 0;
transition: opacity 0.5s ease;
}

.map-frame.active {
opacity: 1;
}

.map-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}

/* Footer */
.footer {
background-color: var(--white);
padding: 3rem 0;
}

.footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}

.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
font-size: 0.875rem;
}

.footer-links a {
color: #6b7280;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--forest);
}

.copyright {
font-size: 0.875rem;
color: #6b7280;
text-align: center;
}

@media (min-width: 576px) {
.footer-content {
    flex-direction: row;
    justify-content: space-between;
}
.footer-links {
    gap: 1.5rem;
}
}

/* Animations */
@keyframes fadeInDown {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes fadeInLeft {
from {
    opacity: 0;
    transform: translateX(-20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

@keyframes fadeInRight {
from {
    opacity: 0;
    transform: translateX(20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

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

@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

@keyframes scaleIn {
from {
    opacity: 0;
    transform: scale(0.9);
}
to {
    opacity: 1;
    transform: scale(1);
}
}

.animate-on-scroll {
opacity: 0;
transform: translateY(50px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
opacity: 1;
transform: translateY(0);
}

/* Footer */
    footer {
      background: var(--midnight);
      color: rgba(255,255,255,0.9);
      padding: 40px 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr auto;
      }
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 10px;
    }
    .social-link {
      width: 24px;
      height: 24px;
      color: rgba(255,255,255,0.6);
      transition: transform 0.2s ease, color 0.2s ease;
    }
    .social-link:hover {
      color: var(--white);
      transform: translateY(-2px);
    }

    .terms-notice{
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}
    /* Utilities */
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  