/* Navigation Links Dynamic Underline */
.nav-link {
    position: relative;
    display: inline-block;
    color: #0A2A47;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #F57D00;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover {
    color: #F57D00;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Primary CTA Button (Liquid hover effect) */
.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #F57D00;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 125, 0, 0.4), 0 4px 6px -2px rgba(245, 125, 0, 0.2);
    color: #FFFFFF;
}

.primary-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, #FFB700 0%, transparent 60%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    opacity: 0;
}

.primary-cta:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Secondary CTA Button */
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #2596be;
    font-weight: 600;
    border: 2px solid #2596be;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.secondary-cta:hover {
    background-color: #2596be;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: translateY(-3px) scale(1.05);
}

/* Form Input Underline Animation */
.input-wrapper {
    position: relative;
}

.input-field {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background-color: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.input-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0A2A47;
    transition: width 0.3s ease;
}

.input-wrapper:focus-within::after {
    width: 100%;
}

/* Logo Hover */
.logo-img {
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 8px rgba(37, 150, 190, 0.4));
}