/* Global Styles */
:root {
   --primary-color: #c4944e;
   /* --secondary-color: #395144; */
   --secondary-color: #84ac8c;
   --accent-color: #3498db;
   --text-color: #333;
   --light-gray: #f5f5f5;
   --dark-gray: #777;
   --white: #ffffff;
   --off-white: #f0f0f0;
   --black: #000000d7;
 }
      
 .contact-page .hero {
   background: url("https://newvashaepz.com/wp-content/uploads/2025/08/DJI_20250813173015_0217_D-scaled.webp") 
   !important;
   background-size: fill !important;
   background-position: center !important;
   width: 100%;
   height: 600px;
   max-height: 100svh;
   color: var(--white);
   text-align: center;
 
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
 
   position: relative;
 
   overflow: visible !important;
 }
 
 .contact-page .hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
 
   background-color: #22190a !important;
   opacity: 0.55 !important;
   z-index: 1;
 }
 
 
 /* Page Title */
 .contact-page {
   width: 100%;
   height: 100%;
 
   position: relative;
 }
 
 .contact-page .container {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
 
   width: 100%;
   height: 100%;
 
   position: relative;
   z-index: 2;
 }
 
 .contact-page .text-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: start;
 
   width: 50%;
   height: 100%;
 }
 
 .contact-page h1 {
   font-size: 48px;
   margin: 0.5rem 0;
 }
 
 .contact-page p {
   font-size: 1.2rem;
   margin-bottom: 15px;
   text-align: start;
 }
 
 .breadcrumb {
   font-size: 16px;
 }
 
 .breadcrumb a {
   color: var(--white);
   text-decoration: none;
 }
 
 .breadcrumb span {
   color: var(--primary-color);
 }
 
 .contact-page .image-container {
   width: 500px;
   height: 500px;
 
   display: flex;
   justify-content: center;
   align-items: center;
 
   border-radius: 10px;
   overflow: hidden;
 
   margin-bottom: -300px;
 
   position: relative;
 }
 
 .contact-page .image-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .contact-page .image-container .play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }
 
 @media (max-width: 1024px) {
   .contact-page .hero {
     height: 500px;
   }
 
   .contact-page .container {
     flex-direction: column;
     gap: 2rem;
   }
 
   .contact-page .text-container {
     width: 100%;
     text-align: center;
   }
 
   .contact-page h1 {
     font-size: 2.5rem;
   }
 
   .contact-page .image-container {
     width: 400px;
     height: 400px;
     margin-bottom: -200px;
   }
 }
 
 @media (max-width: 768px) {
   .contact-page .hero {
     height: 400px;
   }
 
   .contact-page .breadcrumb {
     margin-top: 80px;
   }
 
   .contact-page h1 {
     font-size: 2rem;
   }
 
   .contact-page p {
     font-size: 14px;
   }
 
   .contact-page .image-container {
     width: 80vw;
     height: 300px !important;
     margin-bottom: -220px;
   }
 
   .breadcrumb {
     font-size: 14px;
   }
 }
 
 
 
 /* Contact Section Styles */
 .contact-section {
   padding: 5rem 0;
   padding-top: 10rem;
   background: #f8f9fa;
 }
 
 .contact-content {
   display: flex;
   gap: 30px;
   align-items: flex-start;
 }
 
 /* Contact Form Container */
 .contact-form-container {
   flex: 1;
   background: white;
   padding: 40px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }
 
 .contact-form-container .contact-description {
   margin-bottom: 30px;
 }
 
 .contact-form-container .contact-description h2{
   color: #070707;
   font-style: normal;
   font-weight: 600;
   line-height: 1.6;
   margin: 0;
 }
 
 .contact-form-container .contact-description p {
   color: #666;
   font-style: normal;
   font-weight: 400;
   line-height: 1.6;
   margin: 0;
 }
 
 .contact-form {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .form-row {
   display: flex;
   gap: 20px;
 }
 
 .form-group {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .form-group.full-width {
   width: 100%;
 }
 
 .form-group label {
   font-weight: 500;
   color: #333;
   margin-bottom: 8px;
   font-size: 14px;
 }
 
 .form-group input,
 .form-group textarea {
   padding: 15px;
   border: 1px solid #e0e0e0;
   border-radius: 5px;
   font-size: 14px;
   color: #333;
   transition: border-color 0.3s ease;
   background: #fff;
 }
 
 .form-group input:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: #b8860b;
 }
 
 .form-group input::placeholder,
 .form-group textarea::placeholder {
   color: #999;
 }
 
 .send-btn {
   background: var(--secondary-color);
   color: white;
   padding: 15px 40px;
   border: none;
   border-radius: 5px;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 1px;
   cursor: pointer;
   transition: background-color 0.3s ease;
   align-self: flex-start;
   margin-top: 10px;
 }
 
 .send-btn:hover {
   background: var(--secondary-color);
 }
 
 /* Contact Information Container */
 .contact-info-container {
   flex: 1;
   padding-left: 20px;
 }
 
 .divider {
   width: 50%;
   height: 2px;
   background: #b8860b;
   margin-bottom: 25px;
 }
 
 .contact-info-container .contact-description {
   color: #666;
   line-height: 1.6;
   margin-bottom: 40px;
 }
 
 .contact-items {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .contact-item {
   display: flex;
   align-items: center;
   gap: 1rem;
 }
 
 .contact-item a{
   text-decoration: none;
   color: #0e0e0e;
 }
 
 .contact-icon {
   width: 50px;
   height: 50px;
   background: #b8860b;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }
 
 .contact-item .contact-icon:hover {
   background: var(--secondary-color);
   transition: background-color 0.3s ease;
 }
 
 .contact-icon i {
   color: white;
   font-size: 20px;
 }
 
 .contact-details{
   text-decoration: none;
   color: #0e0e0e;
   height: auto;
 }
 
 .contact-details h3 {
   color: #0e0e0e;
   font-size: 1.2rem;
   font-weight: 400;
   margin: 0 0 0px 0;
   transition: opacity 0.3s ease;
 }
 
 .contact-details p {
   font-size: 1.1rem;
   color: #666;
   margin: 0;
   transition: opacity 0.3s ease;
 }
 
 .contact-details:hover h3, 
 .contact-details:hover p{
   opacity: 0.8;
   transition: opacity 0.3s ease;
 }
 
 /* social media */
 .social-title {
   color: #000;
   font-size: 1.5rem;
   font-weight: 600;
   margin: 0;
   padding-top: 3rem;
 }
 
 .social-description {
   color: #666;
   font-size: 1rem;
   font-weight: 400;
   margin: 0;
 }
 
 /* Responsive Design */
 @media (max-width: 992px) {
   .contact-content {
     flex-direction: column;
     gap: 40px;
   }
 
   .contact-info-container {
     padding-left: 0;
   }
 }
 
 
 
 @media (max-width: 768px) {
   .contact-section {
     padding: 12rem 0 2rem 0;
   }

   .section-header h2 {
    margin-bottom: 0.55rem;
   }

   .contact-info-container .contact-description {
    margin-bottom: 0.5rem;
   }

   .divider
   {
    margin-bottom: 0rem;
   }
 
   .contact-section .breadcrumb {
     margin-top: 80px;
   }
  
   .contact-form-container {
     padding: 30px 20px;
   }
 
   .form-row {
     flex-direction: column;
     gap: 15px;
   }
 
   .contact-items {
     gap: 25px;
   }
 
   .contact-item {
     gap: 15px;
   }
 
   .contact-icon {
     width: 50px;
     height: 50px;
   }
 
   .contact-icon i {
     font-size: 18px;
   }
 }
 /* ----------------------------------------MAP SECTION---------------------------------------- */
 .map-section {
   padding: 3rem 0;
   background-color: var(--white);
 
   height: 600px;
   width: 100%;
 
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 .map-section .map-container {
   width: 100%;
   height: 100%;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 .map-section .map-container iframe {
   width: 100%;
   height: 100%;
   border: none;
 }
 