html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  color: #0a3d62;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(10,61,98,0.06);
}
a {
    text-decoration: none;

}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  max-height: 38px;
  width: auto;
  margin-right: 0.7rem;
  vertical-align: middle;
  display: inline-block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
    font-size: 1.2em;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3ab0ca, #0a3d62);
  transition: width 0.3s;
  border-radius: 2px;
  margin-top: 2px;
}
.nav-links a:hover {
  color: #3ab0ca;
}
.nav-links a:hover::after {
  width: 100%;
}

.parallax-section {
  width: 100vw;
  min-height: 60vh;
  height: 100vh;
  position: relative;
  left: 0;
  right: 0;
  margin: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-bg.parallax-section {
  background-image: url('assets/bg-1.jpg');
}
.bg2-parallax.parallax-section {
  background-image: url('assets/bg-2.jpg');
  min-height: 40vh;
  height: 60vh;
}
.hero-content.left-align {
  align-items: flex-start;
  text-align: left;
  max-width: 700px;
  margin-left: 8vw;
  margin-right: auto;
  padding: 3rem 2rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-bg.parallax-section::before,
.bg2-parallax.parallax-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,61,98,0.38);
  z-index: 1;
}
.hero-content.left-align h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 6px 32px rgba(10,61,98,0.45);
  letter-spacing: 1px;
}
.hero-content.left-align p {
  font-size: 1.5rem;
  color: #e3f0ff;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(10,61,98,0.25);
}
.cta-btn.hero-btn, .contact-form button {
  background: #0a3d62;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  box-shadow: none;
  transition: background 0.18s, transform 0.18s;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.cta-btn.hero-btn:hover, .contact-form button:hover {
  background: #3ab0ca;
  color: #0a3d62;
  transform:scale(1.05);
}
.section {
  max-width: 1250px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(10,61,98,0.07);
  margin-bottom: 2.5rem;
  animation: fadeInSection 1.2s cubic-bezier(.4,0,.2,1);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-img {
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(10,61,98,0.10);
}
.about-text {
  flex: 1;
}
.about-img-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space between images */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 5px;
  margin-top: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(10,61,98,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  padding-bottom: 1.5rem;
}
.service-card img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.service-card h3 {
  margin: 1.2rem 0 0.5rem 0;
  font-size: 1.08rem;
  color: #0a3d62;
  font-weight: 700;
}
.service-card p {
  display: none;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(72,219,251,0.15);
}
.section#contact {
  background: linear-gradient(120deg, #f8fafc 60%, #e3f0ff 100%);
  box-shadow: 0 4px 32px rgba(10,61,98,0.10);
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}
.contact-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.contact-form {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 800px;
  background: rgba(255,255,255,0.65);
  padding: 2.2rem 1.7rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(10,61,98,0.10);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  backdrop-filter: blur(6px);
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1.5px solid #b2bec3;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  background: rgba(248,250,252,0.85);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #3ab0ca;
  box-shadow: 0 2px 12px #3ab0ca33;
  outline: none;
  background: #fff;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  background: linear-gradient(90deg, #0A3D62, #3ab0ca);
  color: #fff;
  margin-top: 3rem;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 16px rgba(10,61,98,0.07);
}
@keyframes fadeInSection {
  from { opacity: 0; transform: scale(0.98) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .section {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
  .about-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 0.7rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: flex !important;
    background: none;
    border: none;
    position: static;
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    box-shadow: none;
    z-index: 1;
  }
  .nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #0a3d62;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    display: block;
  }
  .parallax-section {
    background-attachment: scroll;
    min-height: 40vh;
    height: 40vh;
  }
  .hero-content.left-align {
    margin-left: 2vw;
    padding: 2rem 1rem;
  }
  .hero-content.left-align h1 {
    font-size: 2.1rem;
  }
  .hero-content.left-align p {
    font-size: 1.1rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section#contact {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0.5rem;
  }
  .contact-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-form, .contact-info {
    max-width: 100%;
    min-width: 0;
  }
  .nav-phone-btn {
    font-size: 1em;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
  }
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,61,98,0.18);
    z-index: 1200;
    transition: opacity 0.3s;
  }
  .mobile-nav-overlay.active {
    display: block;
    opacity: 1;
  }
  .mobile-nav-sidebar {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 70vw;
    max-width: 340px;
    background: #fff;
    box-shadow: 2px 0 24px rgba(10,61,98,0.13);
    z-index: 1201;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    border-radius: 0 18px 18px 0;
  }
  .mobile-nav-sidebar.active {
    transform: translateX(0);
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.2rem;
    gap: 0.7rem;
  }
  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .mobile-nav-links a {
    font-size: 1.25em;
    color: #0a3d62;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 0.2rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    display: block;
  }
  .mobile-nav-links a:hover {
    background: #e3f0ff;
    color: #3ab0ca;
  }
  .mobile-nav-phone {
    margin-top: auto;
    background: #0a3d62;
    color: #fff;
    font-size: 1.08em;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 2px 8px rgba(10,61,98,0.08);
    transition: background 0.18s, color 0.18s, transform 0.18s;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .mobile-nav-phone:hover {
    background: #3ab0ca;
    color: #0a3d62;
    transform: scale(1.05);
  }
  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none !important;
  }
  #langSwitcher {
    margin-left: 0.5rem;
    height: 38px;
    font-size: 1em;
    min-width: 54px;
  }
}
@media (max-width: 600px) {
  .parallax-section {
    min-height: 18vh;
    height: 18vh;
  }
  .hero-content.left-align {
    margin-left: 0.5vw;
    padding: 1.2rem 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 140px;
  }
}
.parallax-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 100px;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(10, 61, 98, 0.10);
    color: #fff;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    flex-direction: column;
    align-content: flex-start;
}
.parallax-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.parallax-text p {
  font-size: 1.15rem;
  color: #e3f0ff;
  margin-bottom: 0.5rem;
}
.parallax-cta {
  display: inline-block;
  margin-top: 1.2rem;
  background: #3ab0ca;
  color: #0a3d62;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.parallax-cta:hover {
  background: #0a3d62;
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 700px) {
    .hero {
    margin-top: 60px;
    }
  .navbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
  }
  .logo-img {
    max-height: 30px;
    margin-right: 0.4rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .section {
    max-width: 100vw;
    padding: 1.2rem 5vw;
    margin: 1.2rem 0.2rem;
    border-radius: 12px;
  }
  .about-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .about-img {
    max-width: 80vw;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
    border-radius: 10px;
  }
  .about-text {
    font-size: 1.1em;
    padding: 0 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .service-card {
    max-width: 100%;
    border-radius: 10px;
    padding-bottom: 1rem;
    margin: 0 auto 1.2rem auto;
    background: #fff;
    box-shadow: 0 2px 12px rgba(10,61,98,0.06);
  }
  .service-card img {
    width: 80vw;
    max-width: 80vw;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    display: block;
  }
  .service-card h3 {
    font-size: 1em;
    margin: 0.7rem 0 0.3rem 0;
    padding: 0 0.5rem;
  }
  .parallax-section {
    min-height: 60vh;
    height: 60vh;
    padding: 0;
  }
  .parallax-text {
    max-width: 90vw;
    padding: 1.2rem 5vw;
    border-radius: 10px;
    font-size: 1em;
    margin: 0 0.2rem;
    text-align: left;
  }
  .parallax-text h2 {
    font-size: 1.1rem;
  }
  .parallax-cta {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }
  .hero-bg.parallax-section {
    min-height: 60vh;
    height: 60vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .hero-content.left-align {
    padding: 2.2rem 5vw;
    margin-left: 0;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
  }
  .hero-content.left-align h1 {
    font-size: clamp(1.2rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }
  .hero-content.left-align p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 1.2rem;
  }
  .cta-btn.hero-btn {
    font-size: 1em;
    padding: 0.7rem 1.2rem;
    border-radius: 7px;
  }
  .contact-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .contact-form, .contact-info {
    max-width: 100%;
    min-width: 0;
    padding: 1rem 0.5rem;
    border-radius: 10px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 1em;
    padding: 0.7rem;
  }
  .contact-info {
    grid-template-columns: 1fr;
    gap: 0.7rem 0;
    font-size: 1em;
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .contact-label {
    font-size: 1em;
  }
  .contact-info-item {
    font-size: 1em;
  }
  footer {
    font-size: 0.95em;
    padding: 1.2rem 0 0.7rem 0;
    border-radius: 10px 10px 0 0;
  }
}
.services-subtitle {
  color: #3ab0ca;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  margin-left: 0.2rem;
  text-align: center;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 3.5rem;
  background: rgba(255,255,255,0.55);
  padding: 2.2rem 1.7rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(10,61,98,0.08);
  margin: 0 auto;
  font-size: 1.18rem;
  min-width: 220px;
  max-width: 500px;
  backdrop-filter: blur(6px);
  justify-items: start;
  align-items: flex-start;
}
.contact-info-item {
  font-size: 1em;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}
.contact-label {
  font-size: 1.10em;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.contact-label i {
  font-size: 1.1em;
  color: #3ab0ca;
}
.contact-info-item a {
  color: #0a3d62;
  font-weight: 600;
  word-break: break-all;
}
@media (max-width: 700px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
    font-size: 1.08rem;
    padding: 1.9rem 1.7rem;
    max-width: 100%;
  }
  .contact-label {
    font-size: 1.08em;
  }
}
.nav-phone-btn {
  background: #0a3d62;
  color: #fff;
  font-weight: 600;
  font-size: 1.08em;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.3rem;
  margin-left: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 8px rgba(10,61,98,0.08);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-phone-btn:hover {
  background: #3ab0ca;
  color: #0a3d62;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .nav-phone-btn {
    font-size: 1em;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    padding: 15px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
  }
  .nav-phone-btn {
    margin: 1rem 0 0 0;
    width: 100%;
    justify-content: center;
    width: max-content;
  }
}
@media (min-width: 901px) {
  .nav-toggle,
  .mobile-nav-overlay,
  .mobile-nav-sidebar {
    display: none !important;
  }
}

/* Desktop/Tablet Nav */
.desktop-nav {
  display: flex;
}

#fabSection {
  position: fixed !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  padding: 2.2rem 1.2rem 2.2rem 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 1rem !important;
  z-index: 99999 !important;
  pointer-events: none;
}
#fabSection > * {
  pointer-events: auto;
}
#goTopBtn, .fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0a3d62;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(10,61,98,0.13);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s, background 0.18s, color 0.18s, transform 0.18s;
  margin: 0;
  outline: none;
  text-decoration: none;
}
/* #goTopBtn {
  opacity: 0;
  pointer-events: none;
}
#goTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
} */
#goTopBtn:focus, #goTopBtn:hover,
.fab-btn:focus, .fab-btn:hover {
  background: #3ab0ca;
  color: #0a3d62;
  transform: scale(1.08);
}
@media (max-width: 700px) {
  #fabSection {
    bottom: 3rem !important;
    gap: 0.7rem;
  }
  #goTopBtn, .fab-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

