/* ══════════════════════════════════════════
   HHRD Pages + Advertisement Styles
══════════════════════════════════════════ */

/* ── Advertisement Section ── */
.adv-section {
    background: linear-gradient(135deg, #f8f9fa, #e8eaf6);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px dashed #c5cae9;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
}

.adv-section:hover {
    border-color: #7986cb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.adv-section .adv-placeholder {
    color: #9fa8da;
    font-size: 1.1rem;
    font-weight: 600;
}

.adv-section .adv-icon {
    font-size: 3rem;
    color: #c5cae9;
    margin-bottom: 12px;
}

/* ── Image Advertisement ── */
.adv-image-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.adv-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

/* ── HHRD Hero Section ── */
.hhrd-hero {
    background: linear-gradient(135deg, #1a237e, #283593, #3949ab);
    color: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hhrd-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: hhrdPulse 6s ease-in-out infinite;
}

@keyframes hhrdPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hhrd-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hhrd-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.hhrd-hero-logo {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.hhrd-hero-logo i {
    font-size: 3rem;
}

/* ── Big Tiles (HHRD Landing) ── */
.hhrd-big-tile {
    border-radius: 24px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
    min-height: 280px;
}

.hhrd-big-tile:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
}

.hhrd-big-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hhrd-big-tile:hover::after {
    transform: scaleX(1);
}

.hhrd-big-tile-body {
    padding: 40px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hhrd-big-tile-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.hhrd-big-tile:hover .hhrd-big-tile-icon {
    transform: scale(1.15) rotate(5deg);
}

.hhrd-big-tile-icon i {
    font-size: 2.8rem;
    color: white;
}

.hhrd-big-tile-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hhrd-big-tile-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.hhrd-big-tile-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.hhrd-big-tile:hover .hhrd-big-tile-arrow {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

/* ── Breadcrumb Style ── */
.hhrd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hhrd-breadcrumb a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.hhrd-breadcrumb a:hover {
    color: #3949ab;
}

.hhrd-breadcrumb .separator {
    color: #9e9e9e;
    font-size: 0.8rem;
}

.hhrd-breadcrumb .current {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hhrd-hero { padding: 30px 20px; }
    .hhrd-hero-title { font-size: 1.8rem; }
    .hhrd-big-tile { min-height: 220px; }
    .hhrd-big-tile-body { padding: 25px; }
    .hhrd-big-tile-title { font-size: 1.6rem; }
    .hhrd-big-tile-icon { width: 70px; height: 70px; }
    .hhrd-big-tile-icon i { font-size: 2rem; }
    .adv-section { padding: 20px; min-height: 150px; }
}