/* ========================================
   MS CUSTOM STYLES
   ======================================== */

/* Topbar Contact Info */
.topbar__contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.topbar__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.topbar__contact-item i {
    color: #ffffff;
    font-size: 14px;
}

.topbar__contact-item span {
    font-weight: 500;
}

.topbar__contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar__contact-item a:hover {
    color: #d59d2a;
}

@media (max-width: 768px) {
    .topbar__contact-info {
        gap: 20px;
    }
    
    .topbar__contact-item {
        font-size: 12px;
    }
}

/* ========================================
   Main Footer Top
   ======================================== */

.main-footer__top {
    padding: 60px 0;
    color: #fff;
}

/* Footer About Section */
.ms-footer-about {
    padding-right: 20px;
}

.ms-footer-about__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ms-footer-about__text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer Social Links */
.ms-footer-social {
    display: flex;
    gap: 15px;
}

.ms-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #d59d2a;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ms-footer-social a:hover {
    background-color: #fff;
    color: #d59d2a;
    transform: translateY(-3px);
}

.ms-footer-social i {
    font-size: 16px;
}

/* Footer Links Section */
.ms-footer-links {
    padding-left: 20px;
}

.ms-footer-links__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ms-footer-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-footer-links__list li {
    margin-bottom: 12px;
}

.ms-footer-links__list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ms-footer-links__list a:hover {
    color: #d59d2a;
    padding-left: 5px;
}

/* Footer Contact Section */
.ms-footer-contact {
    padding-left: 20px;
}

.ms-footer-contact__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ms-footer-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.ms-footer-contact__item i {
    color: #d59d2a;
    margin-top: 2px;
    min-width: 16px;
}

.ms-footer-contact__item a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ms-footer-contact__item a:hover {
    color: #d59d2a;
}

@media (max-width: 991px) {
    .ms-footer-about,
    .ms-footer-links,
    .ms-footer-contact {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ========================================
   About Section Image
   ======================================== */

.about-one-image-image {
    position: relative;
}

.about-one-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.about-one-image img:hover {
    box-shadow: 0 15px 60px rgba(213, 157, 42, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .about-one-image img {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .about-one-image img {
        border-radius: 6px;
    }
}
