/* ===================================
   FOOTER CONTACT SECTION STYLES
   =================================== */

/* Global Body Styles */
body {
    overflow-x: hidden !important;
    background-color: #F0EFE7 !important;
}

/* Main Contact Section */
.contact-section {
    background-color: #003b4a;
    color: #F0EFE7;
}

/* Contact Information Typography */
.contact-info p {
    font-size: 22px;
    line-height: 1.8;
    font-family: 'Montserrat';
    color: #F0EFE7 !important;
}

/* Contact Section Images (Maps) */
.contact-info img {
    width: 100%;
    max-width: 220px;
    margin: 10px 0;
    border-radius: 8px;
}

/* Contact Section Headers */
.contact-section h1 {
    font-size: 36px;
    color: #ECD8B6;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 40px;
}

.contact-section h3 {
    font-family: "Libre Baskerville", sans-serif;
    font-size: xx-large;
    margin-bottom: 40px;
}

/* Contact Info Container */
.contact-info {
    padding-left: 30px;
}

/* Form Controls */
.form-label {
    font-weight: 500;
}

input {
    height: 50px;
}

.form-control {
    border-radius: 8px;
    margin: 0px 2px 28px 2px;
}

/* Submit Button Styles */
.submit-btn {
    background-color: #00cfe8;
    color: #003b4a;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-family: Lora;
}

.submit-btn:hover {
    background-color: #ECD8B6;
}

/* ===================================
   SOCIAL MEDIA ICONS
   =================================== */

/* Social Icons Container */
.social-icons .icon-link2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #F0EFE7;
    border-radius: 50%;
    color: #183D4A;
    text-decoration: none;
    overflow: visible;
    transition: background-color 0.3s ease, transform 0.3s ease, border-radius 0.3s ease;
    z-index: 1;
}

.social-icons .icon-link2:hover {
    background-color: #13C2CF;
    border-radius: 50% 50% 50% 50%;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Padding Utilities */
.pl-5 {
    padding-left: 3rem !important;
}

.pr-5 {
    padding-right: 3rem !important;
}

/* ===================================
   LOGO CORNER STYLES
   =================================== */

/* Curved logo at the bottom-right */
.logo-corner {
    position: relative;
    bottom: -1px;
    right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-corner img {
    max-width: 200px !important;
    position: relative;
    object-fit: contain;
}

/* ===================================
   FOOTER BOTTOM SECTION
   =================================== */

.footer span {
    font-size: 16px;
    font-weight: 400;
}

/* ===================================
   FILE UPLOAD STYLES
   =================================== */

.upload-btn {
    background-color: #ece8dd;
    color: #003f4f;
    border: none;
    padding: 10px 20px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border-radius: 6px;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background-color: #e2ddd2;
}

.upload-btn i {
    font-size: 18px;
}

#fileInput {
    display: none;
}

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

/* Large Desktop Screens */
@media (min-width: 1480px) {
    .logo-corner {
        bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        max-width: 200px;
        position: relative;
        object-fit: contain;
    }
}

/* Laptops and Large Tablets */
@media (max-width: 1200px) {
    .form-control {
        margin: 0px 2px 32px 2px !important;
    }

    .contact-info p {
        font-size: 16px !important;
    }

    .contact-section h1 {
        font-size: 39px !important;
    }

    .contact-section h2 {
        font-size: 26px !important;
    }

    .logo-corner {
        bottom: 0px;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 200px;
        object-fit: contain;
    }
}

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .form-control {
        margin: 0px 2px 32px 2px !important;
    }

    .contact-info p {
        font-size: 17px !important;
    }

    .contact-section h1 {
        font-size: 37px !important;
    }

    .contact-section h2 {
        font-size: 25px !important;
    }

    .logo-corner {
        bottom: -1px;
        right: -11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 200px;
        object-fit: contain;
    }

    .footer span {
        padding: 5px;
        font-size: 13px;
        font-weight: 400;
    }
}

/* Medium Tablets */
@media (max-width: 996px) {
    .form-control {
        margin: 0px 2px 9px 2px !important;
    }

    .contact-info p {
        font-size: 12px !important;
    }

    .contact-section h1 {
        font-size: 30px !important;
    }

    .contact-section h2 {
        font-size: 20px !important;
    }

    .logo-corner {
        bottom: 0px;
        right: -12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 200px;
        object-fit: contain;
    }

    .footer span {
        padding: 5px;
        font-size: 13px;
        font-weight: 400;
    }

    .submit-btn {
        padding: 7px 17px;
        font-size: 14px;
    }
}

