/* ===========================================
   Contact Page — Banner (batteries-banner-*)
   contactus.php
   =========================================== */

.batteries-banner {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.batteries-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.batteries-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-weight: 800;
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(180deg,
        #ffffff 0%,
        #e6e6e6 35%,
        #bdbdbd 55%,
        #8e8e8e 80%,
        #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1199.98px) {
    .batteries-banner-title {
        font-size: 4.2rem;
    }
}

@media (max-width: 767.98px) {
    .batteries-banner-title {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 479.98px) {
    .batteries-banner-title {
        font-size: 1.6rem;
    }
}

/* ===========================================
   Contact Page — Location Section (location-*)
   contactus.php
   =========================================== */

.location-section {
    padding: 60px 0 40px;
    overflow: visible;
}
.location-label {
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.location-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1b4fa8;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.location-tab-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 28px;
    border: 2px solid #e8823a;
    transition: all 0.2s;
}
.location-tab-btn.active {
    background: #e8823a;
    color: #fff;
}
.location-tab-btn:not(.active) {
    background: #fff;
    color: #e8823a;
}
.location-tab-btn:hover {
    transform: scale(1) !important;
}
.location-office-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
}
.location-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #222;
    font-size: 1rem;
    text-decoration: none;
}
.location-info-row:hover {
    transform: scale(1) !important;
    color: #1b4fa8;
}
.location-info-row .loc-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1b4fa8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    color: #fff;
    font-size: 1rem;
}
.location-info-row .loc-text {
    padding-top: 8px;
    line-height: 1.5;
}
.location-head-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1b4fa8;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.location-info-address {
    display: block;
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    text-decoration: none;
}
.location-info-address:hover {
    color: #1b4fa8;
    transform: scale(1) !important;
}
.location-map {
    position: relative;
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    filter: grayscale(100%) contrast(1.05);
}
.location-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
}
.location-right-panel {
    position: relative;
    overflow: hidden;
}
.location-img-wrap {
    width: 100%;
    line-height: 0;
}
.location-office-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.location-social-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 58, 107, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px 12px 20px;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    z-index: 10;
}
.location-social-bar span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-right: 4px;
}
.location-social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.location-social-bar a svg {
    display: block;
    flex-shrink: 0;
}
.location-social-bar a:hover {
    background: #1b9cd8;
    color: #fff;
    transform: scale(1) !important;
}
.location-tab-panel { display: none; }
.location-tab-panel.active { display: block; }

@media (max-width: 767px) {
    .location-title { font-size: 2rem; }
    .location-right-panel { margin-top: 30px; }
    .location-social-bar { left: -16px; padding: 10px 20px; gap: 8px; }
    .location-social-bar a { width: 34px; height: 34px; font-size: 0.88rem; }
}

/* ===========================================
   Contact Page — Get In Touch Section (git-*)
   contactus.php
   =========================================== */

.git-hero {
    position: relative;
    width: calc(100% - 80px);
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
}
.git-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.git-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    border-radius: 20px;
}
.git-hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
}
.git-hero-text em {
    font-style: italic;
    font-weight: 400;
    margin-left: 12px;
}
.git-body {
    padding: 50px 100px;
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.git-form-card {
    flex: 0 0 48%;
    background: #f2f4f8;
    border-radius: 20px;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.git-form-card h3 {
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: #222;
}
.git-form-card .form-control {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
    box-shadow: none;
}
.git-form-card .form-control:focus {
    box-shadow: 0 0 0 2px #e8823a55;
    outline: none;
}
.git-form-card textarea.form-control {
    min-height: 120px;
    resize: none;
}
.git-submit-btn {
    display: block;
    margin: 10px auto 0;
    background: #e8823a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 44px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.git-submit-btn:hover {
    background: #cf6e2a;
}
.git-fb-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.git-fb-panel h3 {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 18px;
}
.git-fb-embed {
    width: 100%;
    flex: 1;
    min-height: 500px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

@media (max-width: 991px) {
    .git-hero { width: calc(100% - 30px); height: 160px; }
    .git-hero-text { font-size: 2rem; }
    .git-body { flex-direction: column; padding: 30px 20px; gap: 30px; }
    .git-form-card { flex: none; width: 100%; }
}
@media (max-width: 575px) {
    .git-hero-text { font-size: 1.4rem; letter-spacing: 1px; }
}
