/* ============================================
   PRIVACY POLICY PAGE - TECHORSES THEME
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #2563eb;
    --text-color: black;
    --white: #ffffff;
    --green: #006400;
    --orange: #ff5e0e;
    --bg-light: #eff3ef;
}

body {
    background-color: white;
}

/* NAVBAR STYLES */
.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    transform: scale(3.5);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* .logo:hover img {
    transform: scale(3.7);
} */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: #ff5e0e;
}

.nav-link.active {
    color: #ff5e0e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5e0e;
    animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.btn-lets-talk {
    background-color: #ff5e0e;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    background-color: white;
    color: #ff5e0e !important;
    border: 1px solid #ff5e0e;
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.2);
}

/* Services Dropdown - Desktop */
.services-dropdown {
    position: static;
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none;
}

/* Rotate icon when active */
/* .services-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
} */

.dropdown-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 115%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99;
    padding: 1.5rem 0;
    max-width: 1200px;
    width: fit-content;
    pointer-events: none;
}



.dropdown-container.active {
    pointer-events: auto;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background: #e7fff2ba;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item i {
    font-size: 1.5rem;
    color: #ff5e0e;
    margin-top: 0.3rem;
}

.dropdown-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.dropdown-item.active {
    background: rgba(255, 94, 14, 0.295) !important;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item:hover span {
    color: #333;
}

.dropdown-item:hover span .second-line {
    color: #666;
    transition: color 0.3s ease;
}

.dropdown-item span .second-line {
    display: block;
    font-weight: 500;
    color: white#666;
    font-size: 0.85rem;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ff5e0e;
}

/* Default: hide mobile logo, show desktop logo */
.logo-mobile {
    display: none;
}

.logo-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none !important;
}

