@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #F0A840, #D89D3A);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D89D3A, #C88E2E);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

:root {
    --primary-color: #F0A840;
    --secondary-color: #D89D3A;
    --text-color: #333;
    --white: #fff;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Almarai', sans-serif;
    direction: ltr;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1130px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.header_section {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999999999999999999999999999999;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media(max-width: 768px) {
    .navbar {
        padding: 0 10px;
    }
}

.logo img {
    display: block;
    width: 100%;
    height: 55px !important;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    /* font-weight: 600; */
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
}

nav ul li a:hover {
    color: var(--primary-color);
}


a i {
    font-size: 12px;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

a:hover i {
    transform: rotate(180deg);
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    border-right: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    border-right-color: var(--primary-color);
    color: var(--primary-color);
    padding-right: 25px;
}

.arrow-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.main_btn_header {
    text-align: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: rgba(240, 168, 64, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: 0;
}

.lang-btn:hover::before {
    left: 0;
}

.lang-btn:hover {
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 168, 64, 0.3);
}

.lang-btn span {
    position: relative;
    z-index: 1;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--box-shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 0;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        padding: 15px 10px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }

    .main_btn_header {
        display: none;
    }
}

/* slider hero */

.hero-slider {
    overflow: hidden;
}

.slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}


.slide1 {
    background-image: url('../img/main_top.jpg');
    height: 100vh !important;
}

.slide2 {
    background-image: url('../img/shipping.jpg');
    height: 100vh !important;
    ;
}

.slide3 {
    background-image: url('../img/top.jpg');
    height: 100vh !important;
    ;
}


.overlay {
    background: rgba(0, 0, 0, 0.616);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(7px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}



.overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.4rem;
    width: 760px;
    line-height: 2;

}

@media (max-width: 768px) {
    .overlay p {
        width: 100% !important;
    }
}

.btn-start {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-start:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}


/* END SLIDER */

/* main_bacround_img */

.main_bacround_img {
    position: relative;
    background-image: url(../img/nmi.png);
    max-width: 1120px;
    margin: 0 auto;
    height: 230px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -80px;
    border-radius: 10px;
    border: 3px dashed #fff;
}

.main_bacround_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 167, 64, 0.699);
    border-radius: 10px;
}


.title_img_bacround {
    position: relative;
    z-index: 9999999;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
    transition: transform 0.3s ease;
}


.title_img_bacround h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.title_img_bacround p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 25px;
}

.btn-track {
    display: inline-block;
    padding: 6px 30px;
    background-color: #F0A840;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-track:hover {
    background-color: #d99830;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}


/* about */
.man_about_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 80px 0;
}

@media (max-width: 991px) {
    .man_about_container {
        grid-template-columns: 1fr; 
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .man_about_container {
        gap: 20px;
        padding: 40px 0;
    }
}

.img_main_about {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background-color: #E2C388;
    padding: 7rem 20px;
    text-align: center;
}

.img_main_about img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.title_img h2 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}



.title_img p {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.main_top_title h1 {
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;

}

/* grid */

.title_crd_img_yop {
    position: relative;
    background-image: url(../img/view-map.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 999999999;
    box-shadow: var(--box-shadow);
}

.title_crd_img_yop h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    z-index: 1;
}

.title_crd_img_yop p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    z-index: 1;
    text-align: center;
}

.title_crd_img_yop a {
    display: inline-block;
    padding: 8px 25px;
    background-color: #F0A840;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1;
}

.title_crd_img_yop::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.304);
    transition: all 0.4s ease-in-out;
}

.grid_card_slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}


@media(max-width: 992px) {
    .grid_card_slider {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* wto */

.title_crd_img_yop_2 {
    position: relative;
    background-image: url(../img/top_tow.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 999999999;
    box-shadow: var(--box-shadow);
}


.title_crd_img_yop_2 h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    z-index: 1;
}

.title_crd_img_yop_2 p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    z-index: 1;
    text-align: center;
}

.title_crd_img_yop_2 a {
    display: inline-block;
    padding: 8px 25px;
    background-color: #F0A840;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1;
}

.title_crd_img_yop_2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.587);
    transition: all 0.4s ease-in-out;
}


/* three */



.title_crd_img_yop_3 {
    position: relative;
    background-image: url(../img/tiem.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 999999999;
    box-shadow: var(--box-shadow);
}


.title_crd_img_yop_3 h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    z-index: 1;
}

.title_crd_img_yop_3 p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    z-index: 1;
    text-align: center;
}

.title_crd_img_yop_3 a {
    display: inline-block;
    padding: 8px 25px;
    background-color: #F0A840;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1;
}

.title_crd_img_yop_3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.587);
    transition: all 0.4s ease-in-out;
}


/*  main_logistics */

.header_main_top {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.header_main_top h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.header_main_top p {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.header_main_topa {
    color: #4fc3f7;
    text-decoration: underline;
    font-size: 1.1em;
}


.main_logistics {
    background: var(--secondary-color);
    padding: 40px 20px;
    margin-top: 50px;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: none;
    backdrop-filter: blur(10px);
    border: 2px dashed rgb(255, 255, 255);
    border-radius: 20px;
    padding: 14px 40px;
    text-align: center;
    transition: all 0.3s ease;
    color: rgb(255, 255, 255);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.main_header {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2em;
    }

    .service-card {
        padding: 40px 30px;
    }
}




/* Contact Section Styles */


.contact-header {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px dashed rgb(0, 0, 0);
    border-radius: 10px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}


.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media(max-width: 768px) {
    .contact-info{
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.info-icon {
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.8em;
    color: rgb(255, 255, 255);
}

.info-text {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.info-text h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-text p {
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 5px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2em;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

.contact {
    /* background-color:var(--secondary-color); */
    padding: 80px 0;
}


/* map */



.section-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.map-wrapper {
    background: white;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.map-overlay h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.map-overlay p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.location-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 350px;
    }

    .map-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px;
        max-width: 100%;
    }
}

/* footer */



footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #D89D3A 20%,
            #f4c563 50%,
            #D89D3A 80%,
            transparent 100%);
    box-shadow: 0 0 20px #D89D3A;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #D89D3A;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #D89D3A;
}

.footer-section p {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a:hover {
    color: #D89D3A;
    transform: translateX(-5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(216, 157, 58, 0.1);
    border: 2px solid #D89D3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D89D3A;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #D89D3A;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(216, 157, 58, 0.4);
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #D89D3A;
    border-radius: 5px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter input:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(216, 157, 58, 0.3);
}

.newsletter button {
    padding: 12px 25px;
    background: #D89D3A;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: #f4c563;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(216, 157, 58, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(216, 157, 58, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #808080;
    margin-bottom: 10px;
}

.footer-bottom p span {
    color: #D89D3A;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter {
        flex-direction: column;
    }
}