/* Mobile Devices Portrait */
@media (max-width: 767px) {
    .logo-corner {
        bottom: -1px;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-section h3 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 18px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 600px) {
    .form-control {
        margin: 0px 2px 6px 2px !important;
    }

    .contact-info p {
        font-size: 18px !important;
    }

    .contact-section h1 {
        font-size: 30px !important;
        padding-top: 0px;
        margin-bottom: 20px !important;
    }

    .contact-section h2 {
        font-size: 22px !important;
        margin-bottom: 25px;
    }

    .contact-section h3 {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .logo-corner {
        bottom: 0px;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 200px;
        object-fit: contain;
    }

    .footer span {
        padding: 5px;
        font-size: 13px;
        font-weight: 400;
    }

    .submit-btn {
        padding: 7px 17px;
        font-size: 14px;
    }
}

/* Mobile Landscape and Small Portrait */
@media (max-width: 480px) {
    .contact-info {
        margin-top: 0px;
    }

    .form-control {
        margin: 0px 2px 5px 2px !important;
    }

    .contact-info p {
        font-size: 14px !important;
    }

    .contact-section h1 {
        font-size: 26px !important;
        padding-top: 0px !important;
        margin-bottom: 20px !important;
    }

    .contact-section h2 {
        font-size: 19px !important;
    }

    .contact-section h3 {
        margin-bottom: 20px;
    }

    .logo-corner {
        bottom: 0px;
        right: 0;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 156px !important;
        object-fit: contain;
    }

    .footer span {
        padding: 5px;
        font-size: 13px;
        font-weight: 400;
    }

    .pl-5 {
        padding-left: 0rem !important;
    }

    .pr-5 {
        padding-right: 0rem !important;
    }

    .submit-btn {
        padding: 7px 17px;
        font-size: 14px;
        font-weight: 600;
    }

    .contact-form-container form {
        padding-right: 0px;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 380px) {
    .form-control {
        margin: 0pc 2px 2px 2px !important;
    }

    .contact-info p {
        font-size: 12px !important;
    }

    .contact-section h1 {
        font-size: 22px !important;
        padding-top: 0px !important;
        margin-bottom: 20px !important;
    }

    .contact-section h2 {
        font-size: 15px !important;
    }

    .contact-section h3 {
        margin-bottom: 20px;
    }

    .pl-5 {
        padding-left: 1rem !important;
    }

    .pr-5 {
        padding-right: 0rem !important;
    }

    .logo-corner {
        right: 0;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 200px;
        object-fit: contain;
    }

    .footer span {
        padding: 5px;
        font-size: 13px;
        font-weight: 400;
    }

    .submit-btn {
        padding: 7px 17px;
        font-size: 14px;
        font-weight: 600;
    }
}

/* Smallest Mobile Devices */
@media (max-width: 320px) {
    .form-control {
        margin: 0px 2px 12px 2px !important;
    }

    .contact-section h1 {
        font-size: 27px !important;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px !important;
        text-align: center;
        font-weight: normal;
    }

    .contact-section h3 {
        margin-bottom: 20px;
    }

    .logo-corner {
        bottom: 0px;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-corner img {
        position: relative;
        max-width: 133px;
        object-fit: contain;
    }

    .submit-btn {
        padding: 7px 17px;
        font-size: 14px;
    }
}

/* ===================================
   4K DISPLAYS (2560px and above) - Footer Only
   =================================== */
@media screen and (min-width: 2560px) {

    /* Contact Section - Enhanced for 4K */

    .contact-section h1 {
        font-size: 72px !important;
        margin-bottom: 60px !important;
        line-height: 1.2 !important;
    }

    .contact-section h2 {
        font-size: 48px !important;
        margin-bottom: 40px !important;
        line-height: 1.3 !important;
    }

    .contact-section h3 {
        font-size: 72px !important;
        margin-bottom: 50px !important;
        line-height: 1.3 !important;
    }

    /* Contact Information - Larger text for 4K */
    .contact-info p {
        font-size: 32px !important;
        line-height: 2.2 !important;
        margin-bottom: 25px !important;
    }

    .contact-info img {
        max-width: 400px !important;
        margin: 20px 0 !important;
        border-radius: 12px !important;
    }

    /* Form Controls - Enhanced for 4K */
    .form-label {
        font-size: 27px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
    }

    input {
        height: 80px !important;
        font-size: 28px !important;
        padding: 0 25px !important;
    }

    .form-control {
        border-radius: 12px !important;
        margin: 0px 2px 50px 2px !important;
        font-size: 28px !important;
    }

    /* Submit Button - Enhanced for 4K */
    .submit-btn {
        font-size: 38px !important;
    }

    /* Social Media Icons - Enhanced for 4K */
    .social-icons .icon-link2 {
        width: 88px !important;
        height: 88px !important;
        font-size: 36px !important;
        margin: 0 15px !important;
    }

    .logo-corner img {
        max-width: 400px !important;
        margin-bottom: 0%;
    }

    .form-check-input{
        width: 10px !important;
        height: 50px !important;
    }

    .form-check-label{
        font-size: 35px !important;
        padding-left: 10px;
    }
    /* Footer Bottom - Enhanced for 4K */
    .footer span {
        font-size: 28px !important;
        font-weight: 400 !important;
        padding: 15px !important;
        letter-spacing: 0.5px !important;
    }


    /* Enhanced spacing and layout for 4K */
    .contact-info {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .pl-5 {
        padding-left: 5rem !important;
    }

    .pr-5 {
        padding-right: 5rem !important;
    }
    
}