/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    overflow-x: hidden;
}

/* Contact Section Styling */
.contact-install {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
}

.install-header h1 {
    font-size: 3.2rem;
    color: #ff6f00;
    text-shadow: 0 0 8px #ff8c00, 0 0 15px #ffd700;
    margin-bottom: 1rem;
    animation: glowText 1.5s infinite alternate;
}

.install-header p {
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

/* Container Styling */
.contact-form {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-top: 2.5rem;
    gap: 2rem;
    animation: slideIn 1.5s ease;
}

.contact-install-form,
.contact-info {
    background: linear-gradient(145deg, #ffffff, #fff3e0);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(255, 200, 0, 0.4), inset 0 3px 8px rgba(255, 255, 255, 0.2);
    width: 100%;
    border: 1px solid #ffd740;
}

.contact-install-form h2,
.contact-info h2 {
    color: #ff6f00;
    text-shadow: 0 0 8px #ffb300, 0 0 15px #ff6f00;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-install-form label {
    display: block;
    margin-top: 1.5rem;
    color: #555;
}

.contact-install-form input,
.contact-install-form textarea {
    width: 100%;
    padding: 1rem;
    margin-top: 0.7rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    color: #333;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
    border: 1px solid #ffd740;
}

.contact-install-form input:focus,
.contact-install-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #ffb300;
}

.contact-install-btn {
    margin-top: 2rem;
    padding: 1rem;
    width: 100%;
    font-size: 1.2rem;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #ff8c00, #ffd740);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    text-shadow: 0 0 5px #fff, 0 0 10px #ffb300;
}

.contact-install-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(255, 165, 0, 0.5);
}

/* Contact Information */
.benefits-list {
    color: #555;
    margin-top: 1.5rem;
    list-style: disc;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.contact-image {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    animation: float 4s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(255, 180, 0, 0.5));
    border-radius: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glowText {
    from { text-shadow: 0 0 10px #ffb300, 0 0 30px #ff6f00; }
    to { text-shadow: 0 0 20px #ff6f00, 0 0 40px #ffd700; }
}


.footer {
    background-color: #222; /* Dark and authentic color */
    color: #f3f3f3;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

/* Scroll-to-Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f00, #ffd700);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffd700, #ff7f00);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.scroll-to-top:hover i {
    transform: scale(1.1);
}

/* Show button when scrolling */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Custom Scrollbar */
body {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ffd700 transparent; /* For Firefox */
}

/* Webkit Browsers */
body::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff7f00, #ffd700);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #ff7f00);
}

body::-webkit-scrollbar-track {
    background: transparent;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact,
.footer-social {
    min-width: 250px;
    margin-top: 20px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffa500; /* Orange accent for headings */
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: #f3f3f3;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333; /* Neutral dark background */
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #f3f3f3; /* Light text color */
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ffa500; /* Orange hover effect */
    color: #222; /* Contrast color for hover */
}

.social-icon i {
    pointer-events: none; /* Ensures icon interaction doesn't disrupt hover effect */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffa500;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