/* Mobile  */
@media (max-width: 992px) {


    .dropdown-icon {
        display: inline-block !important;
    }


    .header {
        background-color: transparent;
    }

    .navbar-container {
        background-color: white;
    }

    .navbar-container.scrolled {
        border-radius: 0 0 30px 30px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Blur overlay for content behind menu */
    .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .blur-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 97%;
        height: 80vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem 2rem;
        overflow-y: auto;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-container {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        border-top: none;
        animation: none;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        color: #333;
        background: transparent;
        min-width: auto;
        width: 100%;
    }

    .dropdown-item-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-item:hover {
        transform: none;
        box-shadow: none;
        background: rgba(255, 94, 14, 0.05);
    }

    .dropdown-item span {
        color: #333;
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .dropdown-item span .second-line {
        color: #666;
        display: inline;
        font-weight: 500;
        font-size: 0.85rem;
        color: #666;
        /* margin-left: 0.3rem; */
    }

    .dropdown-item i {
        color: #ff5e0e;
        font-size: 1.2rem;
        min-width: 20px;
    }

    .services-dropdown.active .dropdown-container {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .services-dropdown {
        position: relative;
    }

    .services-dropdown.active .dropdown-container {
        position: fixed;
        top: 50%;
        left: 70%;
        /* transform: translate(-50%, -50%); */
        transform: translate(-50%, -50%);
        /* Shift slightly left */

        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        display: block !important;
        z-index: 100;
        animation: fadeInFromLeft 0.3s ease-out;
        /* New animation */
    }

    @keyframes fadeInFromLeft {
        from {
            opacity: 0;
            transform: translate(-60%, -50%);
            /* Starts more left */
        }

        to {
            opacity: 1;
            transform: translate(-30%, -50%);
            /* Ends slightly left */
        }
    }

    .services-dropdown.active .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-dropdown.active .dropdown-item {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 0.5rem;
    }

    .services-dropdown.active .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .services-dropdown.active .dropdown-item i {
        font-size: 1rem;
    }

    .services-dropdown.active .dropdown-item span {
        font-size: 0.7rem;
    }

    .services-dropdown.active .dropdown-item .second-line {
        font-size: 0.7rem;
    }

    /* Make sure overlay covers everything */
    .blur-overlay.active {
        z-index: 99;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .dropdown-item {
        pointer-events: auto;
        z-index: 101;
    }

    .services-dropdown.active .dropdown-container {
        display: flex;
        opacity: 1;
        visibility: visible;
        animation: fadeInFromLeft 0.3s ease-out;
    }

    .dropdown-content {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .dropdown-item.active {
        background: rgba(255, 94, 14, 0.1) !important;
        color: #ff5e0e !important;
        transform: none;
        box-shadow: none;
        border-left: 3px solid #ff5e0e;
    }
}

/* PRODUCTS DROPDOWN - Position below link */
.products-dropdown {
    position: relative;
}

.products-dropdown-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 200%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99;
    padding: 1rem 0;
    max-width: 1200px;
    width: fit-content;
}

/* Products dropdown specific - single line items */
.products-dropdown .dropdown-content {
    display: flex;
    gap: 1rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 1.5rem;
    min-width: 280px;
}

/* Style for single line dropdown items */
.products-dropdown .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* OVERRIDE any column styles from SERVICES */
.products-dropdown .dropdown-item-content {
    display: flex !important;
    flex-direction: row !important;
    /* FORCE row direction */
    align-items: center !important;
    gap: 0.3rem;
}

.products-dropdown .dropdown-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    display: inline !important;
    /* FORCE inline */
}

.products-dropdown .dropdown-item .second-line {
    display: inline !important;
    /* FORCE inline */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-left: 0.2rem;
}

.products-dropdown .dropdown-item i {
    font-size: 1.2rem;
    color: #ff5e0e;
    margin-top: 0;
}

/* Hover effect */
.products-dropdown .dropdown-item:hover {
    background: #e7fff2ba;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.products-dropdown .dropdown-item:hover span,
.products-dropdown .dropdown-item:hover .second-line {
    color: #333;
    display: inline !important;
}

/* Active state */
.products-dropdown-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Styles for Products */
@media (max-width: 992px) {
    .products-dropdown.active .dropdown-container {
        position: fixed;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        display: block !important;
        z-index: 100;
        animation: fadeInFromLeft 0.3s ease-out;
    }

    .products-dropdown.active .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .products-dropdown.active .dropdown-item {
        padding: 0.6rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 0.5rem;
        background: white;
        width: auto;
        margin-left: 0;
        display: flex !important;
        align-items: center !important;
        width: 60%;
        margin-left: -1rem;
    }

    .products-dropdown.active .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .products-dropdown.active .dropdown-item i {
        font-size: 1rem;
        color: #ff5e0e;
    }

    .products-dropdown.active .dropdown-item span {
        font-size: 0.7rem;
        color: #333;
        display: inline !important;
    }

    .products-dropdown.active .dropdown-item-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.2rem;
    }

    .products-dropdown.active .dropdown-item .second-line {
        display: inline !important;
        font-size: 0.7rem;
        color: #666 !important;
        margin-left: 0.2rem;
    }

    .products-dropdown.active .dropdown-item:hover {
        background: #f5f5f5;
    }

    .products-dropdown.active .dropdown-item:hover span,
    .products-dropdown.active .dropdown-item:hover .second-line {
        color: #333 !important;
    }
}



/* TABLET VIEW NAVBAR FIXES (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {

    /* Fix navbar menu width */
    .nav-menu {
        width: 80% !important;
        max-width: 450px !important;
        top: 5rem;
        padding: 2rem 1.5rem !important;
    }

    /* ADJUST DROPDOWN POSITIONING */
    .services-dropdown.active .dropdown-container {
        left: 0% !important;
        width: 40% !important;
        top: 45% !important;
        max-width: 240px !important;
        background: white !important;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
        padding: 0.8rem !important;
    }

    .products-dropdown.active .dropdown-container {
        left: 0% !important;
        width: 30% !important;
        top: 25% !important;
        background: white !important;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
        padding: 0.8rem !important;
    }

    /* FIX TEXT COLOR ISSUE - THIS IS THE IMPORTANT PART */
    .services-dropdown.active .dropdown-item,
    .products-dropdown.active .dropdown-item {
        color: #333333 !important;
        /* Dark color for text */
        background: white !important;
        padding: 0.6rem 0.8rem !important;
        margin-bottom: 0.4rem !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 8px !important;
        transition: all 0.2s ease;
    }

    /* Fix for service dropdown items - ensure all text is visible */
    .services-dropdown.active .dropdown-item span,
    .products-dropdown.active .dropdown-item span {
        color: #333333 !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
    }

    /* Fix for the second line text */
    .services-dropdown.active .dropdown-item .second-line,
    .products-dropdown.active .dropdown-item .second-line {
        color: #666666 !important;
        font-size: 0.7rem !important;
        display: inline !important;
    }

    /* Fix icon color - keep orange */
    .services-dropdown.active .dropdown-item i,
    .products-dropdown.active .dropdown-item i {
        color: #ff5e0e !important;
        font-size: 1rem !important;
        min-width: 20px;
    }

    /* Fix hover states */
    .services-dropdown.active .dropdown-item:hover,
    .products-dropdown.active .dropdown-item:hover {
        background: #f8f8f8 !important;
        border-color: #ff5e0e !important;
        transform: translateY(-2px);
    }

    .services-dropdown.active .dropdown-item:hover span,
    .products-dropdown.active .dropdown-item:hover span {
        color: #ff5e0e !important;
    }

    /* Adjust dropdown animation */
    @keyframes fadeInFromLeft {
        from {
            opacity: 0;
            transform: translate(-70%, -50%);
        }

        to {
            opacity: 1;
            transform: translate(-40%, -50%);
        }
    }

    /* Better spacing for nav items */
    .nav-item {
        margin: 0.8rem 0 !important;
    }

    /* Ensure dropdowns don't go off screen */
    .services-dropdown.active .dropdown-container,
    .products-dropdown.active .dropdown-container {
        animation: fadeInFromLeft 0.3s ease-out;
        transform: translate(-40%, -50%) !important;
    }

    /* Fix for very small tablets (768px - 850px) */
    @media (max-width: 850px) {
        .nav-menu {
            width: 85% !important;
            max-width: 450px !important;
        }

        .services-dropdown.active .dropdown-container {
            left: 0% !important;
            width: 45% !important;
            top: 45% !important;
            transform: translate(-50%, -50%) !important;
        }

        .products-dropdown.active .dropdown-container {
            left: 0% !important;
            width: 30% !important;
            top: 25% !important;
            transform: translate(-50%, -50%) !important;
        }

        /* Ensure text is visible on very small tablets */
        .services-dropdown.active .dropdown-item span,
        .products-dropdown.active .dropdown-item span {
            font-size: 0.75rem !important;
        }
    }
}

/* LETS TALK MODEL  */

/* Modal Styles */
.lets-talk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lets-talk-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 2rem;
}

.lets-talk-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 3;
}

