/* ===== Hakhnasah Pinnacle – Global Styles ===== */
/* Color palette — Deep Charcoal, Burnt Orange & Metallic Gold:
   Primary BG     : #111214  (Deep Charcoal)
   Cards/Surface  : #1F1F23  (Charcoal Gray)
   Action         : #C65A2E  (Deep Burnt Orange)
   Highlight      : #D4AF37  (Metallic Gold)
   Dark Gold      : #B8962E
   Light Gold     : #EBD780
   Text           : #F4F4F4  (Warm White)
   Light BG       : #F2F1EE
*/

:root {
    --hp-gold: #D4AF37;
    --hp-gold-dark: #B8962E;
    --hp-gold-light: #EBD780;
    --hp-black: #111214;
    --hp-navy: #1F1F23;
    --hp-navy-accent: #C65A2E;
    --hp-white: #FFFFFF;
    --hp-light: #F2F1EE;
    --hp-gray: #6C757D;
    --hp-success: #28A745;
    --hp-danger: #DC3545;
    --hp-warning: #FFC107;
    --hp-info: #17A2B8;
    --hp-shadow: 0 4px 24px rgba(17,18,20,0.14);
    --hp-shadow-hover: 0 8px 32px rgba(198,90,46,0.20);
    --hp-radius: 12px;
    --hp-transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--hp-black);
    background: var(--hp-light);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--hp-black);
}

a {
    color: var(--hp-gold-dark);
    transition: var(--hp-transition);
}
a:hover { color: var(--hp-gold); }

/* ===== TOP NAVBAR ===== */
.hp-navbar {
    background: linear-gradient(135deg, var(--hp-black) 0%, var(--hp-navy) 100%);
    padding: 0.5rem 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.hp-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.2rem 0;
}

.hp-navbar .navbar-brand img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.hp-navbar .navbar-nav {
    gap: 0.35rem;
}

.hp-navbar .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.6rem 1.15rem !important;
    border-radius: 6px;
    transition: var(--hp-transition);
    position: relative;
    white-space: nowrap;
}

.hp-navbar .nav-link:hover,
.hp-navbar .nav-link.active {
    color: var(--hp-gold) !important;
    background: rgba(212,175,55,0.12);
}

.hp-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--hp-gold);
    transition: var(--hp-transition);
    transform: translateX(-50%);
}

.hp-navbar .nav-link:hover::after,
.hp-navbar .nav-link.active::after {
    width: 60%;
}

.hp-navbar .btn-admin {
    background: var(--hp-gold);
    color: var(--hp-black);
    font-weight: 700;
    border: none;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    transition: var(--hp-transition);
}

.hp-navbar .btn-admin:hover {
    background: var(--hp-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.hp-navbar .navbar-toggler {
    border-color: var(--hp-gold);
}

.hp-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hp-hero {
    background: linear-gradient(135deg, var(--hp-black) 0%, var(--hp-navy) 50%, var(--hp-navy-accent) 100%);
    color: var(--hp-white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hp-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hp-hero h1 {
    color: var(--hp-white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hp-hero .gold-text {
    color: var(--hp-gold);
}

.hp-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn-hp-gold {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    color: var(--hp-black);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--hp-transition);
    position: relative;
    overflow: hidden;
}

.btn-hp-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transform: translate(-50%,-50%);
}

.btn-hp-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hp-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    color: var(--hp-black);
}

.btn-hp-navy {
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-navy-accent));
    color: var(--hp-white);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    transition: var(--hp-transition);
}

.btn-hp-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198,90,46,0.4);
    color: var(--hp-white);
}

.btn-hp-outline {
    background: transparent;
    color: var(--hp-gold);
    border: 2px solid var(--hp-gold);
    border-radius: 25px;
    padding: 0.55rem 1.8rem;
    font-weight: 700;
    transition: var(--hp-transition);
}

.btn-hp-outline:hover {
    background: var(--hp-gold);
    color: var(--hp-black);
    transform: translateY(-2px);
}

/* Button icon animation */
.btn i, .btn svg {
    transition: transform 0.3s ease;
}
.btn:hover i, .btn:hover svg {
    transform: translateX(3px);
}

