/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffffff, #fff6e6);
    color: #333;
    overflow-x: hidden;
}

/* Contact Section */
.contact-us {
    margin: 2rem auto;
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(145deg, #ffffff, #ffe6b3);
    position: relative;
    overflow: hidden;
}

/* Animated Floating Shapes */
.contact-us:before,
.contact-us:after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.2);
    animation: float 8s infinite ease-in-out;
}

.contact-us:before {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
}

.contact-us:after {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
}

/* Header Styling */
.contact-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 2px 2px 10px rgba(255, 200, 50, 0.4);
}

.contact-header p {
    margin: 1rem auto;
    font-size: 1.2rem;
    color: #ffcc80;
    max-width: 800px;
    line-height: 1.6;
}

/* Layout Styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Form Styling */
.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(255, 165, 0, 0.2);
    transition: transform 0.3s;
}

.contact-form:hover, .contact-info:hover {
    transform: translateY(-10px);
}

.contact-form h2,
.contact-info h2 {
    color: #ff9800;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.contact-form label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ff6f00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: 2px solid #ffe6b3;
    border-radius: 10px;
    background: #fffef6;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff9800;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
    outline: none;
}

.contact-form .contact-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    background: linear-gradient(90deg, #ff9800, #ffa726);
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form .contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 153, 0, 0.4);
}

/* Info Styling */
.contact-info .benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-info .benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
}

.contact-info .benefits-list li:before {
    content: '✔';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: #ffcc80;
}

/* Image Styling */
.contact-image img {
    max-width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(255, 200, 100, 0.3);
    animation: float 3s infinite ease-in-out;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* 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 {
    background-color: #222; /* Dark and authentic color */
    color: #f3f3f3;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.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;
}
