/* Contact Page Content Responsive CSS - Mobile-First Approach */

/* ===== MOBILE FIRST BREAKPOINTS ===== */
/* Mobile: 320px - 767px (Default) */
/* Tablet: 768px - 1023px */
/* Medium Desktop: 1024px - 1439px */
/* Large Desktop: 1440px - 1919px */
/* HD Desktop: 1920px+ */

/* ===== MOBILE (320px - 767px) - DEFAULT ===== */
@media screen and (max-width: 767px) {
    /* Global Mobile Fixes */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Hero Section Mobile */
    .contact-hero {
        height: 50vh;
        min-height: 300px;
        width: 100%;
        overflow: hidden;
    }
    
    .contact-blur-overlay {
        padding: 15px 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .contact-heading {
        font-size: 20px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .contact-subtext {
        font-size: 13px;
        line-height: 1.3;
        max-width: 100%;
        margin: 0 auto;
        word-wrap: break-word;
    }
    
    /* Form Section Mobile */
    .form-section {
        padding: 15px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .contact-full-section {
        width: 95%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 10px;
        margin: 0 auto;
        flex-direction: column;
        overflow: hidden;
    }
    
    .contact-left {
        flex: none;
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-left h2 {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .contact-left form {
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-left input,
    .contact-left textarea {
        font-size: 11px;
        padding: 8px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-left textarea {
        resize: vertical;
        min-height: 60px;
    }
    
    .privacy-text {
        font-size: 9px;
        gap: 5px;
        line-height: 1.3;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .privacy-text input[type="checkbox"] {
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .privacy-text label {
        flex: 1;
        word-wrap: break-word;
    }
    
    .contact-left button {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Right side images Mobile */
    .contact-right {
        flex: none;
        height: 200px;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-right img {
        height: 100%;
        width: 33.33%;
        object-fit: cover;
        max-width: 33.33%;
    }
    
    /* Footer Section Mobile */
    .footer-section {
        padding: 20px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .footer-left {
        height: 150px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-left img {
        height: 100%;
        width: 33.33%;
        object-fit: cover;
        max-width: 33.33%;
    }
    
    .footer-middle {
        text-align: center;
        padding: 20px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-middle h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .footer-arrow-line {
        font-size: 24px;
        margin: 10px 0;
    }
    
    .book-btn-outline {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .footer-right {
        height: 200px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right iframe {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        gap: 20px;
        flex-direction: column;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item img {
        width: 24px;
        height: 24px;
        margin: 0 auto;
    }
    
    .contact-item .label {
        font-size: 12px;
        font-weight: 600;
    }
    
    .contact-item p {
        font-size: 11px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-links a {
        font-size: 11px;
        padding: 5px 0;
    }
    
    .footer-copy {
        text-align: center;
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-copy p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* Small Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
    .contact-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .contact-heading {
        font-size: 18px;
    }
    
    .contact-subtext {
        font-size: 12px;
    }
    
    .contact-full-section {
        width: 98%;
        border-radius: 8px;
    }
    
    .contact-left {
        padding: 15px 10px;
    }
    
    .contact-left h2 {
        font-size: 16px;
    }
    
    .contact-left form {
        gap: 10px;
    }
    
    .contact-left input,
    .contact-left textarea {
        font-size: 10px;
        padding: 6px 0;
    }
    
    .privacy-text {
        font-size: 8px;
    }
    
    .contact-left button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .contact-right {
        height: 150px;
    }
    
    .footer-left {
        height: 120px;
    }
    
    .footer-middle h2 {
        font-size: 16px;
    }
    
    .footer-arrow-line {
        font-size: 20px;
    }
    
    .book-btn-outline {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .footer-right {
        height: 150px;
    }
    
    .contact-item img {
        width: 20px;
        height: 20px;
    }
    
    .contact-item .label {
        font-size: 11px;
    }
    
    .contact-item p {
        font-size: 10px;
    }
    
    .footer-links a {
        font-size: 10px;
    }
    
    .footer-copy p {
        font-size: 9px;
    }
}