/* ===== CARDS ===== */
.hp-card {
    background: var(--hp-white);
    border: none;
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: var(--hp-transition);
    overflow: hidden;
}

.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-card .card-img-top-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--hp-navy) 0%, var(--hp-navy-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-gold);
    font-size: 3rem;
}

.hp-card .card-body {
    padding: 1.5rem;
}

.hp-card .card-title {
    font-weight: 700;
    color: var(--hp-black);
    margin-bottom: 0.5rem;
}

.hp-card .card-text {
    color: var(--hp-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hp-card .badge-gold {
    background: var(--hp-gold);
    color: var(--hp-black);
    font-weight: 600;
    padding: 0.35em 0.8em;
    border-radius: 20px;
    font-size: 0.8rem;
}

.hp-card .badge-navy {
    background: var(--hp-navy);
    color: var(--hp-white);
    font-weight: 600;
    padding: 0.35em 0.8em;
    border-radius: 20px;
    font-size: 0.8rem;
}

.hp-card .price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hp-gold-dark);
}

/* ===== SECTION STYLES ===== */
.hp-section {
    padding: 4rem 0;
}

.hp-section-dark {
    background: linear-gradient(135deg, var(--hp-black), var(--hp-navy));
    color: var(--hp-white);
}

.hp-section-dark h2,
.hp-section-dark h3 {
    color: var(--hp-white);
}

.hp-section-gold {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    color: var(--hp-black);
}

.hp-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.hp-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--hp-gold);
    border-radius: 2px;
}

.hp-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.hp-section-subtitle {
    color: var(--hp-gray);
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* ===== STATS COUNTER ===== */
.hp-stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.hp-stat-card .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hp-gold);
    line-height: 1;
}

.hp-stat-card .stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* ===== SERVICE ICON CARDS ===== */
.hp-service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    transition: var(--hp-transition);
    border-bottom: 3px solid transparent;
}

.hp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hp-shadow-hover);
    border-bottom-color: var(--hp-gold);
}

.hp-service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: var(--hp-black);
    transition: var(--hp-transition);
}

.hp-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.hp-service-card h5 {
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hp-service-card p {
    color: var(--hp-gray);
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.hp-testimonial {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    padding: 2rem;
    box-shadow: var(--hp-shadow);
    position: relative;
    transition: var(--hp-transition);
}

.hp-testimonial:hover {
    box-shadow: var(--hp-shadow-hover);
}

.hp-testimonial::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--hp-gold);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.hp-testimonial .stars {
    color: var(--hp-gold);
    margin-bottom: 0.5rem;
}

.hp-testimonial .client-name {
    font-weight: 700;
    color: var(--hp-black);
}

.hp-testimonial .client-company {
    font-size: 0.85rem;
    color: var(--hp-gray);
}

/* ===== FOOTER ===== */
.hp-footer {
    background: linear-gradient(135deg, var(--hp-black) 0%, #0A0A0C 100%);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}

.hp-footer h5 {
    color: var(--hp-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hp-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--hp-transition);
    font-size: 0.9rem;
}

.hp-footer a:hover {
    color: var(--hp-gold);
    padding-left: 4px;
}

.hp-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.hp-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    color: var(--hp-gold);
    margin-right: 8px;
    transition: var(--hp-transition);
}

.hp-footer .social-icons a:hover {
    background: var(--hp-gold);
    color: var(--hp-black);
    transform: translateY(-3px);
    padding-left: 0;
}

/* ===== FORMS ===== */
.hp-form .form-control,
.hp-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    transition: var(--hp-transition);
    font-size: 0.95rem;
}

.hp-form .form-control:focus,
.hp-form .form-select:focus {
    border-color: var(--hp-gold);
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.2);
}

.hp-form .form-label {
    font-weight: 600;
    color: var(--hp-black);
    font-size: 0.9rem;
}

/* ===== PAGE HEADER ===== */
.hp-page-header {
    background: linear-gradient(135deg, var(--hp-black) 0%, var(--hp-navy) 100%);
    color: var(--hp-white);
    padding: 3rem 0;
    text-align: center;
}

.hp-page-header h1 {
    color: var(--hp-white);
    font-size: 2.5rem;
    font-weight: 800;
}

.hp-page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.hp-page-header .breadcrumb a {
    color: var(--hp-gold);
}

