/* ============================================
   CONTACT PAGE STYLES
   Standalone CSS for contact.html
   ============================================ */

/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  padding-top: 90px;
  background: #f8f9fa;
}

/* ----- HEADER (Fixed) - Updated to match index ----- */
header {
  background: #ffffff;
  color: #081a2c;
  padding: 8px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  min-height: 90px;
  max-height: 90px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #081a2c;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #081a2c;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 9999;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #081a2c;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #081a2c;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f0c040;
}

.phone {
  font-weight: bold;
  color: #f0c040;
  font-size: 15px;
  flex-shrink: 0;
}

/* ----- PAGE HEADER ----- */
.page-header {
  background: #081a2c;
  padding: 120px 8% 60px;
  text-align: center;
  border-bottom: 3px solid #f0c040;
}

.page-header h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
}

.page-header h1 span {
  color: #f0c040;
  font-weight: 700;
}

.page-header .subtitle {
  color: #d8dde8;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 300;
}

/* ----- CONTACT SECTION ----- */
.contact-section {
  padding: 70px 8%;
  background: #f8f9fa;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Left Column - Info */
.contact-info .disclaimer {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  padding: 20px 25px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #f0c040;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.offices-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.office-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.office-card:hover {
  transform: translateY(-3px);
}

.office-card h3 {
  color: #081a2c;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-card h3 i {
  color: #f0c040;
  font-size: 22px;
}

.office-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.directions-link {
  color: #f0c040;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.directions-link:hover {
  color: #081a2c;
}

/* Contact CTA */
.contact-cta {
  background: #081a2c;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.contact-cta .phone-number {
  color: #f0c040;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.contact-cta .phone-number:hover {
  color: #fff;
}

/* Right Column - Form */
.contact-form-wrapper {
  background: #fff;
  padding: 45px 45px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  color: #081a2c;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #081a2c;
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: #e74c3c;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #222;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f0c040;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 192, 64, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
}

/* Disclaimer Checkbox */
.disclaimer-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #555 !important;
  padding: 5px 0;
}

.disclaimer-label input {
  display: none;
}

.checkmark {
  min-width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  background: #fff;
  transition: all 0.3s ease;
  margin-top: 1px;
  flex-shrink: 0;
}

.disclaimer-label input:checked + .checkmark {
  background: #f0c040;
  border-color: #f0c040;
}

.disclaimer-label input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #081a2c;
  font-size: 16px;
  font-weight: bold;
}

.disclaimer-label:hover .checkmark {
  border-color: #f0c040;
}

.disclaimer-text a {
  color: #f0c040;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer-text a:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  grid-column: 1 / -1;
  padding: 18px 40px;
  background: #081a2c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  border: 2px solid #081a2c;
}

