@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


:root {
  --green-1: #003D2B;
  --green2: #21A179;
  --mint: #E4F1EA;
  --brown: #C56659;
  --black: #141414;
  --white: #FFFFFF;


  --gradient-green: linear-gradient(135deg, #003D2B, #21A179);
  --gradient-brown: linear-gradient(135deg, #A24E43, #C56659);
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--mint);
}


/* Left Column */
.contact-title {
    color: var(--brown);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}


.contact-heading {
    color: var(--green-1);
    text-align: left;
    font-weight: 700;
    margin-bottom: 0;
}


.contact-section {
  background-color: var(--mint);
  padding: 40px 20px;
}


.get-touch-icon {
    color: var(--green-1);
    margin-top: 5px;
}


.info-label {
  color: var(--green-1);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-top: 5px;
  gap: 4px;
}


.info-text {
    padding-left: 10px;
    font-size: 16px;
    margin: 2px;
}


.social-text {
    color: var(--brown);
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}


.social-icons {
    margin-left: 0px;
}


.social-icons a {
  color: var(--green-1);
  font-size: 20px;
  margin-right: 10px;
}


/* Right Column */


.form-floating-container {
  background-color: #f4f9f7;
  border-radius: 12px;
  border-color: 2px solid var(--white);
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  width: 75%;
  max-width: 100%;
  margin: auto;
}


.form-label {
  color: var(--brown);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}


.form-control:focus {
  border: 2px solid var(--green-1);
  /* border-width: 1px; */
  box-shadow: none;
}


.form-control {
  transition: border-color 0.3s ease;
  height: 36px;
  padding: 6px 10px;
  font-size: 14px;
  border: 2px solid var(--mint);
  border-radius: 30px;
}


.form-control.active {
  border-color: rgba(0, 61, 43, 0.75) !important;
}


textarea.form-control {
  height: 100px;
  min-height: 100px;
  border-radius: 30px !important;
}


.btn-send {
  background-color: var(--green-1);
  color: var(--white);
  font-size: 14px;
  border-radius: 30px;
  padding: 8px 24px;
  float: right;
  transition: background 0.3s ease;
}


.btn-send:hover {
  background: var(--gradient-green);
  color: var(--white);
}


@media (min-width: 992px) {
    .contact-section .col-lg-5,
    .contact-section .col-lg-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
   
    .contact-section .col-lg-5 {
        padding-left: 40px;
        padding-right: 20px;
    }


    .form-floating-container {
        margin-left: auto;
    }
}


@media (max-width: 991.98px) {
    .form-floating-container {
        margin-top: 20px;
    }
}


@media (max-width: 768px) {
    .form-container {
    margin-top: 20px;
    }
    .form-floating-container {
    margin-top: 20px;
    }
}


/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background-color: var(--white);
}


/* Contact Form Styles */
#contactForm .form-control {
    border-radius: 10px !important;
    padding: 6px 10px;
    margin-bottom: 15px;
    border: 2px solid var(--mint) !important;
    height: 36px;
    font-size: 14px;
}


#contactForm .form-control:focus {
    border: 2px solid var(--green-1) !important;
    box-shadow: none;
}


#contactForm .btn-primary {
    background-color: var(--green2);
    border-color: var(--green2);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}


#contactForm .btn-primary:hover {
    background-color: var(--green-1);
    border-color: var(--green-1);
    transform: translateY(-2px);
}


/* Contact Info Styles */
.contact-info {
    margin-top: 30px;
}


.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}


.info-item i {
    font-size: 24px;
    color: var(--green2);
    margin-right: 20px;
    margin-top: 5px;
}


.info-item h5 {
    margin-bottom: 5px;
    font-weight: 600;
}


.info-item p {
    margin: 0;
    color: #666;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-banner {
        height: 200px;
    }
   
    .contact-content {
        padding: 60px 0;
    }
   
    .contact-content .col-md-6:first-child {
        margin-bottom: 40px;
    }
}


/* Get App Section  */
.getapp-container {
    margin: 40px 100px 0px 100px;
}


.getapp-label, .getapp-text {  
    margin-bottom: 10px;
    font-weight: 800;
}


.getapp-caption {
    font-weight: 500;
    margin-top: 20px;
    font-size: 16px;
}


.getapp-btn {
    background: var(--gradient-brown);
    color: var(--white);
    font-weight: 500;
    margin-top: 30px;
}


.getapp-btn:hover {
    color: var(--mint);
}


.getapp-phone {
    max-height: 400px;
    position: relative;
    bottom: -5px;
}

