/* =========================
   BASE HERO
========================= */
.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

/* =========================
   HERO IMAGE
========================= */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center; /* tuned for services image */
    z-index: 0;
    animation: heroBgZoom 10s ease-in-out infinite alternate;

}

/* =========================
   HERO OVERLAY (TUNED FOR YOUR IMAGE)
========================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.60) 28%,
        rgba(0, 0, 0, 0.35) 48%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.00) 82%
    );
    z-index: 1;
}

/* =========================
   HERO CONTENT LAYER
========================= */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* =========================
   HERO TEXT MICRO-ANIMATIONS
========================= */
.hero-title,
.hero-text,
.hero-actions {
    opacity: 0;
    transform: translateY(24px);
}

.hero-section .hero-title {
    animation: heroFadeUp 0.8s ease-out 0.2s forwards;
}

.hero-section .hero-text {
    animation: heroFadeUp 0.8s ease-out 0.45s forwards;
}

.hero-section .hero-actions {
    animation: heroFadeUp 0.8s ease-out 0.7s forwards;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* @media (max-width: 576px) {
    .hero-img {
        object-position: 70% center;
    }
} */




/* =========================
   HERO SEAM FIX
========================= */
.hero-inner + .contact-section {
    margin-top: -1px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* =========================
   CONTACT INFO CARD
========================= */
.contact-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.contact-list i {
    font-size: 1.2rem;
    color: #fca311;
}

/* =========================
   SOCIAL ICONS
========================= */
.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-socials a:hover {
    background-color: #fca311;
    color: #000;
    transform: translateY(-3px);
}

/* =========================
   CONTACT FORM (MICRO-INTERACTIONS)
========================= */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.input-group {
    position: relative;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 0 0.25rem;
}

.input-group .form-control {
    padding: 1rem;
    border-radius: 0.75rem;
}

.input-group .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.input-group .form-control:focus + label,
.input-group .form-control:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -0.4rem;
    font-size: 0.75rem;
    color: #0d6efd;
}

/* =========================
   MAP SECTION
========================= */
.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* =========================
   CTA
========================= */
.cta-section {
    background: linear-gradient(to right, #0d6efd, #003f88);
}

.btn-accent {
    background-color: #fca311;
    color: #000;
    border: none;
}

.btn-accent:hover {
    background-color: #e69500;
    color: #000;
}