.submit-btn:hover {
  background: transparent;
  color: #081a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ----- FOOTER ----- */
.footer {
  position: relative;
  background: #081a2c;
  background-image: url('../img/pattern.png');
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 44, 0.95);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 8% 35px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 35px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: #f0c040;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.footer-nav a:hover::after,
.footer-nav a.active::after {
  width: 100%;
}

.footer-nav a:hover {
  color: #f0c040;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.office,
.phone {
  text-align: center;
  padding: 10px 20px;
}

.office:not(:last-child),
.phone {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact i {
  font-size: 48px;
  color: #f0c040;
  margin-bottom: 20px;
  display: block;
}

.office h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 700;
}

.office p {
  font-size: 18px;
  line-height: 1.8;
  color: #d6dde7;
  margin-bottom: 20px;
}

.office a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #f0c040;
  transition: all 0.3s ease;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.office a:hover {
  color: #fff;
  border-bottom-color: #f0c040;
}

.phone p {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d6dde7;
  font-weight: 300;
}

.phone h2 {
  font-size: 48px;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
}

.footer-bottom p {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #f0c040;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.2);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #f0c040;
  border-color: #f0c040;
  color: #081a2c;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offices-container {
    grid-template-columns: 1fr 1fr;
  }

  .page-header {
    padding: 100px 5% 50px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .office:not(:last-child),
  .phone {
    border-right: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 65px !important;
  }

  header {
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    padding: 0 4% !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e8e8e8;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
  }

  nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
  }

  .logo {
    font-size: 13px !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo span {
    font-size: 13px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-img {
    height: 45px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    display: block !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: 0 !important;
    padding: 5px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    z-index: 9999 !important;
  }

  .hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #081a2c !important;
    display: block !important;
  }

  nav ul {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 20px 5% !important;
    gap: 0 !important;
    align-items: center !important;
    background: #ffffff !important;
    position: absolute !important;
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 3px solid #f0c040 !important;
    z-index: 9998 !important;
    margin: 0 !important;
  }

  nav ul.active {
    display: flex !important;
  }

  nav ul li {
    width: 100% !important;
    list-style: none !important;
  }

  nav ul li a {
    color: #081a2c !important;
    font-size: 16px !important;
    padding: 12px 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: #f0c040 !important;
    background: #f8f9fa !important;
  }

  nav ul li:last-child a {
    border-bottom: none !important;
  }

  .phone {
    display: block !important;
    font-size: 11px !important;
    margin: 0 8px 0 auto !important;
    flex-shrink: 0 !important;
    color: #f0c040 !important;
    font-weight: bold !important;
  }

  .page-header {
    padding: 90px 5% 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header .subtitle {
    font-size: 16px;
  }

  .contact-section {
    padding: 50px 5%;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .offices-container {
    grid-template-columns: 1fr;
  }

  .contact-cta .phone-number {
    font-size: 28px;
  }

  .footer-container {
    padding: 50px 5% 30px;
  }

  .footer-nav {
    gap: 25px;
    padding-bottom: 25px;
    margin-bottom: 35px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 35px;
  }

  .office,
  .phone {
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none !important;
  }

  .office:last-child,
  .phone:last-child {
    border-bottom: none;
  }

  .footer-contact i {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .office h3 {
    font-size: 22px;
  }

  .office p {
    font-size: 16px;
  }

  .phone p {
    font-size: 18px;
  }

  .phone h2 {
    font-size: 36px;
  }

  .footer-bottom p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 55px !important;
  }

  header {
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
    padding: 0 3% !important;
  }

  .logo {
    font-size: 10px !important;
    gap: 5px !important;
  }

  .logo-img {
    height: 38px !important;
  }

  .logo span {
    font-size: 10px !important;
  }

  .phone {
    font-size: 9px !important;
    margin: 0 5px 0 auto !important;
  }

  .hamburger span {
    width: 22px !important;
    height: 2.5px !important;
  }

  nav ul {
    top: 55px !important;
    padding: 15px 4% !important;
  }

  nav ul li a {
    font-size: 14px !important;
    padding: 10px 0 !important;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .page-header .subtitle {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .contact-form-wrapper h2 {
    font-size: 20px;
  }

  .contact-cta .phone-number {
    font-size: 24px;
  }

  .office-card h3 {
    font-size: 18px;
  }

  .disclaimer-label {
    font-size: 13px !important;
  }

  .submit-btn {
    padding: 14px 25px;
    font-size: 16px;
  }

  .footer-nav {
    gap: 15px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .office h3 {
    font-size: 19px;
  }

  .office p {
    font-size: 15px;
  }

  .phone h2 {
    font-size: 28px;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
/* ============================================
   FLOATING ICONS - WhatsApp, Email & Call
   ============================================ */
.floating-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.floating-icon a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-icon a span {
  font-size: 28px;
  line-height: 1;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 32px;
}

.call-btn {
  background: #081a2c;
}

.call-btn span {
  font-size: 28px;
}

/* Floating Email Button */
.email-btn {
  background: #D44638;
}

.email-btn i {
  color: #fff;
  font-size: 28px;
}

.floating-icon .email-btn {
  animation: pulse-email 2s infinite 0.3s;
}

@keyframes pulse-email {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 70, 56, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 70, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 70, 56, 0);
  }
}

.floating-icon a::after {
  content: attr(title);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.floating-icon a:hover::after {
  opacity: 1;
  visibility: visible;
}

.floating-icon .whatsapp-btn {
  animation: pulse-whatsapp 2s infinite;
}

.floating-icon .call-btn {
  animation: pulse-call 2s infinite 0.5s;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 26, 44, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(8, 26, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 26, 44, 0);
  }
}

/* Mobile adjustments for floating icons */
@media (max-width: 768px) {
  .floating-icon {
    bottom: 20px;
    right: 20px;
  }

  .floating-icon a {
    width: 50px;
    height: 50px;
  }

  .floating-icon a span {
    font-size: 22px;
  }

  .whatsapp-btn i {
    font-size: 26px;
  }

  .email-btn i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .floating-icon {
    bottom: 15px;
    right: 15px;
  }

  .floating-icon a {
    width: 45px;
    height: 45px;
  }

  .floating-icon a span {
    font-size: 20px;
  }

  .whatsapp-btn i {
    font-size: 22px;
  }

  .email-btn i {
    font-size: 18px;
  }
}