/* ======================================
   ICBEA - International Construction Brand Excellence Award
   Gold & Black Premium Theme
   Matching mciea.my layout structure
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Palette (Based on New Logo) */
    --primary: #10455B;
    --primary-light: #1D6381;
    --primary-dark: #083040;
    --secondary: #8BC34A;
    --secondary-light: #A4D468;
    --secondary-dark: #6B9E35;
    --primary-glow: rgba(16, 69, 91, 0.25);
    --secondary-glow: rgba(139, 195, 74, 0.25);

    /* Assigning legacy variables to new palette (Teal & Green) */
    --gold: #10455B;
    /* Primary Teal */
    --gold-light: #8BC34A;
    /* Secondary Green */
    --gold-dark: #083040;
    /* Darker Teal */
    --gold-darker: #05212C;
    --gold-glow: rgba(16, 69, 91, 0.25);
    --secondary: #8BC34A;
    --secondary-glow: rgba(139, 195, 74, 0.25);

    /* New Light Green Theme (Hijau Cair) */
    --black: #EDF7ED;
    /* Very Light Green/Mint for main backgrounds */
    --black-light: #E1F0E1;
    /* Slightly deeper light green */
    --black-mid: #FFFFFF;
    /* White for cards to pop on light green */
    --dark-gray: #10455B;
    /* Dark Teal for headings/text */
    --gray: #4A635D;
    --light-gray: #A8BCC5;

    /* Text Colors for Light Theme */
    --text-primary: #10455B;
    /* Dark Teal for readability */
    --text-muted: #4A635D;
    /* Muted teal-green */

    /* Light backgrounds */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --cream: #F1F5F9;

    /* Danger/Red Palette (For CTAs) */
    --danger: #D32F2F;
    --danger-light: #EF5350;
    --danger-dark: #B71C1C;
    --danger-glow: rgba(211, 47, 47, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary) 100%);
    --gradient-gold-horizontal: linear-gradient(90deg, var(--secondary), var(--secondary-light), var(--secondary));
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-red: linear-gradient(135deg, var(--danger) 0%, var(--danger-light) 100%);
    --gradient-dark: linear-gradient(180deg, #EDF7ED 0%, #E1F0E1 100%);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== RESET ======== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar-icbea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease);
}

.navbar-icbea.scrolled {
    padding: 8px 0;
    background: rgba(237, 247, 237, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(16, 69, 91, 0.1);
}

.navbar-icbea:not(.scrolled) .nav-link-icbea {
    color: var(--text-primary) !important;
}

.scrolled .nav-link-icbea {
    color: var(--text-primary) !important;
}

.navbar-brand-icbea {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 48px;
    width: auto;
    transition: all 0.3s var(--ease);
}

.navbar-icbea.scrolled .navbar-logo {
    height: 38px;
    width: auto;
}

.navbar-brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold) !important;
}

.navbar-brand-text .brand-bifa {
    color: var(--gold);
    font-weight: 800;
}

.navbar-brand-text small {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.9;
}

.nav-link-icbea {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 16px !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link-icbea::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
    border-radius: 1px;
}

.nav-link-icbea:hover {
    color: var(--gold-light) !important;
}

.nav-link-icbea:hover::after {
    width: 50%;
}

.nav-btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white) !important;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.3s var(--ease);
}

.nav-btn-brochure:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
    color: var(--white) !important;
    opacity: 0.9;
}

.nav-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: var(--gradient-red);
    color: var(--white) !important;
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 6px 20px var(--danger-glow);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.nav-btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
    transform: skewX(-20deg);
}

.nav-btn-register:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px var(--danger-glow);
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--danger-dark) 0%, var(--danger) 100%);
    animation: none;
}

.nav-btn-register:hover::before {
    left: 150%;
}

/* Update mobile navigation buttons */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin: 15px -15px 0;
        padding: 25px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(16, 69, 91, 0.15);
        border: 1px solid rgba(139, 195, 74, 0.1);
    }

    .navbar-nav {
        gap: 15px !important;
        padding: 10px 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .nav-link-icbea {
        padding: 10px 0 !important;
        font-size: 0.9rem;
    }

    .nav-btn-brochure, .nav-btn-register {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        margin: 5px auto;
    }

    .nav-item.dropdown {
        flex-direction: column;
        align-items: center;
    }

    .register-dropdown {
        position: static !important;
        width: 100%;
        max-width: 320px;
        transform: none !important;
        margin: 10px 0 0 !important;
        box-shadow: none;
        border: 1px solid rgba(211, 47, 47, 0.1);
    }
}

/* Registration Dropdown Styling */
.register-dropdown {
    min-width: 300px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(139, 195, 74, 0.2);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(16, 69, 91, 0.15);
    margin-top: 15px !important;
    border-top: 4px solid var(--danger);
}

