/* ============================================
   CONTACT - CSS
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Spacing */
  --section-gap: 66px;
  --section-gap-sm: 64px;

  /* Colors */
  --primary-gradient: linear-gradient(45deg, #ab21c1, #3f0e47);
  --primary-purple: #55246b;
  --accent-gold: #c29619;
  --text-white: #fff;
  --text-black: #000;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
  color: #ab21c1 !important;
}

html {
  scroll-behavior: smooth;
}

/* Page Transitions */
[data-include] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

[data-include].loaded {
  visibility: visible;
  opacity: 1;
}

body.fade-in {
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.page-loaded {
  opacity: 1;
}

.fade-out {
  opacity: 0 !important;
}

/* ============================================
   1. NAVBAR STYLES
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  background: #55246b !important;
}

.navbar-brand img {
  border-radius: 50%;
}

.navbar-brand span {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-left: 0.5rem;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fe968e !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

#search a {
  color: #fff;
  font-size: 1.2rem;
}

#search a:hover {
  color: #000;
}

/* ============================================
   3. ABOUT BANNER SECTION
   ============================================ */

.about-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 96px !important;
}

.about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/white-diamond.png");
  opacity: 0.15;
  z-index: 0;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
  flex-direction: row;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.about img {
  width: 580px;
  max-width: 100%;
  height: auto;
  transition:
    transform 0.8s ease,
    box-shadow 0.8s ease;
  animation: fadeInLeft 1.2s ease forwards;
  border-radius: 24px;
}

.about img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(128, 0, 128, 0.25);
}

.about .card-text {
  width: 480px;
  max-width: 100%;
  animation: fadeInRight 1.2s ease forwards;
}

.about .card-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  background: linear-gradient(45deg, #ab21c1, #3f0e47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about .card-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 8px;
}

