/* NMIMS CIIS — assets/css/04-sections/hero.css — extracted from approved source (Phase 2B) */

/* ── HERO ── */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 40%, #5A3490 70%, #7B2238 100%); position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 68px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("../../images/patterns/hero-dot-grid.svg"); }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,0.20) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(232,105,10,0.15) 0%, transparent 70%); bottom: -50px; left: 20%; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 1; width: 100%; padding: 60px 0; }
.hero-left { color: white; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
.hero-eyebrow span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.hero h1 { color: white; margin-bottom: 12px; }
.hero h1 em { color: var(--orange-light); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.80); margin-bottom: 32px; font-weight: 300; max-width: 520px; }
.hero-urgency { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 8px 16px; font-size: 0.83rem; color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 32px; backdrop-filter: blur(8px); }
.urgency-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item span { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 400; }
.trust-item svg { width: 16px; height: 16px; fill: var(--orange-light); flex-shrink: 0; } /* Hero Form */
.hero-form-card { background: rgba(255,255,255,0.97); border-radius: 20px; padding: 32px 28px; box-shadow: 0 24px 80px rgba(0,0,0,0.30); backdrop-filter: blur(20px); }
.form-card-header { margin-bottom: 24px; }
.form-card-header h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 4px; }
.form-card-header p { font-size: 0.85rem; color: var(--grey-text); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; letter-spacing: 0.03em; text-transform: uppercase; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-mid); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.92rem; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--purple); }
.form-group input::placeholder { color: #bbb; }
.form-submit-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; border: none; border-radius: 100px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 20px rgba(200,16,46,0.35); }
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,16,46,0.45); }
.form-disclaimer { font-size: 0.74rem; color: var(--grey-text); text-align: center; margin-top: 10px; }

/* ── NEW HERO ── */
.hero { min-height: 100vh; background: #EEE8F7; position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 68px; }
.hero-bg-shape { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; background: linear-gradient(135deg, #EEE8F7 0%, #DDD0F0 100%); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); }
.hero-bg-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(75,44,123,0.08) 1.5px, transparent 1.5px); background-size: 28px 28px; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr 380px; gap: 32px; align-items: center; position: relative; z-index: 1; width: 100%; padding: 56px 0 40px; }
.hero-left { z-index: 2; }
.hero-left h1 { color: var(--dark); margin-bottom: 6px; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.hero-left h1 em { color: var(--purple); font-style: normal; }
.hero-tagline { font-size: 1.05rem; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.hero-left .hero-sub { font-size: 0.97rem; color: var(--grey-text); margin-bottom: 24px; max-width: 380px; font-weight: 400; }
.hero-left .hero-urgency { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--grey-mid); border-radius: 100px; padding: 7px 16px; font-size: 0.8rem; color: var(--dark); font-weight: 600; margin-bottom: 20px; box-shadow: var(--shadow-soft); }
.hero-left .trust-item svg { fill: var(--orange); }
.hero-left .trust-item span { color: var(--grey-text); } /* Person wrap */
.hero-person-wrap { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 440px; z-index: 2; }
.hero-person-bg { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 260px; height: 260px; background: var(--purple); border-radius: 50%; opacity: 0.18; }
.hero-person-figure { position: relative; z-index: 2; width: 220px; }
.hero-person-figure svg { width: 100%; height: auto; filter: drop-shadow(0 8px 24px rgba(75,44,123,0.25)); } /* Floating tags */
.hero-tag { position: absolute; background: white; border-radius: 14px; padding: 10px 14px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 8px; font-size: 0.8rem; line-height: 1.3; color: var(--dark); z-index: 10; border: 1px solid rgba(255,255,255,0.8); animation: floatTag 3s ease-in-out infinite; }
.hero-tag strong { color: var(--purple); }
.hero-tag-icon { font-size: 1.2rem; flex-shrink: 0; }
.hero-tag-1 { top: 20%; left: -10px; animation-delay: 0s; }
.hero-tag-2 { bottom: 22%; left: -5px; animation-delay: 0.8s; }
.hero-tag-3 { top: 15%; right: -10px; animation-delay: 0.4s; }
.hero-tag-4 { bottom: 30%; right: -5px; animation-delay: 1.2s; }
@keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} } /* ── ABOUT — FULL CAMPUS BACKGROUND ── */
.about-section { position: relative; padding: 80px 0; overflow: hidden; }
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.about-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.60) 70%, rgba(0,0,0,0.40) 100%);
}
/* Header */
.about-header { text-align: center; margin-bottom: 56px; }
.about-header-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: var(--orange-light); margin-bottom: 12px;
}
.about-header-line { width: 48px; height: 2px; background: var(--orange-light); margin: 0 auto 24px; border-radius: 2px;
}
.about-header-text { font-size: 1rem; color: rgba(255,255,255,0.88); max-width: 820px; margin: 0 auto; line-height: 1.8; font-weight: 400;
}
/* Forte block */
.about-forte { text-align: center; }
.about-forte-title { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--orange-light); margin-bottom: 10px;
}
.about-forte-line { width: 40px; height: 2px; background: var(--orange-light); margin: 0 auto 36px; border-radius: 2px;
}
.about-forte-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 860px; margin: 0 auto;
}
.forte-card { border-radius: 14px; padding: 28px 20px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform 0.25s;
}
.forte-card:hover { transform: translateY(-4px); }
.forte-card-purple { background: rgba(75,44,123,0.75); border: 1px solid rgba(255,255,255,0.12); }
.forte-card-gold { background: rgba(184,134,11,0.70); border: 1px solid rgba(255,255,255,0.18); }
/* .forte-icon { margin-bottom: 4px; } */
.forte-sub { font-size: 0.78rem; color: rgba(255,255,255,0.72); font-weight: 500; margin-bottom: -6px; }
.forte-num { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 800; color: white; line-height: 1;
}
.forte-label { font-size: 0.82rem; color: rgba(255,255,255,0.80); font-weight: 500; }

/* ── Hero CF7 integration (Phase 13E) ── */
.hero-form-card .wpcf7 {
	margin-top: 0;
}

.hero-form-card .wpcf7-form > p,
.hero-form-card .wpcf7-form .form-group {
	margin: 0 0 14px;
}

.hero-form-card .wpcf7-form > p:last-of-type {
	margin-bottom: 0;
}

.hero-form-card .wpcf7 label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 5px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.hero-form-card .wpcf7 label br {
	display: none;
}

.hero-form-card .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.hero-form-card .wpcf7-form-control:not(.wpcf7-submit) {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	border: 1.5px solid var(--grey-mid);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: var(--dark);
	background: var(--white);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.hero-form-card .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: var(--purple);
	box-shadow: 0 0 0 3px rgba(75, 44, 123, 0.08);
}

.hero-form-card .wpcf7-form-control::placeholder {
	color: #bbb;
}

.hero-form-card .wpcf7-form-control.wpcf7-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6763' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.hero-form-card .wpcf7-form-control.wpcf7-textarea {
	min-height: 96px;
	resize: vertical;
}

.hero-form-card .wpcf7-submit,
.hero-form-card input.wpcf7-form-control.wpcf7-submit {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	color: white;
	border: none;
	border-radius: 100px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s;
	box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
	line-height: 1.2;
}

.hero-form-card .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(200, 16, 46, 0.45);
}

.hero-form-card .wpcf7-submit:disabled {
	opacity: 0.72;
	cursor: not-allowed;
	transform: none;
}
