/* ADA POS Custom Theme Styles */

/* Base Typography */
.font-poppins { font-family: 'Poppins', sans-serif !important; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif !important; }

/* Header Styles */
header {
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.is-sticky {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

header.is-sticky .nav-link {
    color: #333 !important;
}

header.is-sticky .logo-1 {
    display: none;
}

header.is-sticky .logo-2 {
    display: block;
}

.logo-2 {
    display: none;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Dropdown Menu Modernization */
.navbar .dropdown-menu {
    background-color: var(--white); /* Tamamen beyaz arka plan */
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Daha yumuşak ve yaygın gölge */
    border-radius: 8px; /* Hafif yuvarlaklık */
    padding: 8px 0; /* Daha az padding */
    min-width: 200px; /* Genişlik */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Hafif aşağıdan açılma */
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Daha hızlı ve yumuşak geçiş */
    left: 50%; /* Dropdown'ı ortalamak için */
    transform: translateX(-50%) translateY(10px); /* Ortala ve aşağıdan açılma */
}

.navbar .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Ortala ve yukarı kay */
}

.navbar .dropdown-item {
    color: #444; /* Daha yumuşak metin rengi */
    padding: 10px 20px; /* Padding */
    font-size: 0.9rem; /* Metin boyutu */
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden; /* Hover efekti için */
    display: flex;
    align-items: center;
    border-radius: 4px; /* Hafif yuvarlaklık */
    margin: 0;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Soldan başla */
    width: 100%;
    height: 100%;
    background-color: var(--renk4); /* Ana renk */
    transition: all 0.2s ease; /* Daha hızlı dolum */
    z-index: -1;
}

.navbar .dropdown-item:hover::before {
    left: 0; /* Soldan sağa dol */
}

.navbar .dropdown-item span { /* Metin ve ikonları öne çıkar */
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.navbar .dropdown-item:hover span {
    color: var(--white) !important; /* Hover'da beyaz metin */
}

.navbar .dropdown-item i { /* Alt menü ikonları için */
    color: var(--secondary); /* İkon rengi yardımcı gri */
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.navbar .dropdown-item:hover i {
    color: var(--white);
}

/* Slider Typography & Animations */
.main-slider .swiper-slide h1 {
    font-size: 3.5rem !important; /* display-2 den küçültüldü */
    font-weight: 800 !important;
}

.main-slider .swiper-slide p {
    font-size: 1.15rem !important; /* fs-4 den küçültüldü */
    max-width: 700px;
}

.main-slider .swiper-slide h1,
.main-slider .swiper-slide p,
.main-slider .swiper-slide .btn-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.main-slider .swiper-slide-active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.main-slider .swiper-slide-active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.main-slider .swiper-slide-active .btn-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Slider Base */
.h-100vh {
    height: 100vh;
    min-height: 600px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Service Cards Modern Design */
.service-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(239, 127, 23, 0.15);
    border-color: var(--primary);
}

.service-item:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: -30px;
    left: 30px;
    box-shadow: 0 10px 20px rgba(239, 127, 23, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-box {
    transform: rotateY(180deg);
}

.service-item h4 {
    margin-top: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: var(--primary);
}

.service-item .btn-link {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Codes Software Section */
.codes-section {
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.codes-card {
    background: #fff;
    padding: 40px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.codes-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tech-stack-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.tech-stack-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--primary);
}

.tech-stack-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Dealer Section Styles */
.dealer-section {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.dealer-card {
    background: #fdfdfd;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
    height: 100%;
}

.dealer-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.dealer-badge {
    display: inline-block;
    background: rgba(239, 127, 23, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dealer-logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.dealer-logo-box img {
    max-height: 100%;
    max-width: 180px;
    filter: grayscale(1);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.dealer-card:hover .dealer-logo-box img {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer Styles - Modern Redesign (Attempt 3) */
.footer-section {
    background-color: #0d0d0d; /* Daha koyu, neredeyse siyah */
    color: #e0e0e0; /* Daha açık gri metin */
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px; /* Daha belirgin üst çizgi */
    background: linear-gradient(to right, var(--primary), var(--renk2));
}

.footer-section h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 35px;
    font-size: 1.4rem; /* Başlık boyutu artırıldı */
    position: relative;
    text-transform: uppercase; /* Başlıklar büyük harf */
    letter-spacing: 0.5px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px; /* Çizgi uzunluğu artırıldı */
    height: 4px; /* Çizgi kalınlığı artırıldı */
    background-color: var(--primary);
    border-radius: 5px;
}

.footer-section p, .footer-section small {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-logo-modern {
    height: 70px; /* Logo boyutu daha da artırıldı */
    margin-bottom: 30px !important;
    filter: brightness(0) invert(1); /* Koyu arka planda beyaz görünmesi için */
    display: block; /* Ortalamak için */
    margin-left: auto;
    margin-right: auto;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex; /* İkon ve metni hizalamak için */
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 8px; /* Hafif kayma */
}

.footer-socials {
    justify-content: center; /* Sosyal ikonları ortala */
}

.footer-socials a {
    width: 48px; /* İkon boyutu daha da büyütüldü */
    height: 48px; /* İkon boyutu daha da büyütüldü */
    border-radius: 50%;
    background-color: var(--primary); /* Arka plan ana renk */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    font-size: 1.3rem; /* İkon font boyutu */
}

.footer-socials a:hover {
    background-color: var(--renk2) !important;
    border-color: var(--renk2) !important;
    color: var(--white) !important;
    transform: translateY(-5px) scale(1.1); /* Daha belirgin hover */
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-contact-info i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.4rem; /* İletişim ikon boyutu artırıldı */
    margin-top: 3px;
}

.footer-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px; /* Boşluk artırıldı */
    margin-top: 70px; /* Boşluk artırıldı */
}

.hakanbt-footer-logo {
    height: 35px; /* Hakan Biltek logosu boyutu artırıldı */
    filter: grayscale(1) brightness(2);
    transition: all 0.3s ease;
}

.hakanbt-footer-logo:hover {
    filter: grayscale(0) brightness(1);
}

/* Bayilik Logoları Footer */
.bayilik-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bayilik-footer li {
    margin-bottom: 0; /* Varsayılan liste boşluğunu sıfırla */
}

.bayilik-footer a {
    display: inline-block; /* Logoları yan yana tutmak için */
    padding: 0; /* Link padding'ini sıfırla */
    transition: transform 0.3s ease;
}

.bayilik-footer a:hover {
    transform: scale(1.05);
    padding-left: 0; /* Hover'daki kaymayı sıfırla */
}

.bayilik-footer img {
    height: 40px; /* Bayilik logosu boyutu */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.bayilik-footer a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* Grayscale Hover Effect */
.grayscale-hover img {
    filter: grayscale(1);
    transition: all 0.4s ease;
    opacity: 0.6;
}

.grayscale-hover img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Section Titles Override */
.section-title h2 {
    font-weight: 800;
}

.section-title h2::after {
    background-color: var(--renk1) !important;
}

/* Utility Classes */
.h-50-px { height: 50px; }
.w-50-px { width: 50px; }
.mw-600 { max-width: 600px; }
.ref-img-h { max-height: 80px; width: auto; }
.stats-gradient { background: linear-gradient(45deg, #1a1a1a, #333); }

/* Sayfa.php Specific Styles */
.page-hero-section {
    background: linear-gradient(45deg, var(--renk1), var(--renk2)); /* Ana renk gradyanı */
    padding: 120px 0 60px 0; /* Header'ı hesaba kat */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-section .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
}

.page-hero-section .breadcrumb-item,
.page-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-hero-section .breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.page-hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-main-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: justify;
    min-height: 500px;
}

.sayfa-detay-img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
}

.page-main-content .btn-style-1 {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
    margin-right: 10px;
}

.page-main-content .btn-style-1:hover {
    background-color: var(--renk2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 127, 23, 0.3);
}

.page-main-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-gallery-section .sayfaBaslik h2 {
    color: var(--dark);
    font-size: 2.2rem;
    font-weight: 700;
}

.page-gallery-section .sayfaBaslik h2::after {
    background-color: var(--primary);
    width: 50px;
    height: 3px;
    bottom: -8px;
}

.page-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.page-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.page-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-gallery-item::before {
    content: '\f002'; /* FontAwesome search icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.page-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.page-gallery-item:hover::before,
.page-gallery-item:hover::after {
    opacity: 1;
}

.page-side-menu {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.page-side-menu h4 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
}

.page-side-menu h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 5px;
}

.page-side-menu .hbt-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.page-side-menu .hbt-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.page-side-menu .hbt-card-top {
    height: 150px; /* Yan menü kart resmi boyutu */
}

.page-side-menu .hbt-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-side-menu .hbt-card-title {
    font-size: 1rem;
    font-weight: 600;
    padding: 15px;
    color: var(--dark);
    text-align: center;
    background: #fdfdfd;
}

/* Kurumsal Page Modern Redesign */
.corporate-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Hafif gri arka plan */
}

.corporate-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 60px; /* Her öğe arasında boşluk */
    transition: all 0.4s ease;
}

.corporate-item:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.corporate-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.corporate-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.corporate-item:hover .corporate-image-wrapper img {
    transform: scale(1.05);
}

.corporate-content-block {
    padding: 40px;
}

.corporate-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.corporate-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 5px;
}

.corporate-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.corporate-button .btn-style-1 {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.corporate-button .btn-style-1:hover {
    background-color: var(--renk2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 127, 23, 0.3);
}


/* Contact Page (iletisim.php) Modern Redesign */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.contact-card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--renk1);
    border-radius: 5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(239, 127, 23, 0.1);
    color: var(--renk1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 18px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--renk1);
    color: var(--white);
}

.contact-info-text {
    padding-top: 8px;
    line-height: 1.6;
}

.contact-info-text a,
.contact-info-text span {
    color: #555;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--renk1);
}

.contact-form .form-control {
    border: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px 18px;
    height: auto;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--renk1);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 127, 23, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .formBtn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.contact-map-section {
    padding-bottom: 80px;
}

.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

/* Referanslar Page (referanslar.php) Modern Redesign */
.reference-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.reference-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.reference-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--renk1);
    transform: translateY(-5px);
}

.reference-logo-box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reference-logo-box img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.reference-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.reference-empty {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 60px 20px;
}

/* Responsive Edits */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #111;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }

    .main-slider .swiper-slide h1 {
        font-size: 2rem !important;
    }

    .main-slider .swiper-slide p {
        font-size: 1rem !important;
    }

    .footer-logo-modern {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center !important;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section h5 {
        text-align: center;
    }
    .footer-links, .footer-contact-info {
        text-align: center;
    }
    .footer-links a, .footer-contact-info li {
        justify-content: center;
    }
    .footer-contact-info i {
        margin-right: 10px;
    }

    .page-hero-section h1 {
        font-size: 2.5rem;
    }

    .corporate-item {
        margin-bottom: 40px;
    }

    .corporate-content-block {
        padding: 25px;
    }

    .corporate-title {
        font-size: 1.8rem;
    }

    .corporate-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-card {
        padding: 25px;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }

    .reference-card {
        padding: 20px 15px;
    }

    .reference-logo-box {
        height: 70px;
    }
}
