.page-header {
    background: linear-gradient(120deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.breadcrumbs {
    margin-top: 20px;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

#yit-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#yit-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

#yit-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

#yit-breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

#yit-breadcrumb i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.content {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

.sidebar {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

@media (max-width: 992px) {
    .content, .sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar {
        margin-top: 50px;
    }
}

/* Contact Styles */
.contact-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.contact-form-container h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4e73df, #224abe);
    border-radius: 2px;
}

.contact-form fieldset {
    border: none;
    padding: 0;
}

.contact-form ul {
    list-style: none;
}

.contact-form li {
    margin-bottom: 25px;
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
}

.contact-form li:nth-child(1) {
    animation-delay: 0.6s;
}

.contact-form li:nth-child(2) {
    animation-delay: 0.7s;
}

.contact-form li:nth-child(3) {
    animation-delay: 0.8s;
}

.contact-form li:nth-child(4) {
    animation-delay: 0.9s;
}

.contact-form li:nth-child(5) {
    animation-delay: 1.0s;
}

.input-prepend {
    position: relative;
    display: flex;
    align-items: center;
}

.add-on {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: #4e73df;
    font-size: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
}

/* Captcha Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.captcha-image {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 5px;
    background: #f8f9fa;
}

.captcha-image img {
    height: 40px;
    border-radius: 5px;
}

.refresh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    color: #4e73df;
    text-decoration: none;
    transition: all 0.3s ease;
}

.refresh-button:hover {
    background: #4e73df;
    color: #fff;
    border-color: #4e73df;
    transform: rotate(90deg);
}

/* Submit Button */
.submit-button {
    margin-top: 20px;
}

.sendmail {
    background: linear-gradient(120deg, #4e73df 0%, #224abe 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.sendmail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.4);
}

.sendmail:active {
    transform: translateY(0);
}

/* Sidebar Styles */
.widget {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInLeft 1s ease 0.7s forwards;
    opacity: 0;
}

.widget h3 {
    font-size: 1.5rem;
    color: #1a1a2f;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #4e73df, #224abe);
    border-radius: 2px;
}

.textwidget {
    color: #555;
    line-height: 1.7;
}

.socials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.socials-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #4e73df !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.socials-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.socials-small:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.socials-small:hover::before {
    opacity: 1;
}

.socials-small i {
    position: relative;
    z-index: 1;
}

/* Validation Styles */
.msg-error {
    color: #e74a3b;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}