/* ============================================
   EMITRUST HOME SECTIONS — css/home-sections.css
   Brand: teal #06AAC5, ink #0D0D0D, off #F5F5F3
   Fonts: Syne (headings) + Inter (body)
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: url('../images/hero-bg.png') no-repeat center center / cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1rem;
}

.hero .brand-text {
    color: #97CADB;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    font-family: 'Syne', sans-serif;
}

.hero .Description {
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
}

.hero .encourage {
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.1em;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    opacity: 0.08;
    color: white;
    line-height: 1;
}

.cta-btn {
    background-color: #06AAC5;
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #0891a8;
    color: white;
}

.Countdown {
    position: absolute;
    left: 0;
    top: 80vh;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    padding-left: 1rem;
}

.social-icons {
    position: absolute;
    right: 0;
    top: 80vh;
    padding-right: 1rem;
}

.social-icons a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icons a:hover { color: #06AAC5; }

.glass-card {
    background: rgba(114, 150, 164, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    color: white;
}

.down { margin-top: -8vh; }

/* ============================================
   SEARCH STRIP SECTION
   ============================================ */
.search-section {
    background: #0D0D0D;
    padding: 5rem 0;
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #06AAC5;
}

.search-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #06AAC5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    border: 1px solid rgba(6,170,197,0.3);
    padding: 0.3rem 0.875rem;
}

.search-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.search-heading span { color: #06AAC5; }

.search-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
}

.search-bar-wrap {
    display: flex;
    background: white;
    max-width: 640px;
    overflow: hidden;
}

.search-bar-wrap input {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #0D0D0D;
    outline: none;
    background: white;
}

.search-bar-wrap input::placeholder { color: #9A9A9A; }

.search-bar-wrap button {
    background: #06AAC5;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.search-bar-wrap button:hover { background: #0891a8; }

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.search-tag {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 0.875rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.03em;
}

.search-tag:hover {
    border-color: #06AAC5;
    color: #06AAC5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: #F5F5F3;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #06AAC5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0D0D0D;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 0.9rem;
    color: #9A9A9A;
    margin-bottom: 0;
}

/* Service cards */
.service-card-new {
    background: white;
    border: 1px solid #E8E8E5;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.service-card-new:hover {
    border-color: #06AAC5;
    box-shadow: 0 0 0 1px #06AAC5;
}

.service-card-new.featured {
    border-color: #06AAC5;
    border-width: 2px;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #06AAC5;
    transition: background 0.2s;
}

.service-card-new.featured .service-icon-wrap {
    background: #06AAC5;
    color: white;
}

.service-card-new:hover .service-icon-wrap {
    background: #06AAC5;
    color: white;
}

.service-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #06AAC5;
    color: white;
    padding: 0.25rem 0.6rem;
}

.service-card-new h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 0.5rem;
}

.service-card-new p {
    font-size: 0.85rem;
    color: #9A9A9A;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #06AAC5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.service-link:hover { gap: 0.625rem; color: #0891a8; }

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #06AAC5;
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.service-link-btn:hover { background: #0891a8; color: white; }

/* ============================================
   FACULTIES SECTION
   ============================================ */
.faculties-section {
    padding: 5rem 0;
    background: white;
}

.faculty-card {
    background: white;
    border: 1px solid #E8E8E5;
    padding: 2rem 1.5rem;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #06AAC5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faculty-card:hover::before { transform: scaleX(1); }

.faculty-card:hover {
    border-color: #E8E8E5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.faculty-icon-wrap {
    width: 56px;
    height: 56px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    color: #06AAC5;
    transition: background 0.2s;
}

.faculty-card:hover .faculty-icon-wrap {
    background: #06AAC5;
    color: white;
}

.faculty-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 0.4rem;
}

.faculty-count {
    font-size: 0.75rem;
    color: #9A9A9A;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.faculty-arrow {
    font-size: 1.1rem;
    color: #E8E8E5;
    transition: color 0.2s, transform 0.2s;
}

.faculty-card:hover .faculty-arrow {
    color: #06AAC5;
    transform: translateX(4px);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: #0D0D0D;
    padding: 4rem 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #06AAC5;
}

.cta-banner h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0D0D0D;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn-cta-white:hover {
    background: #06AAC5;
    color: white;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: #F5F5F3;
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #06AAC5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(6,170,197,0.3);
    padding: 0.3rem 0.875rem;
    margin-bottom: 1.25rem;
}

.about-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0D0D0D;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-heading span { color: #06AAC5; }

.about-body {
    font-size: 0.95rem;
    color: #5A5A5A;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.about-feature i {
    color: #06AAC5;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature-text h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 0.2rem;
}

.about-feature-text p {
    font-size: 0.82rem;
    color: #9A9A9A;
    margin: 0;
    line-height: 1.5;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0D0D0D;
    border: 1px solid #E8E8E5;
    padding: 0.4rem 0.875rem;
    background: white;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.2s, color 0.2s;
}

.about-pill i { color: #06AAC5; font-size: 0.8rem; }

.about-pill:hover {
    border-color: #06AAC5;
    color: #06AAC5;
}

/* About right — stat panel */
.about-stat-panel {
    background: #0D0D0D;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.about-stat-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: #06AAC5;
}

.about-stat h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #06AAC5;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-stat-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #06AAC5;
    color: white;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-about:hover { background: #0891a8; color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .about-stat-panel { margin-top: 2rem; }
    .cta-banner .text-lg-end { text-align: left !important; margin-top: 1.5rem; }
}

@media (max-width: 768px) {
    .hero .encourage { font-size: clamp(2rem, 8vw, 3.5rem); }
    .glass-card { display: none; }
    .Countdown { top: 65vh; }
    .social-icons { top: 65vh; }
    .search-section { padding: 3.5rem 0; }
    .services-section,
    .faculties-section { padding: 3.5rem 0; }
    .about-section { padding: 3.5rem 0; }
    .cta-banner { padding: 3rem 0; }
    .search-bar-wrap { flex-direction: column; }
    .search-bar-wrap button { padding: 0.875rem; justify-content: center; }
}

@media (max-width: 576px) {
    .faculty-card { padding: 1.5rem 1rem; }
    .service-card-new { padding: 2rem 1.25rem; }
    .about-stat-panel { padding: 2rem 1.5rem; }
    .cta-banner { text-align: center; }
    .btn-cta-white { width: 100%; justify-content: center; }
}