/* Contact Us Page - Black Theme Styling to Match Homepage */

/* Body and Background */
body.dark-mode {
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff;
}

/* Section Styling */
.whole {
    margin-top: 8rem;
    margin-left: 0;
    margin-right: 0;
    padding: 4rem 10%;
    padding-bottom: 5rem;
    background: #000000;
    min-height: 80vh;
}

.whole .heading {
    color: #ffffff !important;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0.2rem 1rem rgba(247, 202, 62, 0.3);
}

/* Block Container */
.block {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

/* Contact Info Box (Left) */
.box2 {
    width: 100%;
    max-width: 500px;
    flex: 1 1 40rem;
}

.box3 {
    background: rgba(26, 26, 26, 0.9) !important;
    margin: 0;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(247, 202, 62, 0.2);
    transition: all 0.3s ease;
    border: 0.1rem solid rgba(247, 202, 62, 0.1);
}

.box3:hover {
    background: rgba(26, 26, 26, 1) !important;
    box-shadow: 0 0.5rem 2rem rgba(247, 202, 62, 0.3);
    transform: translateY(-5px);
}

/* Phone Box */
.phonebox {
    text-align: center;
    margin-bottom: 2rem;
}

.phonebox p {
    font-size: 1.6rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.phonebox i {
    color: var(--yellow);
    font-size: 2rem;
}

/* Icon Box */
.iconbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.fadupli {
    margin: 0;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fadupli:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

/* Social Media Icons */
.f1 {
    background: #3b5998;
    color: white;
}

.i1 {
    background: #25D366;
    color: white;
}

.l1 {
    background: #0077b5;
    color: white;
}

/* Text Box */
.textbox {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(247, 202, 62, 0.2);
}

.textbox p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Form Box (Right) */
.block .contactform {
    background: rgba(26, 26, 26, 0.9) !important;
    margin: 0;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(247, 202, 62, 0.2);
    transition: all 0.3s ease;
    border: 0.1rem solid rgba(247, 202, 62, 0.1);
    width: 100%;
    max-width: 500px;
    flex: 1 1 40rem;
}

.block .contactform:hover {
    background: rgba(26, 26, 26, 1) !important;
    box-shadow: 0 0.5rem 2rem rgba(247, 202, 62, 0.3);
    transform: translateY(-5px);
}

/* Form Styling */
#fs-frm label {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-top: 0;
    font-weight: 500;
}

#fs-frm input,
#fs-frm textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 0.1rem solid rgba(247, 202, 62, 0.3) !important;
    color: #ffffff !important;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#fs-frm input::placeholder,
#fs-frm textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
}

#fs-frm input:focus,
#fs-frm textarea:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--yellow) !important;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(247, 202, 62, 0.2);
}

#fs-frm textarea {
    height: 120px;
    resize: vertical;
}

/* Submit Button */
.button {
    background: transparent !important;
    border: 0.2rem solid var(--yellow) !important;
    color: var(--yellow) !important;
    font-size: 1.6rem !important;
    padding: 1rem 3rem !important;
    border-radius: 5rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.button:hover {
    background: var(--yellow) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(247, 202, 62, 0.4);
}

.main {
    text-align: center;
    margin-top: 1rem;
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    color: #ffffff;
}

.footer .box-container .box h3 {
    color: var(--yellow);
}

.footer .box-container .box a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer .box-container .box a:hover {
    color: var(--yellow);
}

.footer .btn {
    background: transparent;
    border: 0.2rem solid var(--yellow);
    color: var(--yellow);
}

.footer .btn:hover {
    background: var(--yellow);
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whole {
        padding: 3rem 5%;
        margin-top: 7rem;
    }

    .whole .heading {
        font-size: 2.5rem;
    }

    .box3,
    .block .contactform {
        padding: 2rem;
    }

    .phonebox p {
        font-size: 1.4rem;
    }

    .textbox p {
        font-size: 1.2rem;
    }

    #fs-frm label {
        font-size: 1.3rem;
    }

    #fs-frm input,
    #fs-frm textarea {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }

    .button {
        font-size: 1.4rem !important;
        padding: 0.8rem 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .whole {
        padding: 2rem 3%;
    }

    .whole .heading {
        font-size: 2rem;
    }

    .box3,
    .block .contactform {
        padding: 1.5rem;
    }

    .iconbox {
        gap: 1rem;
    }

    .fadupli {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