.about .card-text span {
  background: linear-gradient(45deg, #ab21c1, #3f0e47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about p {
  text-align: justify;
  line-height: 1.7;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px 20px;
  border-left: 4px solid #bd5aca;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(128, 0, 128, 0.05);
  background: linear-gradient(45deg, #ab21c1, #3f0e47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Section Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .about-bg {
    padding-top: 145px !important;
    min-height: auto;
  }

  .about {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .about img {
    width: 100%;
    max-width: 400px;
  }

  .about .card-text {
    width: 100%;
    text-align: center;
  }

  .about .card-text h2 {
    font-size: 1.6rem;
  }

  .about .card-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about p {
    text-align: center;
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .about .card-text h2 {
    font-size: 1.4rem;
  }

  .about p {
    font-size: 0.9rem;
  }
}

/* ============================================
   4. CONTACT FORM - BASE STYLES
   ============================================ */

.contact-form {
  width: 100%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  border-radius: 24px;
}

/* ============================================
   5. CONTACT INFO SECTION (LEFT SIDE)
   ============================================ */

.contact-info {
  background: #55246b;
  padding: 50px 40px;
  position: relative;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

/* --- Contact Info Headers --- */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.contact-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #fff;
}

/* --- Contact Info Items --- */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.info-item:hover .info-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.info-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #fff;
}

.info-content a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: #fff;
}

.info-content a:hover {
  opacity: 0.8;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

.social-link:hover {
  background: #000;
  transform: translateY(-3px);
}

/* ============================================
   6. CONTACT FORM SECTION (RIGHT SIDE)
   ============================================ */

.form-container {
  padding: 50px 40px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- Form Groups --- */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- Form Controls --- */
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: #946ca5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(148, 108, 165, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- Submit Button --- */
.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: #55246b;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  color: #fff;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(148, 108, 165, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   7. FOOTER STYLES
   ============================================ */

.footer {
  padding: 66px 60px 10px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInFooter 1.2s ease forwards;
}

/* --- Footer Icons Section --- */
.footer-section {
  width: 100%;
}

.footer-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  animation: slideUp 1.2s ease-out forwards;
}

.footer-item {
  flex: 1;
  min-width: 200px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  padding: 10px;
}

.footer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(98, 28, 159, 0.1);
}

.footer-item i {
  font-size: 32px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-item:hover i {
  transform: rotate(10deg) scale(1.2);
}

.footer-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7B188B;
}

.footer-item p {
  font-size: 14px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- Footer Content Section --- */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
  animation: fadeInFooter 1.5s ease-in;
}

.footer-about {
  flex: 1.5;
  min-width: 280px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  width: 100%;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- Footer Social Icons --- */
.social-icons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.social-icons a {
  text-decoration: none;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.social-icons a:hover {
  transform: scale(1.2) rotate(10deg);
}

/* --- Footer WhatsApp --- */
.wp-icon {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.whatsapp-icon {
  font-size: 40px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.whats-no {
  font-size: 20px !important;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 14px 0;
}

.whats-no a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: bold;
}

/* --- Footer Policies --- */
.footer-policies {
  flex: 1;
  min-width: 180px;
}

.footer-policies h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7B188B;
  margin-bottom: 15px;
  position: relative;
}

.footer-policies h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #c19a6b;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-policies ul {
  list-style: none;
  padding-left: 0;
}

.footer-policies ul li {
  margin-bottom: 8px;
}

.footer-policies ul li a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 14px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-policies ul li a:hover {
  color: #c19a6b;
  transform: translateX(4px);
}

/* --- Footer Contact --- */
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact p {
  font-size: 14px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact a {
  text-decoration: none;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.footer-contact i {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- Footer Bottom --- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #e2d4f4;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: fadeInFooter 1.5s ease-in;
}

.footer-bottom span {
  background: linear-gradient(45deg, #ab21c1, #3f0e47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 600;
}

/* --- Footer Animations --- */
@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   8. RESPONSIVE - TABLET (992px and below)
   ============================================ */

@media (max-width: 992px) {
  /* Navbar */
  .bg-section {
    background: gray;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    margin: 0.2rem 0;
  }

  /* About Banner */
  .about {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about .card-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about p {
    text-align: center;
  }

  /* Contact Form */
  .main {
    /* padding: 40px 15px;
    margin: 3% 0; */
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 40px 30px;
  }

  .form-container {
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .form-title {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer {
    padding: 66px 30px 10px;
  }

  .footer-icons {
    flex-direction: column;
    gap: 25px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-policies {
    margin-left: 0 !important;
  }
}

/* ============================================
   9. RESPONSIVE - MOBILE (768px and below)
   ============================================ */

@media (max-width: 768px) {
  /* About Banner */
  .about-bg {
    padding: 60px 15px;
    min-height: auto;
  }

  .about img {
    width: 100%;
    max-width: 400px;
  }

  .about .card-text h2 {
    font-size: 1.8rem;
  }

  .about p {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  /* Contact Form */
  .main {
    /* padding: 30px 10px;
    margin: 2% 0; */
  }

  /* .contact-wrapper {
    border-radius: 12px;
  } */

  .contact-info {
    padding: 35px 25px;
  }

  .form-container {
    padding: 35px 25px;
  }

  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .contact-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .info-item {
    margin-bottom: 25px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
  }

  .info-icon i {
    font-size: 1.1rem;
  }

  .info-content h4 {
    font-size: 1rem;
  }

  .info-content p {
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .form-control {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  textarea.form-control {
    min-height: 100px;
  }

  .submit-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .social-links {
    margin-top: 30px;
    gap: 12px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  /* Footer */
  .footer {
    padding: 40px 25px 10px;
  }

  .footer-item {
    width: 100%;
    min-width: auto;
  }

  .footer-item i {
    font-size: 28px;
  }

  .footer-item h4 {
    font-size: 15px;
  }

  .footer-item p {
    font-size: 13px;
  }

  .footer-about {
    min-width: 100%;
  }

  .footer-about p {
    font-size: 16px;
  }

  .social-icons a {
    font-size: 16px;
  }

  .wp-icon {
    justify-content: center;
  }

  .whatsapp-icon {
    font-size: 35px;
  }

  .whats-no {
    font-size: 18px !important;
  }

  .footer-policies,
  .footer-contact {
    width: 100%;
    min-width: 100%;
  }

  .footer-contact p,
  .footer-policies ul li a {
    font-size: 13px;
  }
}

/* ============================================
   10. RESPONSIVE - SMALL MOBILE (576px and below)
   ============================================ */

@media (max-width: 576px) {
  /* Contact Form */
  .main {
    /* padding: 25px 8px;
    margin: 1% 0; */
  }

  /* .contact-wrapper {
    border-radius: 10px;
  } */

  .contact-info {
    padding: 30px 20px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .info-item {
    margin-bottom: 20px;
    flex-direction: row;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .info-icon i {
    font-size: 1rem;
  }

  .info-content h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .info-content p {
    font-size: 0.85rem;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .form-control {
    padding: 11px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  textarea.form-control {
    min-height: 90px;
  }

  .submit-btn {
    padding: 13px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .social-links {
    margin-top: 25px;
    gap: 10px;
    justify-content: center;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link i {
    font-size: 0.9rem;
  }
}

/* ============================================
   11. RESPONSIVE - EXTRA SMALL (480px and below)
   ============================================ */

@media (max-width: 480px) {
  /* About Banner */
  .about-bg {
    padding: 0px 10px;
  }

  .about img {
    height: 100%;
    width: 100%;
    min-height: 200px;
    min-width: 340px;
  }

  .about .card-text h2 {
    font-size: 1.5rem;
    text-align: start;
  }

  .about p {
    font-size: 0.9rem;
  }

  /* Contact Form */
  .main {
    padding: 20px 5px;
  }

  .contact-info {
    padding: 25px 18px;
  }

  .form-container {
    padding: 25px 18px;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .contact-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .info-item {
    margin-bottom: 18px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    margin-right: 12px;
  }

  .info-content h4 {
    font-size: 0.9rem;
  }

  .info-content p {
    font-size: 0.8rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 30px 15px 10px;
  }

  .footer-icons {
    gap: 20px;
  }

  .footer-item i {
    font-size: 24px;
  }

  .footer-item h4 {
    font-size: 14px;
  }

  .footer-item p {
    font-size: 12px;
  }

  .footer-about p {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 12px;
  }

  .whatsapp-icon {
    font-size: 30px;
  }

  .whats-no {
    font-size: 16px !important;
  }

  .footer-policies h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  .footer-contact p,
  .footer-policies ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* ============================================
   12. RESPONSIVE - LANDSCAPE ORIENTATION
   ============================================ */

@media (max-height: 600px) and (orientation: landscape) {
  .main {
    /* padding: 20px 15px;
    margin: 2% 0; */
  }

  .contact-info {
    padding: 30px 25px;
  }

  .form-container {
    padding: 30px 25px;
  }

  .contact-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .info-item {
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  textarea.form-control {
    min-height: 80px;
  }
}
