:root {
    --gold-color: #C69C6D;
    --dark-blue: #001B33;
}

.footer-container {
    border-top: 1px solid #c69c6d80;
    color: white;
    padding: 2rem 0;
    font-family: 'arb', sans-serif;
}


/* Mobile Version */

.footer-content-mobile {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content-mobile .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content-mobile .company-info {
    margin-bottom: 1.2rem;
}

.footer-content-mobile .company-info p {
    margin: 0;
    color: #fef6f6;
    margin-bottom: 0.5rem;
}


/* Desktop Version */

.footer-content-desktop {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
}


/* Decorative lines */

.footer-content-desktop::before,
.footer-content-desktop::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 80%;
    background: url('../img/footerGoldLine.png') no-repeat center/contain;
    opacity: 1;
    z-index: 1;
}

.footer-content-desktop::before {
    left: -45px;
}

.footer-content-desktop::after {
    right: -45px;
    transform: translateY(-50%) scaleX(-1);
}

.footer-content-desktop .footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h5 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}


/* Underline for Site Map */

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 2px;
    background-color: #C69C6D;
}

[dir="rtl"] .footer-section h5::after {
    left: auto;
    right: 0;
}

.footer-section p {
    margin: 0;
    color: #fef6f6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.1rem;
}

.footer-section ul li a {
    color: #fef6f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C69C6D;
}


/* Newsletter Form */

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid #C69C6D;
    background: transparent;
    color: white;
    min-width: 200px;
}

.newsletter-input::placeholder {
    color: #fef6f6;
}

.newsletter-button {
    background: #C69C6D;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background: #B48B5C;
}


/* Footer Logo */

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.2rem;
    object-fit: contain;
}


/* Social Icons */

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #C69C6D;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #B48B5C;
}


/* RTL Support */

[dir="rtl"] .footer-content-desktop::before {
    right: -45px;
    left: auto;
    transform: translateY(-50%) scaleX(-1);
}

[dir="rtl"] .footer-content-desktop::after {
    left: -45px;
    right: auto;
    transform: translateY(-50%);
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer-content-desktop {
        display: none;
    }
    .footer-content-mobile {
        display: block;
    }
    .footer-logo {
        max-width: 100px;
    }
    .social-links {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
}


/* Contact Info Styles */

.contact-info p,
.company-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i,
.company-info i {
    color: #C69C6D;
    width: 16px;
    text-align: center;
}


/* Make sure phone icon is properly aligned */

.fa-phone {
    transform: rotate(90deg);
}