 main {
     font-family: 'Satoshi', sans-serif;
 }

 .contact-section {
     width: 100%;
     /* min-height: 100vh; */
     background: url('/assets/images/Contact/Contact_hero_background.png') no-repeat center/cover;
     background-color: #f4f8fb;
     /* Fallback color */
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 80px 5%;
 }

 /* Container */
 .container {
     max-width: 1200px;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 60px;
 }

 /* LEFT SIDE */
 .left {
     max-width: 520px;
 }

 .left h1 {
     font-size: 60px;
     font-weight: 500;
     line-height: 1.3;
     color: #010E17;
     margin-bottom: 20px;
 }

 .left h1 strong {
     color: #022c55;
 }

 .left p {
     font-size: 20px;
     color: #65737E;
     line-height: 1.6;
     margin-bottom: 40px;
 }

 /* CONTACT GRID */
 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px 80px;
     margin-bottom: 30px;
 }

 .contact-grid .label {
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 2px;
     color: #013A70;
     margin-bottom: 8px;
 }

 .contact-grid .value {
     font-size: 18px;
     color: #65737E;
 }

 /* SOCIALS */
 .socials {
     display: flex;
     gap: 12px;
 }

 .socials a {
     text-decoration: none;
     width: 32px;
     height: 32px;
     background: rgba(1, 58, 112, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 14px;
     color: #013A70;
     transition: 0.3s ease;
 }

 .socials a:hover {
     background: #013A70;
     color: white;
 }

 /* RIGHT FORM */
 .form-box {
     width: 520px;
     background: rgba(52, 131, 207, 0.2);
     padding: 30px;
     border-radius: 24px;
     backdrop-filter: blur(10px);
 }

 .form-box h2 {
     font-size: 32px;
     font-weight: 700;
     color: #010E17;
     margin-bottom: 10px;
 }

 .form-box p {
     font-size: 16px;
     color: #65737E;
     margin-bottom: 20px;
 }

 /* INPUTS */
 .input-group {
     position: relative;
     margin-bottom: 14px;
 }

 .input {
     width: 100%;
     height: 46px;
     border: 2px solid transparent;
     outline: none;
     padding: 0 16px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.7);
     box-shadow: 5px 5px 25px rgba(7, 130, 133, 0.05);
     font-size: 15px;
     transition: border 0.3s;
 }

 .input:focus {
     border: 2px solid #013A70;
 }

 .input.error-border {
     border: 2px solid #e74c3c;
 }

 textarea.input {
     height: 100px;
     padding: 12px 16px;
     resize: none;
     font-family: inherit;
 }

 .error-message {
     color: #e74c3c;
     font-size: 12px;
     margin-top: 4px;
     display: none;
     font-weight: 600;
 }

 /* SELECT */
 .select {
     background: rgba(114, 172, 206, 0.7);
     font-weight: 600;
     cursor: pointer;
 }

 /* BUTTON */
 .btn {
     width: 100%;
     height: 46px;
     border: none;
     border-radius: 50px;
     background: #013A70;
     color: white;
     font-weight: 700;
     cursor: pointer;
     margin-top: 10px;
     transition: 0.3s;
     font-size: 16px;
 }

 .btn:hover {
     background: #022c55;
 }

 .success-msg {
     display: none;
     color: #27ae60;
     font-weight: 700;
     text-align: center;
     margin-top: 15px;
 }

 /* =========================================
           RESPONSIVE DESIGN 
           ========================================= */

 /* Tablets */
 @media (max-width: 1024px) {
     .contact-section {
         padding: 60px 5%;
     }

     .container {
         gap: 40px;
     }

     .left h1 {
         font-size: 48px;
     }

     .left p {
         font-size: 18px;
     }

     .form-box {
         width: 450px;
     }
 }

 /* Mobile & Small Tablets */
 @media (max-width: 768px) {
     .contact-section {
         padding: 50px 4%;
     }

     .container {
         flex-direction: column;
     }

     .left {
         max-width: 100%;
         text-align: center;
     }

     .contact-grid {
         width: 100%;
         max-width: 600px;
         justify-self: center;
         text-align: left;
         margin-top: 30px;
     }

     .socials {
         justify-content: flex-start;
     }

     .form-box {
         width: 100%;
         max-width: 600px;
     }
 }

 /* Smaller Mobile Phones */
 @media (max-width: 480px) {
     .contact-section {
         padding: 40px 5%;
     }

     .left h1 {
         font-size: 32px;
         text-align: center;
     }

     .left p {
         font-size: 16px;
     }

     .contact-grid {
         grid-template-columns: 1fr 1fr;
         /* Stack the contact info entirely */
         gap: 20px;
     }

     .contact-grid .label {
         font-size: 14px;
     }

     .contact-grid .value {
         font-size: 14px;
     }

     .socials {
         gap: 6px;
     }

     .socials a {
         width: 20px;
         height: 20px;
         font-size: 12px;
     }

     .form-box {
         padding: 20px;
     }

     .form-box h2 {
         font-size: 28px;
         text-align: center;
     }

     .form-box p {
         font-size: 12px;
         text-align: center;
     }
 }

 /* Enquiry-card Section  */
 /* SECTION */
 .enquiry-card-section {
     margin: 0 auto;
     padding: 40px 5%;
     /* Requirement added here */
     text-align: center;
 }

 /* TITLE */
 .enquiry-card-section-title {
     font-family: 'Satoshi', sans-serif;
     font-size: 45px;
     font-weight: 600;
     color: #010E17;
     margin-bottom: 60px;
 }

 /* CARDS WRAPPER */
 .enquiry-card-section-cards {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
 }

 /* CARD */
 .enquiry-card-section-card {
     background: #fff;
     width: 100%;
     max-width: 330px;
     padding: 24px;
     border-radius: 12px;
     text-align: left;
     box-shadow: 0px 56px 90px -32px rgba(39, 113, 126, 0.158);
     border: 1px solid #65737e17;
     border-top: 5px solid #87A9D9;
     display: flex;
     flex-direction: column;
 }

 .enquiry-card-section-card-header {
     display: flex;
     gap: 15px;
     align-items: center;
     margin-bottom: 16px;
 }

 /* ICON BOX */
 .enquiry-card-section-icon-box {
     width: 50px;
     height: 50px;
     border-radius: 12px;
     background: linear-gradient(315.46deg, #87A9D9 6.26%, #9ADCDE 97.93%);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 /* CARD TITLE */
 .enquiry-card-section-card-title {
     font-size: 22px;
     font-weight: 700;
     color: #013A70;
 }

 /* DESCRIPTION */
 .enquiry-card-section-desc {
     font-size: 14px;
     color: #65737E;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
     /* Pushes content below to the bottom evenly */
 }

 /* CONTACT ROW */
 .enquiry-card-section-contact-item {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 10px;
     font-size: 14px;
     letter-spacing: 0.5px;
     font-weight: 600;
     color: #013A70;
 }

 .enquiry-card-section-icon {
     color: #75C3C6;
     font-size: 16px;
 }

 /* DIVIDER */
 .enquiry-card-section-divider {
     border-top: 1px solid #D5E5EA;
     margin: 20px 0;
 }

 /* AVAILABILITY */
 .enquiry-card-section-avail-title {
     font-weight: 550;
     font-size: 16px;
     color: #010E17;
     margin-bottom: 6px;
 }

 .enquiry-card-section-avail-text {
     font-size: 14px;
     color: #65737E;
 }


 /* =========================================
           RESPONSIVE MEDIA QUERIES 
           ========================================= */

 /* Tablets */
 @media (max-width: 1024px) {
     .enquiry-card-section-title {
         font-size: 38px;
         margin-bottom: 50px;
     }

     .enquiry-card-section-card {
         max-width: calc(50% - 15px);
         /* Allows 2 cards per row on tablet */
     }
 }

 /* Mobile & Small Tablets */
 @media (max-width: 768px) {
     .enquiry-card-section-title {
         font-size: 32px;
         margin-bottom: 40px;
     }

     .enquiry-card-section-cards {
         flex-direction: column;
         align-items: center;
     }

     .enquiry-card-section-card {
         max-width: 100%;
         /* Full width up to container bounds */
         width: 100%;
     }
 }

 /* Smaller Mobile Phones */
 @media (max-width: 480px) {
     .enquiry-card-section {
         padding: 30px 5%;
         /* Slightly tighter padding on very small screens, maintaining 5% margins */
     }

     .enquiry-card-section-title {
         font-size: 28px;
         margin-bottom: 30px;
     }

     .enquiry-card-section-card {
         padding: 20px;
     }

     .enquiry-card-section-card-header {
         flex-direction: column;
         text-align: center;
     }

     .enquiry-card-section-card {
         text-align: center;
     }

     .enquiry-card-section-contact-item {
         justify-content: center;
     }
 }

 /* whatsapp section  */
 /* SECTION */
 .whatsapp-cards-section {
     padding: 60px 5%;
     text-align: center;
 }

 .whatsapp-cards-section-title h2 {
     font-size: 34px;
     font-weight: 700;
     color: #0c2d57;
     margin-bottom: 10px;
 }

 .whatsapp-cards-section-title h2::after {
     content: "";
     display: block;
     width: 100px;
     height: 4px;
     background: #0c2d57;
     margin: 10px auto;
     border-radius: 2px;
 }

 .whatsapp-cards-section-title p {
     color: #6b7280;
     max-width: 650px;
     margin: auto;
     line-height: 1.6;
 }

 /* CONTAINER */
 .whatsapp-container {
     margin-top: 40px;
     display: flex;
     justify-content: center;
 }

 .whatsapp-wrapper {
     display: flex;
     max-width: 1200px;
     width: 100%;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 /* LEFT SIDE */
 .whatsapp-info {
     width: 50%;
     background: linear-gradient(135deg, #0f9d58, #0a7c44);
     color: #fff;
     padding: 50px 40px;
     text-align: left;
 }

 .whatsapp-info h2 {
     font-size: 32px;
     margin-bottom: 15px;
 }

 .whatsapp-info h2::after {
     content: "";
     display: block;
     width: 50px;
     height: 3px;
     background: #fff;
     margin-top: 10px;
 }

 .whatsapp-info p {
     margin: 20px 0;
     line-height: 1.7;
     color: #e6f5ec;
 }

 /* FEATURES */
 .whatsapp-features {
     list-style: none;
     padding: 0;
     margin-top: 25px;
 }

 .whatsapp-features li {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     font-size: 15px;
 }

 .whatsapp-features li::before {
     content: "✔";
     background: rgba(255, 255, 255, 0.2);
     margin-right: 12px;
     border-radius: 50%;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     flex-shrink: 0;
 }

 /* CONTACT */
 .whatsapp-contact {
     display: flex;
     align-items: center;
     margin-top: 40px;
 }

 .whatsapp-contact-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .whatsapp-contact-icon i {
     font-size: 1.5rem;
 }

 .whatsapp-contact-details {
     margin-left: 15px;
 }

 .whatsapp-contact-details h4 {
     margin: 0;
     font-size: 16px;
 }

 .whatsapp-contact-details p {
     margin: 5px 0 0;
 }

 /* RIGHT SIDE */
 .whatsapp-form-section {
     width: 50%;
     background: #ffffff;
     padding: 50px 40px;
     text-align: left;
 }

 .whatsapp-form-section h3 {
     font-size: 24px;
     color: #117a65;
     margin-bottom: 25px;
 }

 .whatsapp-form-section h3::after {
     content: "";
     display: block;
     width: 50px;
     height: 3px;
     background: #1abc9c;
     margin-top: 10px;
 }

 /* FORM */
 .whatsapp-form-group {
     margin-bottom: 18px;
 }

 .whatsapp-form-group label {
     font-size: 14px;
     font-weight: 600;
     display: block;
     margin-bottom: 6px;
 }

 .whatsapp-form-group input,
 .whatsapp-form-group select,
 .whatsapp-form-group textarea {
     width: 100%;
     padding: 12px 14px;
     border-radius: 6px;
     border: 1px solid #d1d5db;
     font-size: 14px;
     outline: none;
     transition: 0.3s;
 }

 .whatsapp-form-group input:focus,
 .whatsapp-form-group select:focus,
 .whatsapp-form-group textarea:focus {
     border-color: #1abc9c;
 }

 .whatsapp-form-group textarea {
     height: 110px;
     resize: none;
 }

 /* BUTTON */
 .whatsapp-btn {
     width: 100%;
     padding: 14px;
     background: linear-gradient(135deg, #25D366, #128C7E);
     border: none;
     color: #fff;
     font-size: 16px;
     border-radius: 6px;
     cursor: pointer;
     transition: 0.3s;
 }

 .whatsapp-btn:hover {
     opacity: 0.9;
 }


 /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

 /* Tablets */
 @media (max-width: 1024px) {

     .whatsapp-info,
     .whatsapp-form-section {
         padding: 40px 30px;
     }

     .whatsapp-info h2 {
         font-size: 28px;
     }
 }

 /* Mobile & Small Tablets */
 @media (max-width: 768px) {
     .whatsapp-cards-section {
         padding: 50px 15px;
     }

     .whatsapp-wrapper {
         flex-direction: column;
     }

     .whatsapp-info,
     .whatsapp-form-section {
         width: 100%;
         padding: 40px 25px;
     }

     .whatsapp-cards-section-title h2 {
         font-size: 30px;
     }
 }

 /* Smaller Mobile Phones */
 @media (max-width: 480px) {
     .whatsapp-cards-section {
         padding: 40px 10px;
     }

     .whatsapp-info,
     .whatsapp-form-section {
         padding: 30px 20px;
     }

     .whatsapp-cards-section-title h2 {
         font-size: 26px;
     }

     .whatsapp-info h2 {
         font-size: 24px;
     }

     .whatsapp-form-section h3 {
         font-size: 22px;
     }

     .whatsapp-contact-icon {
         width: 40px;
         height: 40px;
     }

     .whatsapp-contact-icon i {
         font-size: 1.2rem;
     }

     .whatsapp-features li {
         font-size: 14px;
     }
 }