/* CONTACT PAGE STYLES */

:root {
    --about-primary: #1e3a5f;
    --about-green: #4CAF50;
    --about-green-light: rgba(76, 175, 80, 0.1);
    --about-gradient: linear-gradient(135deg, #4CAF50, #022a2a);
    --about-bg-light: #f8fbfb;
    --about-white: #ffffff;
    --about-text-dark: #2c3e50;
    --about-text-muted: #6c757d;
}

.contact-page-wrapper {
    background-color: var(--about-bg-light);
    color: var(--about-text-dark);
    font-family: 'Outfit', sans-serif;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 31% 49%, rgba(0, 168, 168, 0.1) 0%, rgb(61 203 114 / 12%) 28%, rgb(2 2 2 / 60%) 45%, rgba(0, 0, 0, 0.9) 100%), url('../images/services/contact.jpg') center / cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    margin: 10px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.breadcrumb-pill a {
    color: var(--about-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-pill a:hover {
    color: var(--about-green);
}

.text-gradient-contact {
    background: linear-gradient(135deg, #4CAF50, #009688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-floating-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--caremed-bluish);
    font-size: 1.5rem;
    z-index: 3;
    animation: floatUpDown 4s linear-in-out infinite;
}

.cfi-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    width: 50px;
    height: 50px;
    text-align: center;
}

.cfi-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
    text-align: center;
}

.cfi-3 {
    top: 50%;
    right: 5%;
    animation-delay: 0.7s;
    width: 50px;
    height: 50px;
    text-align: center;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   2. CONTACT DETAILS & FORM
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.contact-info-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.1) !important;
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--about-green), #009688);
    box-shadow: 0 10px 20px rgba(0, 150, 136, 0.2);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.form-wrapper {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.1) !important;
}

.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.15) !important;
    border: 1px solid rgba(0, 150, 136, 0.5) !important;
    background-color: white !important;
}

.btn-submit {
    /* background: linear-gradient(135deg, #1e3a5f, #2a5298); */
    background: linear-gradient(135deg, var(--caremed-bluish), var(--caremed-green)) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    box-shadow: 0 10px 20px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--caremed-bluish), var(--caremed-green)) !important;
}


.feature-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.1) !important;
}