.footer {
    background: #0a044a;
    color:#fff;
    padding: 4rem 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

/* Locations */
.locations {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
}

.location-card {
    text-align: center;
}

.flag-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.flag-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: .3rem;
}

.location-phone,
.location-address {
    font-size: .85rem;
    color: #fff;
    line-height: 1.3;
}

/* Awards */
.awards {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.awards-box {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 1100px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.awards-grid img {
    height: 110px;
    object-fit: contain;
}

/* Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
     color: #fff;
     letter-spacing: normal;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: .5rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.reviews {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    padding: 20px 0;
}

.reviews img {
    max-width: 180px;
    /* Adjust size of logo */
    height: auto;
}

/* Copyright */
.copyright {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    color: #000000;
}

.copyright a {
    color: #1B4BF0;
    text-decoration: none;
}

.dmca img {
    height: 24px;
}

.socials a {
    margin-left: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.socials a:hover {
    color: #fff;
}



.hero-title{
    font-size: 200px !important;
}

/* Button arrow icon: black default, white on hover */
.butn .icon {
    filter: none !important;
}

.butn .icon img {
    filter: brightness(0) saturate(100%) !important;
    transition: filter .2s ease;
}

.butn:hover .icon img,
.butn:focus .icon img {
    filter: invert(1) !important;
}

/* Real Estate services section overrides */
.services-sa .item .cont .icon.invert img {
	-webkit-filter: brightness(0) saturate(100%) !important;
	filter: brightness(0) saturate(100%) !important;
}

/* Keep the button arrow black inside services section */
.services-sa .butn .icon img {
	-webkit-filter: brightness(0) saturate(100%) !important;
	filter: brightness(0) saturate(100%) !important;
}

.services-sa .butn:hover .icon img,
.services-sa .butn:focus .icon img {
	-webkit-filter: brightness(0) saturate(100%) !important;
	filter: brightness(0) saturate(100%) !important;
}

/* Enlarge images in services cards */
.services-sa .item .img {
	margin-top: 15px;
}

.services-sa .item .img img {
	display: block;
	width: 100%;
	height: auto;
}