.register-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    white-space: normal;
}

.register-dropdown .dropdown-item:hover {
    background: rgba(211, 47, 47, 0.05);
    border-color: rgba(211, 47, 47, 0.1);
    transform: translateX(5px);
}

.register-dropdown .dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.register-dropdown .dropdown-icon.forum {
    background: rgba(16, 69, 91, 0.1);
    color: var(--primary);
}

.register-dropdown .dropdown-icon.award {
    background: rgba(139, 195, 74, 0.1);
    color: var(--secondary);
}

.register-dropdown .dropdown-item:hover .dropdown-icon.forum {
    background: var(--primary);
    color: var(--white);
}

.register-dropdown .dropdown-item:hover .dropdown-icon.award {
    background: var(--secondary);
    color: var(--white);
}

.register-dropdown .dropdown-content {
    display: flex;
    flex-direction: column;
}

.register-dropdown .dropdown-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.register-dropdown .dropdown-desc {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.register-dropdown .dropdown-divider {
    margin: 10px 0;
    opacity: 0.1;
}

/* Dropdown Animation */
.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* Remove caret from dropdown toggle */
.nav-btn-register.dropdown-toggle::after {
    display: none;
}

.navbar-toggler-icbea {
    border: 1px solid var(--gold);
    padding: 5px 9px;
}

.navbar-toggler-icbea .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='%2310455B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================
   HERO SECTION — Split layout, trophy right
   ====================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    /* Melaraskan kepekatan (opacity) supaya tidak terlalu terang */
    pointer-events: none;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(21, 69, 91, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(21, 69, 91, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.25);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 8vw, 3.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(16, 69, 91, 0.05);
}

.hero-title .gold {
    background: linear-gradient(135deg, #1D6381 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 35px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: var(--gradient-gold);
    border-radius: 10px;
}

.hero-subtitle span {
    display: block;
    font-size: 1rem;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--secondary-glow);
    color: var(--white);
    opacity: 0.95;
}

.hero-btn.register {
    background: var(--gradient-red);
    box-shadow: 0 6px 20px var(--danger-glow);
}

.hero-btn.register:hover {
    background: linear-gradient(135deg, var(--danger-dark) 0%, var(--danger) 100%);
    box-shadow: 0 12px 30px var(--danger-glow);
}

.hero-btn-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 166, 53, 0.25));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 69, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.4rem;
}

.hero-scroll span {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Hero Countdown Timer */
.hero-countdown-container {
    margin-bottom: 40px;
    max-width: fit-content;
}

.countdown-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 195, 74, 0.5);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 20px 50px rgba(16, 69, 91, 0.15), 0 0 30px rgba(139, 195, 74, 0.1);
    transition: all 0.3s var(--ease);
    animation: boxPulse 4s infinite ease-in-out;
}

@keyframes boxPulse {
    0%, 100% { box-shadow: 0 20px 50px rgba(16, 69, 91, 0.15), 0 0 30px rgba(139, 195, 74, 0.1); }
    50% { box-shadow: 0 20px 60px rgba(16, 69, 91, 0.2), 0 0 45px rgba(139, 195, 74, 0.25); }
}

.countdown-box:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 25px 60px rgba(16, 69, 91, 0.2), 0 0 40px rgba(139, 195, 74, 0.3);
    animation-play-state: paused;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    min-width: 110px;
}

.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
    letter-spacing: -1.5px;
}

.countdown-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.countdown-divider {
    width: 2px;
    height: 55px;
    background: linear-gradient(to bottom, transparent, rgba(16, 69, 91, 0.2), transparent);
}

.countdown-info {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
    opacity: 0.9;
    padding-left: 5px;
}

.countdown-info i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-countdown-container {
        margin: 0 auto 30px;
    }
    .countdown-item {
        min-width: 65px;
        padding: 8px 12px;
    }
    .countdown-value {
        font-size: 1.8rem;
    }
    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    .countdown-divider {
        height: 30px;
    }
}

/* ======================================
   SECTION COMMON — light background sections
   ====================================== */