.hp-page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.hp-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ===== ALERTS ===== */
.hp-alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #b1dfbb;
    color: #155724;
    border-radius: var(--hp-radius);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* ===== NEWSLETTER ===== */
.hp-newsletter {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    padding: 3rem 0;
}

.hp-newsletter h3 {
    color: var(--hp-black);
    font-weight: 800;
}

.hp-newsletter .input-group {
    max-width: 500px;
}

.hp-newsletter .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0.7rem 1.2rem;
}

.hp-newsletter .btn {
    border-radius: 0 25px 25px 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.6s ease forwards; }

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Pulse on hover for icons */
.hover-pulse:hover { animation: pulse 0.5s ease; }

/* ===== LOGIN PAGE ===== */
.hp-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--hp-black) 0%, var(--hp-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-login-card {
    background: var(--hp-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
}

.hp-login-card .login-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hp-login-card .login-logo img {
    height: 60px;
    border-radius: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .hp-hero h1 { font-size: 2rem; }
    .hp-hero { padding: 3rem 0 2.5rem; }
    .hp-section { padding: 2.5rem 0; }
    .hp-section-title { font-size: 1.6rem; }
    .hp-stat-card .stat-number { font-size: 2rem; }
}

/* ===== TOP INFO BAR ===== */
.hp-topbar-info {
    background: var(--hp-black);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.hp-topbar-info .topbar-contacts span {
    display: inline-flex;
    align-items: center;
}
.hp-topbar-info .topbar-contacts i {
    color: var(--hp-gold);
    font-size: 0.75rem;
}
.hp-topbar-info .topbar-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: var(--hp-gold);
    font-size: 0.7rem;
    transition: var(--hp-transition);
    text-decoration: none;
}
.hp-topbar-info .topbar-socials a:hover {
    background: var(--hp-gold);
    color: var(--hp-black);
    transform: scale(1.15);
}

/* ===== DROPDOWN MENUS ===== */
.hp-dropdown {
    background: var(--hp-white);
    border: none;
    border-radius: var(--hp-radius);
    box-shadow: 0 10px 40px rgba(17,18,20,0.20);
    padding: 0.5rem 0;
    min-width: 240px;
    animation: fadeInUp 0.25s ease;
    border-top: 3px solid var(--hp-gold);
}

.hp-dropdown .dropdown-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hp-black);
    transition: var(--hp-transition);
    border-radius: 0;
}

.hp-dropdown .dropdown-item:hover,
.hp-dropdown .dropdown-item:focus {
    background: rgba(212,175,55,0.1);
    color: var(--hp-gold-dark);
    padding-left: 1.5rem;
}

.hp-dropdown .dropdown-item i.text-gold {
    color: var(--hp-gold) !important;
    width: 18px;
    text-align: center;
}

.hp-dropdown .dropdown-divider {
    border-color: rgba(212,175,55,0.15);
    margin: 0.3rem 0;
}

/* Fix dropdown toggle caret color on dark navbar */
.hp-navbar .dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.6);
    transition: var(--hp-transition);
}
.hp-navbar .dropdown-toggle:hover::after {
    border-top-color: var(--hp-gold);
}

/* ===== HERO CAROUSEL ===== */
.hp-carousel {
    position: relative;
    overflow: hidden;
}

.hp-carousel .carousel-item {
    height: 600px;
    position: relative;
    transition: opacity 1.2s ease-in-out;
    backface-visibility: hidden;
}

