body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #111;
  color: #fff;
}

.header a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.header a.active {
  font-weight: bold;
}

.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background: #222;
  color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
}

.info-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}
/* Contact Form */
.contactform {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.contactform h2 {
    font-size: 28px;
    margin-bottom: 1px;
    color: #222;
    text-align: center;
}

#contactForm {
    display: flex;
    flex-direction: column;
}

/* Inputs */
#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    transition: all .3s ease;
    outline: none;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Focus Effect */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* Placeholder */
#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #999;
}

/* Textarea */
#contactForm textarea {
    resize: vertical;
    min-height: 140px;
}

/* Select */
#contactForm select {
    cursor: pointer;
}

/* Submit Button */
#contactForm button {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

#contactForm button:hover {
    background: #222;
    transform: translateY(-2px);
}

#contactForm button:active {
    transform: scale(.98);
}

#contactForm button:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Message */
.form-message {
    margin-top: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    min-height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    #contactForm input,
    #contactForm select,
    #contactForm textarea,
    #contactForm button {
        font-size: 14px;
    }
}

.policies {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.policy-card {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.policy-card:hover {
  background: #ddd;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}


.social-section {
  padding: 60px 40px;
  text-align: center;
  
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  /* align-items: center; */
  margin-top: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

/* Brand hover colors */
.social-icons a:hover .fa-instagram {
  color: #E4405F;
}

.social-icons a:hover .fa-facebook-f {
  color: #1877F2;
}


.trust-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background: #222;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .trust-section {
    flex-direction: column;
    text-align: center;
  }
}