.modal-close-btn:hover {
    color: #ff5e0e;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 95px;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e0e;
    background-color: white;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #ff5e0e;
    background-color: white;
}

.submit-btn {
    background-color: #ff5e0e;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #e0550c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.3);
}


.lets-talk-style {
    position: relative;

}

.lets-talk-sleeping,
.lets-talk-awake {
    position: absolute;
    top: -48px;
    right: -0px;
    width: 50px;
    height: 50px;

    img {
        width: 100%;
        height: auto;
    }
}

.lets-talk-awake {
    display: none;
}

.lets-talk-style:hover .lets-talk-sleeping {
    display: none;
}

.lets-talk-style:hover .lets-talk-awake {
    display: block;
}


/* Mobile Specific Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-group label {
        top: 0.8rem;
        left: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        gap: 1rem;
    }
}

/* ============================================
   POLICY PAGE STYLES
   ============================================ */

.policy-page {
    background-color: var(--bg-light);
    min-height: calc(100vh - 500px);
}

.policy-hero {
    background: linear-gradient(135deg, #006400 0%, #008000 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.policy-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.policy-content {
    padding: 3rem;
}

.effective-date {
    background: #f3f4f6;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.effective-date strong {
    color: #006400;
}

.policy-section {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #006400;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff5e0e;
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 1.2rem 0 0.8rem 0;
}

.policy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0 1rem 1.8rem;
    color: #4b5563;
    line-height: 1.7;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: #006400;
}

