
/* ========== BRAND COLORS ========== */
:root {
    --gold: #c8a24d;
    --gold-dark: #b38b36;
    --gold-light: #e0c27a;
    --navy: #011b3e;
    --navy-light: #0a2a4a;
    --navy-dark: #000f26;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--navy);
    color: #ffffff;
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold-dark);
    }

/* ========== TYPOGRAPHY ========== */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background-color: var(--gold-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(200, 162, 77, 0.4);
    }

.btn-outline-gold {
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(1, 27, 62, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(200, 162, 77, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: var(--gold);
    }

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
    position: relative;
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--gold);
        transition: 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(1, 27, 62, 0.9), rgba(1, 27, 62, 0.7)), url('https://images.unsplash.com/photo-1527838832700-5055f9d1b9d4?w=1600') center/cover fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(200,162,77,0.1), transparent);
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 2;
}
.logo {
    width: 280px;
    margin-top: 22px;
    margin-bottom: -32px;
    animation: fadeInUp 0.8s ease;

}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SERVICES SECTION ========== */
.services {
    background: linear-gradient(180deg, var(--navy), var(--navy-dark));
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--gold);
        border-radius: 3px;
    }

.service-card {
    background: rgba(10, 42, 74, 0.8);
    backdrop-filter: blur(5px);
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(200, 162, 77, 0.2);
    text-align: center;
    height: 100%;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-12px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        background: rgba(200, 162, 77, 0.1);
    }

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ========== ACTIVITIES / BLOG SECTION ========== */
.activities {
    background: var(--navy-light);
    padding: 80px 0;
}

.activity-card {
    background: rgba(1, 27, 62, 0.8);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(200, 162, 77, 0.2);
    height: 100%;
    cursor: pointer;
}

    .activity-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

.activity-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.activity-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.activity-date {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    transition: 0.3s;
}

    .read-more:hover {
        color: var(--gold-light);
        transform: translateX(5px);
    }

/* Admin Button */
.admin-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: 0.3s;
}

    .admin-btn:hover {
        background: var(--gold);
        color: var(--navy);
    }

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 70px 0;
    color: var(--navy);
}

    .cta h2 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .cta .btn {
        background: var(--navy);
        color: var(--gold);
        padding: 14px 40px;
        font-weight: 700;
    }

        .cta .btn:hover {
            background: white;
            color: var(--navy);
            transform: translateY(-2px);
        }

/* ========== CONTACT SECTION (FINAL PREMIUM STYLE) ========== */

.contact {
    background: linear-gradient(180deg, var(--navy-dark), var(--navy));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    /* subtle glow background */
    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(200,162,77,0.08), transparent);
        pointer-events: none;
    }

    /* SECTION TITLE */
    .contact .section-title {
        color: #fff;
    }

/* ================= INFO CARD ================= */
.contact-info {
    background: rgba(10, 42, 74, 0.6);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(200, 162, 77, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}

    .contact-info:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    /* ICONS */
    .contact-info i {
        color: var(--gold);
        font-size: 1.1rem;
        width: 30px;
    }

    /* TEXT */
    .contact-info p {
        margin-bottom: 12px;
        color: rgba(255,255,255,0.9);
    }

    /* QUOTE */
    .contact-info .quote {
        color: var(--gold-light);
        font-style: italic;
        margin-top: 20px;
    }

/* DIVIDER */
.contact-divider {
    border-color: rgba(200,162,77,0.3);
    margin: 20px 0;
}

/* ================= FORM CARD ================= */
.contact-form {
    background: rgba(10, 42, 74, 0.65);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(200,162,77,0.25);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

    .contact-form:hover {
        border-color: var(--gold);
    }

    /* ================= INPUTS ================= */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(200,162,77,0.3);
        color: #fff;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

        /* PLACEHOLDER */
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        /* FOCUS EFFECT */
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            background: rgba(255,255,255,0.12);
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(200,162,77,0.25);
            outline: none;
        }

    /* SELECT FIX */
    .contact-form select {
        appearance: none;
    }

/* ================= BUTTON ================= */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background: linear-gradient(135deg, var(--gold-dark), var(--gold));
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(200,162,77,0.4);
    }

/* ================= FORM LABEL ================= */
.contact-form label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ================= ANIMATION ================= */
.contact-info,
.contact-form {
    animation: fadeInUp 0.6s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px;
    }
}
/* ========== FOOTER ========== */
footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(200, 162, 77, 0.2);
    padding: 40px 0;
}

.social-links a {
    color: white;
    margin: 0 12px;
    font-size: 1.3rem;
    transition: 0.3s;
    display: inline-block;
}

    .social-links a:hover {
        color: var(--gold);
        transform: translateY(-3px);
    }

/* ========== MODAL STYLES ========== */
.modal-content {
    background: var(--navy-light);
    color: white;
    border-radius: 20px;
    border: 1px solid var(--gold);
}

.modal-header {
    border-bottom-color: rgba(200, 162, 77, 0.3);
}

.modal-footer {
    border-top-color: rgba(200, 162, 77, 0.3);
}

.modal input, .modal textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(200, 162, 77, 0.3);
    color: white;
    border-radius: 10px;
}
.activity-date {
    font-size: 0.9rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

    .floating-wa a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        color: white;
        font-size: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        transition: 0.3s;
    }

        .floating-wa a:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37,211,102,0.4);
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    .custom-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}


.btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
/* ========== PARTNERS SECTION ========== */
.partners {
    background: linear-gradient(180deg, var(--navy-dark), var(--navy));
}




/* Horizontal scroll container */
.partners-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

    /* Hide scrollbar (clean UI) */
    .partners-slider::-webkit-scrollbar {
        display: none;
    }

.partners-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Each item */
.partner-item {
    min-width: 220px;
    flex: 0 0 auto;
}

.partner-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 162, 77, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

    .partner-card img {
        max-height: 70px;
        object-fit: contain;
        filter: grayscale(100%) brightness(1.2);
        transition: 0.3s ease;
    }

    .partner-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

        .partner-card:hover img {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.05);
        }


.wa-btn {
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px;
    text-align: left;
    font-weight: 500;
    transition: 0.3s;
}

    .wa-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    }
.partner-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

    /* subtle gold accent */
    .partner-name::after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background: #bc943f;
        margin: 6px auto 0;
        transition: 0.3s ease;
    }

/* hover effect */
.partner-item:hover .partner-name {
    color: #bc943f;
    transform: translateY(-2px);
}

    .partner-item:hover .partner-name::after {
        width: 50px;
    }