/* Slide content entrance animation */
.hp-carousel .carousel-item.active .carousel-content {
    animation: carouselContentIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
.hp-carousel .carousel-item.active .carousel-slide-icon {
    animation: carouselIconIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@keyframes carouselContentIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes carouselIconIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

.hp-carousel .carousel-slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-carousel .carousel-item:nth-child(1) .carousel-slide-bg {
    background: linear-gradient(135deg, #111214 0%, #1F1F23 40%, #2A1810 100%);
}
.hp-carousel .carousel-item:nth-child(2) .carousel-slide-bg {
    background: linear-gradient(135deg, #1F1F23 0%, #111214 60%, #2A1810 100%);
}
.hp-carousel .carousel-item:nth-child(3) .carousel-slide-bg {
    background: linear-gradient(135deg, #2A1810 0%, #1F1F23 50%, #111214 100%);
}
.hp-carousel .carousel-item:nth-child(4) .carousel-slide-bg {
    background: linear-gradient(135deg, #C65A2E 0%, #111214 50%, #1F1F23 100%);
}

.hp-carousel .carousel-slide-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
}

.hp-carousel .carousel-slide-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
}

.hp-carousel .carousel-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(17,18,20,0.88) 0%, rgba(28,28,28,0.78) 50%, rgba(60,30,0,0.72) 100%);
    z-index: 1;
}

.hp-carousel .carousel-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
}

.hp-carousel .carousel-content .slide-badge {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    color: var(--hp-gold);
    padding: 0.4em 1em;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(212,175,55,0.3);
}

.hp-carousel .carousel-content h1 {
    color: var(--hp-white);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hp-carousel .carousel-content .gold-text {
    color: var(--hp-gold);
}

.hp-carousel .carousel-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hp-carousel .carousel-slide-icon {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 2px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--hp-gold);
    animation: pulse 3s ease-in-out infinite;
}

.hp-carousel .carousel-control-prev,
.hp-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.2);
    border: 2px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--hp-transition);
}

.hp-carousel .carousel-control-prev { left: 20px; }
.hp-carousel .carousel-control-next { right: 20px; }

.hp-carousel .carousel-control-prev:hover,
.hp-carousel .carousel-control-next:hover {
    background: var(--hp-gold);
    border-color: var(--hp-gold);
}

.hp-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hp-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

.hp-carousel .carousel-indicators {
    bottom: 20px;
}
.hp-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    margin: 0 5px;
    transition: var(--hp-transition);
}
.hp-carousel .carousel-indicators .active {
    background: var(--hp-gold);
    border-color: var(--hp-gold-dark);
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .hp-carousel .carousel-item { height: 500px; }
    .hp-carousel .carousel-content h1 { font-size: 2.2rem; }
    .hp-carousel .carousel-slide-icon { width: 200px; height: 200px; font-size: 4rem; }
}
@media (max-width: 575.98px) {
    .hp-carousel .carousel-item { height: 450px; }
    .hp-carousel .carousel-content h1 { font-size: 1.7rem; }
    .hp-carousel .carousel-slide-icon { display: none; }
    .hp-carousel .carousel-control-prev,
    .hp-carousel .carousel-control-next { width: 36px; height: 36px; }
}

/* ===== GALLERY ===== */
.hp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hp-gallery-item {
    border-radius: var(--hp-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--hp-shadow);
    transition: var(--hp-transition);
}

.hp-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-gallery-item .gallery-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--hp-gold);
}

.hp-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(17,18,20,0.88));
    padding: 1.5rem 1rem 1rem;
    color: var(--hp-white);
    transform: translateY(100%);
    transition: var(--hp-transition);
}

.hp-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.hp-gallery-item .gallery-overlay h6 {
    color: var(--hp-gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.hp-gallery-item .gallery-overlay p {
    font-size: 0.82rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Video card */
.hp-video-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
    transition: var(--hp-transition);
}

.hp-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-video-card .video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--hp-black), var(--hp-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hp-video-card .video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.9);
    color: var(--hp-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--hp-transition);
}

.hp-video-card:hover .video-play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

/* ===== ANNOUNCEMENT CARDS ===== */
.hp-announcement-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    padding: 1.5rem;
    transition: var(--hp-transition);
    border-left: 4px solid var(--hp-gold);
}

.hp-announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-announcement-card .announcement-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--hp-gray);
    margin-bottom: 0.6rem;
}

.hp-announcement-card .announcement-date i {
    color: var(--hp-gold);
}

.hp-announcement-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hp-announcement-card .announcement-category {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: var(--hp-gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25em 0.8em;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

/* ===== ENHANCED FOOTER ===== */
.hp-footer .footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.8;
}

.hp-footer .footer-links li {
    margin-bottom: 0.6rem;
}

.hp-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-footer .footer-links a i {
    font-size: 0.6rem;
    color: var(--hp-gold);
    transition: var(--hp-transition);
}

.hp-footer .footer-links a:hover i {
    transform: translateX(3px);
}

.hp-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
}

