﻿/* ===============================
   Contact Section
   =============================== */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

/* Title Styling */
.pillars-eyebrow {
    font-size: 0.9rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow for title */
}

/* Glass Effect for Form */
.glass {
    background: rgba(0, 0, 0, 0.4); /* Dark background with transparency */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    padding: 30px;
}

/* Form Input and Textarea Styling */
.form-control {
    background-color: #121212; /* Dark background for form fields */
    color: #fff;
    border: 1px solid #444; /* Dark border */
    border-radius: 10px;
    padding: 12px;
    font-size: 1rem;
}

    .form-control:focus {
        border-color: #f1c40f; /* Yellow border on focus */
        outline: none;
        background-color: #2c2c2c; /* Slightly lighter background on focus */
    }

/* Placeholder Styling */
::placeholder {
    color: #fff !important; /* White placeholder text */
    opacity: 1; /* Full opacity for placeholder */
}

/* Textarea Styling */
textarea.form-control {
    resize: vertical;
}

/* Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-accent:hover,
    .btn-accent:focus {
        background-color: #f39c12; /* Darker yellow on hover */
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

/* Contact Info Styling */
.text-soft {
    color: #ccc;
    font-size: 1.1rem;
}

.text-warning {
    color: #f1c40f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 12px;
    }

    .btn-accent {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .btn-accent {
        width: 100%;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