.section-light {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-cream {
    padding: 100px 0;
    background: var(--off-white);
}

.section-dark {
    padding: 100px 0;
    background: var(--black);
    color: var(--text-primary);
}

.section-gold-bg {
    padding: 100px 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.section-gold-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(16, 69, 91, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 195, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title {
    color: var(--text-primary);
}

.section-light .section-title,
.section-cream .section-title {
    color: var(--text-primary);
}

.gold-line {
    width: 70px;
    height: 3px;
    background: var(--secondary);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--text-muted);
}

/* ======================================
   WHY ENTER SECTION
   ====================================== */
.why-enter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 69, 91, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(16, 69, 91, 0.1), rgba(139, 195, 74, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.why-card:hover .why-icon {
    background: var(--secondary);
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color 0.3s;
}

.why-card:hover .why-icon i {
    color: var(--black);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================================
   AWARDS CATEGORIES
   ====================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--black-mid);
    border: 1px solid rgba(139, 195, 74, 0.12);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.award-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.award-card:hover {
    border-color: rgba(139, 195, 74, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(5, 26, 34, 0.4);
}

.award-card:hover::after {
    transform: scaleX(1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.award-card:hover .award-icon {
    background: var(--secondary);
    border-color: transparent;
}

.award-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color 0.3s;
}

.award-card:hover .award-icon i {
    color: var(--black);
}

.award-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.award-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================================
   SUBMISSION PROCEDURE
   ====================================== */
.procedure-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all 0.3s var(--ease);
}

.procedure-step:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 166, 53, 0.08);
    transform: translateX(6px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.step-content h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ======================================
   CEREMONY / INCENTIVES SECTION
   ====================================== */
.ceremony-section {
    padding: 100px 0 80px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.ceremony-top-header {
    text-align: center;
    margin-bottom: 50px;
}

.ceremony-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.ceremony-main-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-date-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
}

.ceremony-date-text strong {
    font-weight: 700;
}

/* Incentives Header */
.incentives-header {
    text-align: center;
    margin-bottom: 60px;
}

.incentives-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.incentives-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.incentives-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trophy + Incentive Cards Layout */
.trophy-incentives-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Incentive Columns */
.incentive-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Incentive Card */
.incentive-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    transition: all 0.3s var(--ease);
}

.incentive-card:hover {
    transform: translateY(-2px);
}

/* Left cards — content then check */
.incentive-card-left {
    text-align: right;
    justify-content: flex-end;
}

.incentive-card-left .incentive-card-content {
    order: 1;
}

.incentive-card-left .incentive-check {
    order: 2;
}

/* Right cards — check then content */
.incentive-card-right {
    text-align: left;
    justify-content: flex-start;
}

.incentive-card-right .incentive-check {
    order: 1;
}

.incentive-card-right .incentive-card-content {
    order: 2;
}

/* Checkmark Circle */
.incentive-check {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 166, 53, 0.35);
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.3s var(--ease);
}

.incentive-card:hover .incentive-check {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(212, 166, 53, 0.5);
}

.incentive-check i {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

/* Card Content */
.incentive-card-content h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.incentive-card-content p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Center Trophy */
.trophy-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.trophy-img {
    max-height: 480px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(16, 69, 91, 0.2));
    animation: trophyFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.trophy-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 69, 91, 0.06) 0%, transparent 70%);
    z-index: 1;
}

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* ======================================
   GALLERY / CAROUSEL
   ====================================== */
.carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
}

.carousel-inner {
    border-radius: 14px;
    overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 69, 91, 0.25);
    border-radius: 50%;
    border: 1px solid var(--secondary);
    padding: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    opacity: 0.35;
}

.carousel-indicators .active {
    opacity: 1;
}

/* ======================================
   CONTACT SECTION — Dark gold background
   ====================================== */
.contact-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold-horizontal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 69, 91, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.contact-detail-text h5 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-detail-text a:hover {
    color: var(--gold);
}

.contact-people h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.person-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 166, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s var(--ease);
}

.person-card:hover {
    border-color: rgba(139, 195, 74, 0.3);
    background: rgba(16, 69, 91, 0.06);
    transform: translateX(5px);
}

.person-avatar {
    width: 46px;
    height: 46px;
    background: rgba(16, 69, 91, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.person-avatar i {
    color: var(--gold);
}

.person-info h5 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 3px;
}

.person-info a {
    font-size: 0.82rem;
    color: var(--gold);
}

.person-info a:hover {
    color: var(--gold-light);
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    padding: 50px 0 25px;
    background: var(--black);
    border-top: 1px solid rgba(139, 195, 74, 0.15);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 69, 91, 0.08);
    border: 1px solid rgba(16, 69, 91, 0.12);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-accent);
}

/* ======================================
   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);
    }
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 40px;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .hero-text .hero-btn-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px !important;
    }

    .hero-text h4 {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        line-height: 1.5;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .why-enter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .trophy-incentives-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .incentive-card-left {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .trophy-center {
        order: -1;
    }

    .trophy-img {
        max-height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .navbar-brand-text small {
        display: none;
        /* Hide long subtitle in logo for mobile */
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
    }

    .navbar-brand-text {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 38px !important;
    }

    .section-light,
    .section-cream,
    .section-dark,
    .ceremony-section,
    .contact-section {
        padding: 60px 0;
    }

    .why-enter-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        max-height: 250px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-item img {
        height: 300px;
    }

    .trophy-img {
        max-height: 250px;
    }

    .procedure-step {
        flex-direction: column;
        text-align: center;
    }
}