.hp-footer .footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-gold);
    font-size: 0.8rem;
}

.hp-footer .footer-newsletter {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--hp-radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.hp-footer .footer-newsletter h5 {
    margin-bottom: 0;
}

.hp-footer .footer-newsletter-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--hp-white);
    border-radius: 25px 0 0 25px;
    padding: 0.6rem 1.2rem;
}

.hp-footer .footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.hp-footer .footer-newsletter-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--hp-gold);
    box-shadow: none;
    color: var(--hp-white);
}

.hp-footer .footer-newsletter-btn {
    border-radius: 0 25px 25px 0 !important;
    white-space: nowrap;
}

.hp-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    font-size: 0.82rem;
}

.hp-footer .footer-bottom a {
    font-size: 0.82rem;
}

/* ===== TEAM CARDS ===== */
.hp-team-card {
    text-align: center;
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    padding: 2rem 1.5rem;
    transition: var(--hp-transition);
    overflow: hidden;
    position: relative;
}

.hp-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-team-card .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.2rem;
    color: var(--hp-black);
    font-weight: 800;
    border: 4px solid var(--hp-white);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    transition: var(--hp-transition);
}

.hp-team-card:hover .team-avatar {
    transform: scale(1.08);
}

.hp-team-card h5 {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.hp-team-card .team-role {
    color: var(--hp-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.hp-team-card p {
    color: var(--hp-gray);
    font-size: 0.88rem;
}

.hp-team-card .team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: var(--hp-gold-dark);
    margin: 0 3px;
    transition: var(--hp-transition);
    font-size: 0.82rem;
}

.hp-team-card .team-social a:hover {
    background: var(--hp-gold);
    color: var(--hp-black);
    transform: translateY(-2px);
}

/* ===== WHY CHOOSE US TIMELINE ===== */
.hp-why-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.hp-why-item .why-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--hp-black);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.hp-why-item h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hp-why-item p {
    color: var(--hp-gray);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(212,175,55,0.12);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--hp-black);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h6 {
    font-weight: 700;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.contact-info-card p {
    color: var(--hp-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    color: var(--hp-gold);
    border: 1px solid rgba(212,175,55,0.15);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-btn:hover {
    background: var(--hp-gold);
    color: var(--hp-black);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.contact-form-card {
    background: linear-gradient(145deg, #ffffff, #faf9f6);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(212,175,55,0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-gold), var(--hp-gold-dark), var(--hp-gold));
    background-size: 200% 100%;
    animation: contactShimmer 3s ease infinite;
}

@keyframes contactShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212,175,55,0.12);
}

.contact-form-header-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--hp-black);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    animation: contactIconPulse 2s ease-in-out infinite;
}

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

.contact-form-header h4 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
    color: var(--hp-navy);
}

.contact-form-header p {
    font-size: 0.85rem;
    color: var(--hp-gray);
    margin-bottom: 0;
}

.contact-label-icon {
    color: var(--hp-gold);
    font-size: 0.8rem;
}

.contact-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-icon {
    position: absolute;
    left: 14px;
    color: rgba(212,175,55,0.5);
    font-size: 0.9rem;
    z-index: 2;
    transition: color 0.3s ease;
    pointer-events: none;
}

.contact-input-group:focus-within .contact-input-icon {
    color: var(--hp-gold);
}

.contact-input {
    padding-left: 42px !important;
    border: 2px solid rgba(212,175,55,0.15) !important;
    border-radius: 12px !important;
    height: 48px;
    font-size: 0.92rem;
    background: rgba(255,255,255,0.8) !important;
    transition: all 0.3s ease !important;
}

textarea.contact-input {
    height: auto;
    padding-top: 12px !important;
}

.contact-input:focus {
    border-color: var(--hp-gold) !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12), 0 4px 12px rgba(212,175,55,0.08) !important;
    background: #fff !important;
    transform: translateY(-1px);
}

.contact-input::placeholder {
    color: #b0b0b0;
    font-size: 0.88rem;
}

select.contact-input {
    cursor: pointer;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    color: var(--hp-black);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 14px 2rem;
    border: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.45);
    color: var(--hp-black);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShimmer 2.5s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
