/* Compact Social Icons Row */
.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 20px 0;
    padding: 15px 0;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #4a6cf7 100%);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.social-icon-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #4a6cf7 100%);
}

.social-icon-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Make icons white */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons-row {
        gap: 20px;
        margin: 15px 0;
    }
    
    .social-icon-link {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-link img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .social-icons-row {
        gap: 15px;
    }
    
    .social-icon-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-link img {
        width: 20px;
        height: 20px;
    }
}

/* Ensure proper spacing for the download button */
.social-icons-row + .btn-area {
    margin-top: 25px;
}

/* Mobile responsive text sizing for contact heading */
@media (max-width: 768px) {
    .contact-text-area .pbmit-heading-subheading h2 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .contact-text-area .pbmit-heading-subheading h2 .designer {
        font-size: 2rem !important;
    }
    
    .contact-text-area .pbmit-heading-subheading .marketer {
        font-size: 1.4rem !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    .contact-text-area .pbmit-heading-subheading h2 {
        font-size: 1.6rem !important;
        line-height: 1.0 !important;
    }
    
    .contact-text-area .pbmit-heading-subheading h2 .designer {
        font-size: 1.6rem !important;
    }
    
    .contact-text-area .pbmit-heading-subheading .marketer {
        font-size: 1.2rem !important;
        line-height: 1.0 !important;
    }
}

@media (max-width: 360px) {
    .contact-text-area .pbmit-heading-subheading h2 {
        font-size: 1.4rem !important;
        line-height: 1.0 !important;
    }
    
    .contact-text-area .pbmit-heading-subheading h2 .designer {
        font-size: 1.4rem !important;
    }
    
    .contact-text-area .pbmit-heading-subheading .marketer {
        font-size: 1rem !important;
        line-height: 1.0 !important;
    }
}

/* Mobile form width adjustments */
@media (max-width: 768px) {
    .contact-from-area {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 25px !important;
        box-sizing: border-box !important;
    }
    
    .contact-from-area .input input,
    .contact-from-area .input select,
    .contact-from-area .input textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 25px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        border: 2px solid #e0e0e0 !important;
        transition: border-color 0.3s ease !important;
    }
    
    .contact-from-area .input input:focus,
    .contact-from-area .input select:focus,
    .contact-from-area .input textarea:focus {
        border-color: #4a6cf7 !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1) !important;
    }
    
    .contact-from-area .input {
        margin-bottom: 25px !important;
    }
    
    .contact-from-area h3 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .contact-from-area {
        padding: 20px 15px !important;
        margin: 0 -10px !important;
        width: calc(100% + 20px) !important;
    }
    
    .contact-from-area .input input,
    .contact-from-area .input select,
    .contact-from-area .input textarea {
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-radius: 6px !important;
    }
    
    .contact-from-area .input {
        margin-bottom: 20px !important;
    }
    
    .contact-from-area h3 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 360px) {
    .contact-from-area {
        padding: 15px 10px !important;
        margin: 0 -15px !important;
        width: calc(100% + 30px) !important;
    }
    
    .contact-from-area .input input,
    .contact-from-area .input select,
    .contact-from-area .input textarea {
        padding: 14px 18px !important;
        font-size: 15px !important;
    }
    
    .contact-from-area .input {
        margin-bottom: 18px !important;
    }
    
    .contact-from-area h3 {
        font-size: 1.4rem !important;
        margin-bottom: 18px !important;
    }
}
