/* Contact page specific styles
 *
 * Paste your /contact/styles.css contents here.
 */
/* Contact Page Specific Styles */

:root {
   --primary-color: #203557;
   --secondary-color: #719976;
   --black-color: #000000;
   --white-color: #ffffff;
   --gray-color: #808080;
   --dark-gray-color: #424242;
   --light-black-color: #212121;
   --light-white-color: #f5f5f5;
   --darker-white-color: #f9f9f9;
   --text-color: #212121;
 }
   
 /* Hero Section */
 .contact-hero {
   width: 100%;
   height: 700px;
   max-height: 100svh;
 
   display: flex;
   flex-direction: column;
   position: relative;
   overflow: hidden;
 
   padding: 0 !important;
   margin: 0 !important;
   background-color: #f5f5f5;
 }
 
 .contact-hero .hero-content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 3;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .contact-hero .hero-text {
   text-align: center;
   color: var(--white-color);
   width: 100%;
   padding: 2rem;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 
 .contact-hero .hero-text h1 {
   font-size: 4rem;
   font-weight: 700;
   margin-bottom: 1rem;
   text-transform: uppercase;
   line-height: 1.1;
 }
 
 .contact-hero .hero-text h1 .highlight {
   color: var(--secondary-color);
 }
 
 .contact-hero .hero-text p {
   font-size: 1.5rem;
   font-weight: 400;
   margin-bottom: 2rem;
   opacity: 0.9;
 }
 
 .contact-hero .hero-text .separator {
   margin: 0 auto;
   background-color: var(--secondary-color);
   height: 3px;
   width: 100px;
 }
 
 .contact-hero .hero-image {
   width: 100%;
   height: 100%;
   position: relative;
   z-index: 1;
 }
 
 .contact-hero .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .contact-hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: black;
   opacity: 0.25;
   z-index: 2;
 }
 
 /* Contact Information Section */
 .contact-info-section {
   width: 100%;
   padding: 4rem 0;
   background-color: var(--white-color);
 }
 
 .contact-info-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 3rem;
   max-width: 1200px;
   margin: 0 auto;
 }
 
 .contact-info-card {
   text-align: center;
   padding: 2rem;
   box-sizing: border-box;
 
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   gap: 0rem;
 }
 
 .contact-info-card-content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 0rem;
 }
 
 .contact-icon {
   width: 80px;
   height: 80px;
   background-color: transparent;
   border: 2px solid var(--secondary-color);
   background-color: var(--secondary-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
   transition: all 0.3s ease;
   cursor: pointer;
 }
 
 .contact-icon:hover {
   background-color: var(--secondary-color);
   transform: scale(1.1);
 }
 
 .contact-icon:hover i {
   color: var(--white-color);
   transition: color 0.3s ease;
   animation: spin 1.2s ease-in-out;
 }
 
 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }
 
 .contact-icon i {
   font-size: 2rem;
   color: var(--white-color);
   transition: color 0.3s ease;
 }
 
 .contact-info-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 0.5rem;
   text-transform: uppercase;
   letter-spacing: 1px;
 }
 
 .contact-info-card p {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--gray-color);
   margin-bottom: 0.5rem;
 }
 
 .contact-detail-link {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--secondary-color);
   text-decoration: none;
   transition: color 0.3s ease;
   padding: 0;
   margin: 0;
 }
 
 .contact-detail-link:hover {
   color: var(--secondary-color);
   opacity: 0.8;
   transition: opacity 0.3s ease;
 }
 
 /* ------------------------------Contact Form Section ------------------------------ */
 .contact-form-section {
   width: 100%;
   padding: 4rem 0 6rem 0;
   background-color: var(--darker-white-color);
 
   background: url("https://newvasha.com/wp-content/uploads/2025/09/DJI_20250826170901_0304_D-2-scaled.webp")
     no-repeat center center;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   background-attachment: fixed;
   position: relative;
   z-index: 1;
 }
 .contact-form-section::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #ffffff;
   opacity: 0.95;
 }
 
 .contact-form-section .container {
   position: relative;
   z-index: 10;
 }
 
 .form-header {
   text-align: center;
   margin-bottom: 3rem;
 
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 1rem;
 }
 
 .form-header h2 {
   font-size: 3rem;
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 0rem;
   line-height: 1.2;
 }
 
 .form-header p {
   font-size: 1.2rem;
   color: var(--gray-color);
   margin: 0;
 }
 
 .contact-form {
   max-width: 800px;
   margin: 0 auto;
   background-color: transparent;
   padding: 0rem;
   border-radius: 8px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: stretch;
   gap: 1rem;
   width: 100%;
 }
 
 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin-bottom: 0rem;
   width: 100%;
 }
 
 .form-group {
   display: flex;
   flex-direction: column;
   width: 100%;
 }
 
 .form-group label {
   font-size: 1rem;
   font-weight: 500;
   color: var(--primary-color);
   margin-bottom: 0.5rem;
   display: none;
 }
 
 .form-group input,
 .form-group textarea {
   padding: 1rem;
   border: 2px solid #e0e0e0;
   border-radius: 4px;
   font-size: 1rem;
   font-family: inherit;
   transition: border-color 0.3s ease;
   background-color: var(--white-color);
 }
 
 .form-group input:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: var(--secondary-color);
 }
 
 .form-group textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 .submit-btn {
   width: 100%;
   background-color: var(--secondary-color);
   color: var(--white-color);
   border: none;
   padding: 1rem 2rem;
   font-size: 1.1rem;
   font-weight: 400;
   text-transform: uppercase;
   letter-spacing: 1px;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.3s ease;
   margin-top: 0rem;
   border: 1px solid var(--secondary-color);
 }
 
 .submit-btn:hover {
   background-color: transparent;
   color: var(--secondary-color);
   border: 1px solid var(--secondary-color);
 }
 
 .submit-btn:active {
   transform: translateY(1px);
 }
 
 /* Form validation styles */
 .form-group input:valid:not(:placeholder-shown),
 .form-group textarea:valid:not(:placeholder-shown) {
   border-color: var(--secondary-color);
 }
 
 /* ------------------------------Contact Socials Section ------------------------------ */
 .socials-contact {
   width: 100%;
   padding: 5rem 0;
   background-color: #2b2a2a;
 }
 .socials-contact .container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
 }
 .socials-contact .container .col {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 1rem;
 }
 
 .socials-contact .container .col a {
   font-size: 1.5rem;
   color: var(--white-color);
   transition: color 0.3s ease;
 
   background-color: var(--secondary-color);
   padding: 0.5rem;
   border-radius: 50%;
 
   width: 50px;
   height: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
 
   text-decoration: none;
 }
 
 .socials-contact .container .col a:hover {
   color: var(--white-color);
   background-color: var(--white-color);
   opacity: 0.8;
   transition: opacity 0.3s ease;
 }
 .socials-contact .container .col a i {
   font-size: 1.5rem;
   color: var(--white-color);
   transition: color 0.3s ease;
 }
 .socials-contact .container .col a:hover i {
   color: var(--secondary-color);
   opacity: 0.8;
   transition: opacity 0.3s ease;
 }
 
 @media (max-width: 768px){
   .socials-contact .container .col a {
     font-size: 1.5rem;
     color: var(--white-color);
     transition: color 0.3s ease;
   
     background-color: var(--secondary-color);
     padding: 0.5rem;
     border-radius: 50%;
   
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
   
     text-decoration: none;
   }
 }
 
 
 /* ---------------------Contact Hero Section Responsive------------------------ */
 @media (max-width: 1200px) {
   .contact-hero {
     height: 600px;
   }
 
   .contact-hero .hero-text h1 {
     font-size: 3.5rem;
   }
 
   .contact-hero .hero-text p {
     font-size: 1.3rem;
   }
 
   .contact-hero .hero-text .separator {
     width: 80px;
     height: 2px;
   }
 
   /* ---------------------Contact Map Section Responsive------------------------ */
   .contact-map-section iframe {
     height: 450px;
   }
 }
 
 @media (max-width: 768px) {
   .contact-hero {
     height: 500px;
   }
 
   .contact-hero .hero-text h1 {
     font-size: 2.5rem;
   }
 
   .contact-hero .hero-text p {
     font-size: 1.2rem;
   }
 
   .contact-hero .hero-text .separator {
     width: 60px;
     height: 2px;
   }
 
   /* ---------------------Contact Information Section Responsive------------------------ */
   .contact-info-section {
     padding: 4rem 0;
   }
 
   .contact-info-grid {
     grid-template-columns: 1fr;
     gap: 2rem;
     padding: 0 1rem;
   }
 
   .contact-info-card {
     padding: 1.5rem;
   }
 
   .contact-icon {
     width: 60px;
     height: 60px;
     margin-bottom: 1.5rem;
   }
 
   .contact-icon i {
     font-size: 1.5rem;
   }
 
   .contact-info-card h3 {
     font-size: 1.3rem;
   }
 
   .contact-info-card p {
     font-size: 0.95rem;
   }
 
   .contact-detail-link {
     font-size: 1rem;
   }
 
   /* ---------------------Contact Form Section Responsive------------------------ */
   .contact-form-section {
     padding: 4rem 0;
   }
 
   .form-header h2 {
     font-size: 2.5rem;
   }
 
   .form-header p {
     font-size: 1.1rem;
   }
 
   .form-row {
     grid-template-columns: 1fr;
     gap: 1rem;
   }
 
   .contact-form {
     padding: 1.5rem;
     margin: 0 1rem;
   }
 
   .form-group input,
   .form-group textarea {
     padding: 0.9rem;
     font-size: 0.95rem;
   }
 
   .submit-btn {
     padding: 0.9rem 1.5rem;
     font-size: 1rem;
   }
 
   /* ---------------------Contact Map Section Responsive------------------------ */
   .contact-map-section iframe {
     height: 400px;
   }
 }
 
 @media (max-width: 480px) {
   .contact-hero {
     height: 400px;
   }
 
   .contact-hero .hero-text {
     padding: 1rem;
   }
 
   .contact-hero .hero-text h1 {
     font-size: 2rem;
   }
 
   .contact-hero .hero-text p {
     font-size: 1rem;
   }
 
   .contact-hero .hero-text .separator {
     width: 50px;
     height: 2px;
   }
 
   /* ---------------------Contact Information Section Mobile------------------------ */
   .contact-info-section {
     padding: 2rem 0;
   }
 
   .contact-info-grid {
     gap: 1.5rem;
     padding: 0 0.5rem;
   }
 
   .contact-info-card {
     padding: 1rem;
   }
 
   .contact-icon {
     width: 70px !important;
     height: 70px !important;
     margin-bottom: 1rem;
   }
 
   .contact-icon i {
     font-size: 1.5rem;
   }
 
   .contact-info-card h3 {
     font-size: 1.2rem;
   }
 
   .contact-info-card p {
     font-size: 0.85rem;
   }
 
   .contact-detail-link {
     font-size: 0.9rem;
   }
 
   .contact-form{
     max-width: auto;
     width: auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 1rem;
   }
 
   /* ---------------------Contact Form Section Mobile------------------------ */
   .contact-form-section {
     padding: 3rem 0;
   }

   .form-header {
    margin-bottom: 1rem;
    padding: 0 20px;
   }
 
   .form-header h2 {
     font-size: 2rem;
   }
 
   .form-header p {
     font-size: 0.95rem;
   }
 
   .contact-form {
     padding: 0rem;
     margin: 0rem;
   }
 
   .form-group input,
   .form-group textarea {
     padding: 0.8rem;
     font-size: 0.9rem;
   }
 
   .submit-btn {
     padding: 0.8rem 1.2rem;
     font-size: 0.95rem;
   }
 
   /* ---------------------Contact Map Section Responsive------------------------ */
   .contact-map-section iframe {
     height: 300px;
   }
 }
 
 /* Loading state for form submission */
 .submit-btn.loading {
   background-color: var(--gray-color);
   cursor: not-allowed;
 }
 
 .submit-btn.loading::after {
   content: "";
   display: inline-block;
   width: 20px;
   height: 20px;
   border: 2px solid var(--white-color);
   border-radius: 50%;
   border-top-color: transparent;
   animation: spin 1s linear infinite;
   margin-left: 10px;
 }
 
 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }
 
 /* Success message */
 .form-success {
   background-color: var(--secondary-color);
   color: var(--white-color);
   padding: 1rem;
   border-radius: 4px;
   margin-bottom: 2rem;
   text-align: center;
   display: none;
 }
 
 .form-success.show {
   display: block;
 }
 
 /* Error message */
 .form-error {
   background-color: #e74c3c;
   color: var(--white-color);
   padding: 1rem;
   border-radius: 4px;
   margin-bottom: 2rem;
   text-align: center;
   display: none;
 }
 
 .form-error.show {
   display: block;
 }
 
 /* ------------------------------Contact Map Section ------------------------------ */
 .contact-map-section {
   width: 100%;
   padding: 0;
   background-color: var(--white-color);
 
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 1rem;
 }
 
 .contact-map-section iframe {
   width: 100%;
   height: 500px;
   border: 0;
 }
 
