/* =========================
   ADVERTISE WITH US PAGE
========================= */

/* HERO */
section.advertise-hero {
    width: 100%;
    max-width: 100%;
}
.advertise-hero {
    position: relative;
    width: 100%;
    height:65vh;
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.advertise-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.45)
    );
}

.advertise-hero .container {
    position: relative;
    z-index: 2;
  
}

.advertise-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.advertise-hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* =========================
   WHY ADVERTISE (PREMIUM)
========================= */

.premium-why {
    padding: 5rem 0;
   
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(0,115,170,0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card.highlight {
    border: 2px solid var(--primary-color);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 16px;
    color: var(--primary-color);
}

.icon-wrap svg {
    width: 30px;
    height: 30px;
}

.why-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
}

/* =========================
   FORM SECTION
========================= */

.advertise-form-section {
    padding: 5rem 0;
    padding-top:0;
    background: var(--white);
}

.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.form-wrapper p {
    margin-bottom: 2rem;
    color: #666;
}

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

.advertise-form .form-group {
    display: flex;
    flex-direction: column;
}

.advertise-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.advertise-form input,
.advertise-form select,
.advertise-form textarea {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--gray);
    font-family: inherit;
    font-size: 0.95rem;
}

.advertise-form input:focus,
.advertise-form select:focus,
.advertise-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
button.btn-primary {
    font-family: 'Montserrat';
    font-size: 16px;
    height: 54px;
}
/* =========================
   CTA
========================= */
section.advertise-cta h2 {
    color: var(--white);
}

section.advertise-cta a {
    background: white;
    padding: 12px 24px;
    border-radius: 12px;
    color: black;
}

.advertise-cta {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-hover)
    );
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.advertise-cta h2 {
    margin-bottom: 0.75rem;
}

.advertise-cta p {
    margin-bottom: 1.75rem;
    opacity: 0.9;
}
section.advertise-hero a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    border-radius: 4px;
    transition: .3s;
}
section.advertise-hero a:hover {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid white;
    color: #fff;
    border-radius: 4px;
    transition: .3s;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .advertise-form .form-row {
        grid-template-columns: 1fr;
    }

    .advertise-hero {
        min-height: 60vh;
        text-align: center;
    }
}