.info-box {
    background: #f0fdf4;
    border-left: 4px solid #006400;
    padding: 1.2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.info-box p {
    margin-bottom: 0.3rem;
}

/* ============================================
   FOOTER STYLES (SAME AS INDEX)
   ============================================ */

footer {
    background: #d5ded5;
    padding: 2rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-column {
    flex: 1 1 auto;
    min-width: 90px;
    padding: 0 0.5rem;
}

.footer-logo-column {
    flex: 1 1 250px;
    min-width: 20px;
}

.footer-logo-column img {
    max-width: 120px;
    margin-bottom: -0.5rem;
    margin-top: -2rem;
    transform: scale(1.8);
    margin-left: 10%;
}

.footer-logo-column p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-wrapper button {
    background-color: #ff5e0e;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ff5e0e;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
}

.footer-social-wrapper button:hover {
    background-color: transparent;
    color: #ff5e0e;
}

.footer-column h3 {
    color: #ff5e0e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.footer-column li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: #ff5e0e;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #ff5e0e;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ff5e0e;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #ff5e0e;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.contact-line i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
}

.contact-line a,
.address-text {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: #ff5e0e;
}

.mobile-social {
    display: none;
}

.footer-copyright-section {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Go to Top Button */
#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#goToTopBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: white;
    color: #006400;
}

/* WhatsApp Button */
#whatsappBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #006400;
    color: white;
    border: 2px solid #006400;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

#whatsappBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet & Mobile Menu */
@media (max-width: 992px) {
    .dropdown-icon {
        display: inline-block !important;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 80%;
        height: 80vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        overflow-y: auto;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-container {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 100%;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .dropdown-item {
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        background: transparent;
        min-width: auto;
    }

    .services-dropdown.active .dropdown-container,
    .products-dropdown.active .dropdown-container {
        display: block;
        position: fixed;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 100;
    }

    .mobile-none {
        display: none !important;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        text-align: center;
        padding: 0;
    }

    .footer-logo-column img {
        margin: -30px auto -10px;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 15%;
    }

    .footer-social-wrapper {
        justify-content: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-line {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .policy-hero {
        padding: 2.5rem 1rem;
    }

    .policy-hero h1 {
        font-size: 1.8rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.85rem;
    }

    .info-box {
        padding: 1rem;
    }

    .modal-container {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.5rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .footer-logo-column p {
        padding: 0 5%;
    }
}

/* Tablet (768px - 992px) Fixes */
@media (min-width: 768px) and (max-width: 992px) {
    .nav-menu {
        width: 60% !important;
        max-width: 350px !important;
    }

    .footer-logo-column p {
        padding: 0 10%;
    }
}










/*------------------------------------- FOOTER */
.desktop-social {
    display: flex;
}

.mobile-social {
    display: none;
}

/* Active footer link styles */
.active-footer-link {
    color: #ff5e0e !important;
    font-weight: 600;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.1s ease;
    display: block;
}

.footer-link:hover {
    color: #ff5e0e;
}

.mobile-social .footer-socials {
    justify-content: center;
}

footer {
    background: #d5ded5;
    padding: 2rem 2rem 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-column {
    flex: 1 1 auto;
    min-width: 90px;
    padding: 0rem;
}

.footer-logo-column {
    flex: 1 1 270px;
    min-width: 20px;
}

/* Specific adjustments for Explore and Services columns */
.footer-column:nth-child(2) {
    flex: 0 1 150px !important;
    min-width: 160px !important;
}

.footer-column:nth-child(3) {
    flex: 0 1 100px;
    min-width: 100px;
}

.footer-column:nth-child(4) {
    flex: 0 1 160px;
    min-width: 160px;
}

/* Contact column should take remaining space */
.footer-column:last-child {
    flex: 1 1 250px;
}

.footer-logo-column img {
    max-width: 120px;
    margin-bottom: -0.5rem;
    margin-top: -2rem;
    transform: scale(1.8);
    margin-left: 10%;
}

.footer-logo-column p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-logo-column button {
    background-color: #ff5e0e;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ff5e0e;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: block;
    width: 100%;
    max-width: 200px;
}

.footer-logo-column button:hover {
    background-color: transparent;
    color: #ff5e0e;
}

.client-btn-with-icon {
    position: relative;
}

.client-btn-with-icon .client-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.footer-column h3 {
    color: #ff5e0e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-column li:hover {
    color: #ff5e0e;
}

/* CONTACT SECTION STYLES */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: #ff5e0e;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-right: 5px;
    flex-shrink: 0;
    line-height: 1.5;
}

.contact-items {
    display: flex;
    align-items: center;
    line-height: 1.5;
    flex-wrap: nowrap;
}

.contact-item {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 24px;
}

.contact-line .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-line .contact-item i {
    align-self: center;
    margin-top: 0;
}

.contact-item i {
    align-self: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-separator {
    color: #999;
    padding: 0 0.5rem;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    line-height: 1;
}

.address-item {
    display: flex;
    margin-bottom: 0.8rem;
}

.address-item i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;
}

.contact-line i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;
}

.address-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* SOCIAL MEDIA STYLES */
.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #ff5e0e;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ff5e0e;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #ff5e0e;
    color: white;
}

/* COPYRIGHT SECTION */
.footer-copyright-section {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hide mobile copyright by default */
.mobile-copyright {
    display: none;
}

/* Desktop Copyright */
.desktop-copyright {
    display: block;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-color);
}

.footer-copyright span {
    color: #ff5e0e;
    font-weight: 600;
    cursor: pointer;
}

/* GO TO TOP BUTTON */
#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#goToTopBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: white;
    color: #006400;
}

/* Phone number links styling */
.contact-text {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover,
.call-link:hover,
.email-link:hover {
    color: #ff5e0e;
    text-decoration: none;
}

/* Show/hide phone versions based on device */
.desktop-phone {
    display: block;
}

.mobile-phone {
    display: none;
}

/* Email links specific styling */
.email-link:hover {
    color: #ff5e0e;
}

/* =============================================
   NEW QUERY: 1100px to 1201px - HIDE PRODUCTS COLUMN
   ============================================= */
@media (min-width: 1100px) and (max-width: 1201px) {

    /* Hide Products column (third column) */
    .footer-column:nth-child(3) {
        display: none;
    }

    /* Adjust remaining columns to fill space */
    .footer-main-row {
        justify-content: flex-start;
    }

    .footer-column:nth-child(2) {
        flex: 0 1 100px;
    }

    .footer-column:nth-child(4) {
        flex: 0 1 180px;
    }

    .footer-column:last-child {
        flex: 1 1 300px;
    }
}

/* =============================================
   TABLET VIEW (768px to 992px) - COMPLETELY FIXED
   ============================================= */
@media (min-width: 768px) and (max-width: 992px) {

    /* Hide desktop elements */
    .desktop-copyright,
    .desktop-social,
    .mobile-none {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    .mobile-social {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    /* General Footer Styles */
    footer {
        padding: 1.5rem 2rem 0;
    }

    /* Show separators in tablet view */
    .contact-separator {
        display: inline-block !important;
        color: #999;
        padding: 0 0.5rem;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0;
        text-align: center;
        flex: 1 1 100% !important;
        min-width: 100%;
    }

    /* Logo Column */
    .footer-logo-column img {
        margin: -30px auto -10px;
        max-width: 150px;
        transform: scale(1.8);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 15%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .footer-logo-column button {
        margin: 1rem auto;
        max-width: 200px;
    }

    /* Hide Products and other desktop columns */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        display: none;
    }

    /* Contact Section - Tablet View */
    .footer-column:last-child h3 {
        display: none;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        padding: 0 15%;
        max-width: 700px;
        margin: 0 auto;
        align-items: center;
    }

    /* Address Section */
    .address-line {
        display: flex;
        align-items: flex-start;
        text-align: left;
        max-width: 550px;
        margin: 0 auto;
    }

    .address-line i {
        color: #ff5e0e;
        font-size: 0.9rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .address-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ===== CRITICAL FIX: Phone Numbers in SAME ROW ===== */
    .phone-line {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .phone-line .contact-items {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: wrap;
    }

    .phone-line .contact-item {
        display: inline-flex !important;
        align-items: center;
        gap: 0.3rem;
        white-space: nowrap;
    }

    .phone-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
    }

    /* ===== CRITICAL FIX: Emails in SAME ROW ===== */
    .email-line {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .email-line .contact-items {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: wrap;
    }

    .email-line .contact-item {
        display: inline-flex !important;
        align-items: center;
        gap: 0.3rem;
        white-space: nowrap;
    }

    .email-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
    }

    /* Mobile Social Icons */
    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 94, 14, 0.1);
        color: #ff5e0e;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background: #ff5e0e;
        color: white;
    }

    /* Keep the button in logo column */
    .footer-logo-column button {
        display: block !important;
    }

    /* Move social icons below contact details */
    .footer-social-wrapper {
        order: 1;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }

    /* Hide desktop social icons */
    .desktop-social {
        display: none !important;
    }

    /* Copyright Section - SAME ROW */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    .mobile-copyright .footer-copyright {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.3rem !important;
        font-size: 0.85rem !important;
        flex-wrap: wrap !important;
    }

    .mobile-copyright .footer-copyright br {
        display: none !important;
    }
}

/* Small adjustments for smaller tablets */
@media (min-width: 768px) and (max-width: 850px) {
    .footer-logo-column p {
        padding: 0 15%;
    }

    .contact-info {
        padding: 0 20%;
    }

    .phone-line .contact-items,
    .email-line .contact-items {
        flex-direction: row !important;
        /* Keep row but allow wrap */
    }

    .phone-line .contact-item,
    .email-line .contact-item {
        white-space: normal;
        /* Allow text to wrap if needed */
    }
}

/* =============================================
   MOBILE VIEW (below 768px) - ORIGINAL MOBILE STYLES
   ============================================= */
@media (max-width: 767px) {

    /* General Mobile Footer Styles */
    footer {
        padding: 1.5rem 1rem 0;
    }

    .contact-separator {
        display: none !important;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0;
        text-align: center;
        flex: 1 1 100%;
    }

    /* Logo Column */
    .footer-logo-column img {
        margin: -30px auto -10px;
        max-width: 150px;
        transform: scale(1.8);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 10%;
    }

    .footer-logo-column button {
        margin: 1rem auto;
        max-width: 200px;
    }

    /* Hide desktop elements */
    .desktop-copyright,
    .desktop-social,
    .mobile-none {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    /* Contact Section - Mobile View */
    .footer-column:last-child h3 {
        display: none;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0 10%;
        box-sizing: border-box;
        align-items: center;
    }

    /* Address Section */
    .address-line {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }

    .address-line i {
        color: #ff5e0e;
        font-size: 0.9rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .address-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Phone Numbers Section */
    .phone-line .contact-items {
        display: flex;
        flex-direction: column;
    }

    .phone-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .phone-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Email Section */
    .email-line .contact-items {
        display: flex;
        flex-direction: column;
    }

    .email-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .email-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Mobile Social Icons */
    .mobile-social {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 94, 14, 0.1);
        color: #ff5e0e;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background: #ff5e0e;
        color: white;
    }

    /* Keep the button in logo column */
    .footer-logo-column button {
        display: block !important;
    }

    /* Move social icons below contact details */
    .footer-social-wrapper {
        order: 1;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }

    /* Hide desktop social icons */
    .desktop-social {
        display: none !important;
    }

    /* Adjust contact info spacing */
    .contact-info {
        gap: 1.2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    footer {
        padding: 1rem 0.5rem 0;
    }

    .footer-logo-column p,
    .address-text,
    .contact-item {
        font-size: 0.85rem;
    }

    .contact-info {
        padding: 0 5%;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .desktop-phone {
        display: none !important;
    }

    .mobile-phone {
        display: block;
    }
}