 :root {
     --primary: #097a6e;
     --secondary: #f5f5f5;
     --dark: #333;
     --light: #fff;
     --accent: #ff6b6b;
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     /* font-family: 'Poppins', sans-serif; */
 }

 body {
     background-color: #f8f9fa;
     color: var(--dark);
     line-height: 1.6;
 }

 .container-contact {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero {
     height: 40vh;
     background: linear-gradient(135deg, var(--primary) 0%, #8adbd3 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 80px;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: rgba(255, 255, 255, 0.1);
     transform: rotate(45deg);
     top: -50%;
     left: -50%;
     animation: wave 15s linear infinite;
 }

 @keyframes wave {
     0% {
         transform: rotate(45deg) translateY(0);
     }

     100% {
         transform: rotate(45deg) translateY(100px);
     }
 }

 .hero-content {
     text-align: center;
     /* color: var(--light); */
     color: #333;
     position: relative;
     z-index: 1;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 1s forwards 0.5s;
 }

 @keyframes fadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-content h1 {
     font-size: 3rem;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .hero-content p {
     font-size: 1.2rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .contact-section {
     padding: 80px 0;
 }

 .contact-container {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1100px;
     margin: 0 auto;
 }

 .contact-info {
     flex: 1;
     min-width: 300px;
     opacity: 0;
     transform: translateX(-20px);
     animation: slideIn 1s forwards 0.8s;
 }

 .contact-form {
     flex: 2;
     min-width: 300px;
     background: var(--light);
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     opacity: 0;
     transform: translateX(20px);
     animation: slideIn 1s forwards 1s;
 }

 @keyframes slideIn {
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .contact-info h2 {
     font-size: 2rem;
     margin-bottom: 20px;
     color: var(--primary);
 }

 .contact-info p {
     margin-bottom: 30px;
     font-size: 1.1rem;
 }

 .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     color: var(--light);
     font-size: 1.2rem;
 }

 .contact-text h3 {
     font-size: 1.1rem;
     margin-bottom: 5px;
 }

 .contact-text p {
     margin: 0;
     color: #666;
 }

 .form-group {
     margin-bottom: 25px;
     position: relative;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 15px;
     border: 2px solid #e1e1e1;
     border-radius: 5px;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-control:focus {
     border-color: var(--primary);
     outline: none;
     box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
 }

 .form-control.invalid {
     border-color: var(--accent);
 }

 .error-message {
     color: var(--accent);
     font-size: 0.85rem;
     margin-top: 5px;
     display: none;
 }

 textarea.form-control {
     resize: vertical;
     min-height: 150px;
 }

 .btn {
     display: inline-block;
     background: var(--primary);
     color: var(--light);
     padding: 15px 30px;
     border: none;
     border-radius: 5px;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: var(--transition);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn:hover {
     background: #044841;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .btn:active {
     transform: translateY(-1px);
 }

 .success-message {
     background-color: #d4edda;
     color: #155724;
     padding: 15px;
     border-radius: 5px;
     margin-bottom: 20px;
     display: none;
 }

 .floating-shapes {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 0;
     overflow: hidden;
 }

 .shape {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: float 15s infinite linear;
 }

 .shape:nth-child(1) {
     width: 80px;
     height: 80px;
     top: 10%;
     left: 10%;
     animation-duration: 20s;
 }

 .shape:nth-child(2) {
     width: 120px;
     height: 120px;
     top: 60%;
     left: 80%;
     animation-duration: 25s;
     animation-delay: 2s;
 }

 .shape:nth-child(3) {
     width: 60px;
     height: 60px;
     top: 30%;
     left: 60%;
     animation-duration: 18s;
     animation-delay: 1s;
 }

 .shape:nth-child(4) {
     width: 100px;
     height: 100px;
     top: 70%;
     left: 30%;
     animation-duration: 22s;
     animation-delay: 3s;
 }

 @keyframes float {
     0% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-100px) rotate(180deg);
     }

     100% {
         transform: translateY(0) rotate(360deg);
     }
 }

 .social-links {
     margin-bottom: 20px;
 }

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     margin: 0 10px;
     color: var(--light);
     font-size: 1.2rem;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--primary);
     transform: translateY(-3px);
 }

 .copyright {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.6);
 }

 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .contact-container {
         flex-direction: column;
     }

     .contact-info,
     .contact-form {
         width: 100%;
     }
 }

 /* FontAwesome Icons */
 .fas {
     font-family: 'FontAwesome';
     font-weight: 900;
 }

 .fa-map-marker-alt:before {
     content: "\f3c5";
 }

 .fa-phone:before {
     content: "\f095";
 }

 .fa-envelope:before {
     content: "\f0e0";
 }

 .fa-clock:before {
     content: "\f017";
 }

 .fa-facebook-f:before {
     content: "\f39e";
 }

 .fa-twitter:before {
     content: "\f099";
 }

 .fa-instagram:before {
     content: "\f16d";
 }

 .fa-linkedin-in:before {
     content: "\f0e1";
 }

 .map-container {
     width: 1100px;
     margin: auto;
     margin-top: 30px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     position: relative;
     height: 300px;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: 0;
     filter: grayscale(20%) contrast(90%) saturate(110%);
 }

 @media (max-width: 768px) {
     .map-container {
         height: 250px;
     }
 }

 .contact-form {
     flex: 2;
     min-width: 300px;
     background: var(--light);
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .map-container {
     width: 100%;
     max-width: 1100px;
     margin: 30px auto 0;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     height: 300px;
 }

 .loader {
     border: 3px solid #f3f3f3;
     border-top: 3px solid #6c63ff;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     animation: spin 1s linear infinite;
     margin-left: 10px;
 }

 .d-none {
     display: none;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 #submitBtn {
     display: flex;
     align-items: center;
     justify-content: center;
 }