/* ====================================
   HERO / PROMO BANNER
   ==================================== */

.promo-banner {
    background-image: url('../images/hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-section {
    text-align: left;
    width: 100%;
}

.hero-bottom-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-form-wrapper {
    justify-self: start;
}

.hero-dog-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.promo-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    color: #1a3d3d;
}

.promo-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-service {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    color: rgba(255,255,255,0.95);
}

.hero-signup-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
}

.hero-signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-signup-form input,
.hero-signup-form select,
.hero-signup-form textarea {
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    color: #2C3E50;
    transition: all 0.3s ease;
    background: white;
}

.hero-signup-form input:focus,
.hero-signup-form select:focus,
.hero-signup-form textarea:focus {
    outline: none;
    border-color: #5DBAAC;
    box-shadow: 0 0 0 3px rgba(93,186,172,0.1);
}

.hero-signup-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-submit-button {
    background: linear-gradient(135deg, #5DBAAC 0%, #4BA89C 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(93,186,172,0.3);
}

.hero-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93,186,172,0.4);
}

.hero-submit-button:active {
    transform: translateY(0);
}

.hero-submit-button i {
    margin-right: 0.5rem;
}

/* Remove old promo-image as we now use hero-dog-wrapper */

.dog-illustration {
    width: 300px;
    height: 300px;
    /* semi-transparent gradient for a lighter feel */
    background: linear-gradient(135deg, rgba(104,217,197,0.30) 0%, rgba(75,176,154,0.10) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* soften shadow a bit to match transparency */
    box-shadow: 0 10px 30px rgba(75,160,156,0.18), inset 0 -6px 18px rgba(255,255,255,0.06);
    transition: transform 300ms cubic-bezier(.2,.9,.2,1), box-shadow 300ms ease, filter 300ms ease;
}

.dog-illustration i {
    color: #fff;
    font-size: 140px;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Subtle float animation */
@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.dog-illustration {
    animation: heroFloat 6s ease-in-out infinite;
}

/* Hover state: lift and glow */
.promo-image:hover .dog-illustration {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 28px 50px rgba(75,160,156,0.3), inset 0 -8px 24px rgba(255,255,255,0.12);
    filter: saturate(1.1) drop-shadow(0 10px 25px rgba(75,160,156,0.18));
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dog-illustration {
        animation: none;
    }
    .promo-image:hover .dog-illustration {
        transform: none;
        filter: none;
    }
}
