/* Unique footer class prevents style bleeding onto other sections */
.my-custom-footer-cta {
    background-color: #1a1a1a; 
    color: #ffffff;
    padding: 60px 0;
    font-family: sans-serif;
}

.my-custom-footer-cta .cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Modern Grid: 2 equal-width columns on desktops */
.my-custom-footer-cta .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center; 
}

/* Typography & Lists */
.my-custom-footer-cta .cta-content h5 {
    color: #ff5e14; 
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.my-custom-footer-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.my-custom-footer-cta .cta-content p {
    color: #cccccc;
    margin-bottom: 25px;
}

.my-custom-footer-cta .cta-content ul {
    list-style: none;
    padding: 0;
}

.my-custom-footer-cta .cta-content ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-custom-footer-cta .cta-content ul i {
    color: #28a745; 
}

/* Form Layout & Fields */
.my-custom-footer-cta .contact-form .form-group {
    margin-bottom: 20px;
}

.my-custom-footer-cta .form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #2b2b2b;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}

.my-custom-footer-cta .form-control::placeholder {
    color: #888;
}

.my-custom-footer-cta select.form-control {
    background-color: #2b2b2b;
}

/* Modern CTA Button */
.my-custom-footer-cta .btn-primary {
    background-color: #ff5e14;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.my-custom-footer-cta .btn-primary:hover {
    background-color: #e04f0f;
}

/* Accessibility Support for Screen Readers */
.my-custom-footer-cta .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Responsive Mobile Layout Breakpoint --- */
@media (max-width: 768px) {
    .my-custom-footer-cta .cta-grid {
        grid-template-columns: 1fr; /* Snap to a 1-column stack on mobile */
        gap: 40px;
    }
    
    .my-custom-footer-cta .cta-content h2 {
        font-size: 2rem; 
    }
}

/* Floating WhatsApp Widget Styles */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Official WhatsApp Green */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Forces the widget to sit on top of all other layout layers */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Smooth zoom effect when the user hovers over it */
.whatsapp-float-widget:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* Smooth pop-in animation on layout load */
@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.whatsapp-float-widget {
    animation: popIn 0.5s ease-out;
}
