/* === FOOTER SECTION === */
.footer {
    background: linear-gradient(to bottom, #4a4a4a 0%, #252525 100%);
    color: #ffffff;
    padding: 30px 0 20px;
    margin-top: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    color: #f07b26;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f07b26, #bc570d);
    border-radius: 2px;
}

.footer-section p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

/* === FOOTER LINKS === */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    text-decoration: none;
    font-size: 15px;
    display: block;
}

.footer-links a::before {
    content: "→";
    color: #f07b26;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f07b26;
    padding-left: 25px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-links a.active {
    color: #f07b26;
    font-weight: 500;
}

/* === CONTACT INFO - Footer için === */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item, 
a.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
}

.contact-item i,
a.contact-item i {
    color: #f07b26;
    font-size: 18px;
    min-width: 25px;
    margin-top: 3px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item span,
a.contact-item span {
    color: #ddd;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-size: 15px;
}

.contact-item:hover,
a.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:hover i,
a.contact-item:hover i {
    color: #bc570d;
    transform: scale(1.2);
}

.contact-item:hover span,
a.contact-item:hover span {
    color: #f07b26;
}

/* === COPYRIGHT === */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.copyright a {
    color: #f07b26;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #bc570d;
    text-decoration: underline;
}

/* === LAYOUT UTILITIES === */
.layout_padding {
    padding: 20px 0;
}

.layout_padding2 {
    padding: 60px 0;
}

.layout_padding-top {
    padding-top: 80px;
}

.layout_padding-bottom {
    padding-bottom: 80px;
}

/* === REFERENCES SECTION LAYOUT === */
.references_section .references_container {
    width: 100%; /* Take full available width */
    max-width: 1400px; /* A large max-width to ensure it's wider than default Bootstrap container */
    padding-left: 15px; /* Standard Bootstrap container padding */
    padding-right: 15px; /* Standard Bootstrap container padding */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
}

/* Adjust for smaller screens if necessary, though max-width will handle it */
@media (max-width: 1400px) {
    .references_section .references_container {
        max-width: 95%; /* Slightly less than 100% to ensure some margin on very large screens */
    }
}

@media (max-width: 768px) {
    .references_section .references_container {
        padding-left: 10px;
        padding-right: 10px;
    }
}