.mobile-nav-info {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.02em;
  color: #0a3d62;
  margin-top: 0.7em;
  margin-bottom: 0.1em;
  font-weight: 500;
  word-break: break-all;
}
.mobile-nav-info i {
  color: #3ab0ca;
  font-size: 1.2em;
}

#langSwitcher {
  margin-left: 1rem;
  padding: 0.35em 1.2em 0.35em 0.7em;
  border-radius: 8px;
  border: 1.5px solid #3ab0ca;
  background: #fff;
  color: #0a3d62;
  font-size: 1em;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border 0.18s, box-shadow 0.18s;
  height: 38px;
  min-width: 60px;
  box-shadow: 0 2px 8px rgba(10,61,98,0.06);
}
#langSwitcher:focus {
  border: 1.5px solid #0a3d62;
  box-shadow: 0 2px 12px #3ab0ca33;
}

.daikin-section {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(10,61,98,0.07);
}
.daikin-inner {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
.daikin-text {
  flex: 1 1 320px;
  padding: 1.2rem 0.5rem;
  font-size: 1.15em;
}
.daikin-text h2 {
  font-size: 2em;
  color: #0a3d62;
  margin-bottom: 1.1rem;
  font-weight: 800;
}
.daikin-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space between the two images */
  max-width: 50%;
    align-items: center;
}
.daikin-img {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(10,61,98,0.10);
}
@media (max-width: 900px) {
  .daikin-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .daikin-img-wrap {
    max-width: 100%;
  }
  .daikin-img {
    max-width: 80%;
    margin:auto;
    border-radius: 12px;
  }
  .daikin-section {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
  }
  .daikin-text {
    padding: 0.5rem 0.2rem;
    font-size: 1.05em;
  }
}
.success-message {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
}
.error-message {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 18px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(10,61,98,0.15);
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover,
.close:focus {
  color: #0a3d62;
  text-decoration: none;
}

.modal-content h2 {
  color: #0a3d62;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8em;
}

.modal .contact-form {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .modal-content {
    margin: 2rem auto;
    padding: 1.5rem;
    width:auto;
    max-width: none;
    border-radius: 12px;
    height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  
  .modal-content h2 {
    font-size: 1.5em;
  }
}