/* File: public/assets/css/style.css */
/* Description: Footer added - simple, glassmorphism, responsive */

:root {
    --navy-dark: #0A0E1F;
    --navy-deep: #0B1427;
    --navy-medium: #1A233F;
    --navy-light: #2A3B5F;
    --gold-primary: #D4AF37;
    --gold-light: #E8C066;
    --gold-glow: #F5E8A3;
    --graphite: #B8C1D4;
    --white-soft: #F8FAFC;
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

body {
    background: var(--navy-dark);
    color: var(--graphite);
    overflow-x: hidden;
}

/* SECTION SPACING */
.section-spacing {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

/* NAVBAR */
.navbar {
    background: rgba(10, 14, 31, 0.98) !important;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 14, 31, 0.95) !important;
}

.logo-container img {
    height: 100px !important;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.nav-link {
    color: var(--graphite) !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.nav-link:hover {
    color: var(--gold-primary) !important;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* HERO */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-deep) 70%, var(--navy-medium) 100%);
    margin-top: 88px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: heroPulse 12s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-badge .badge {
    background: rgba(212, 175, 55, 0.2) !important;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero-title {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BUTTONS */
.btn-gold {
    background: linear-gradient(145deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--navy-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-gold-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary) !important;
    font-weight: 600;
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: var(--navy-dark) !important;
    transform: translateY(-3px);
}

/* GLASSMORPHISM */
.glassmorphism {
    background: rgba(26, 42, 78, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: all 0.5s ease;
}

.solution-card:hover, .vision-card:hover, .value-card:hover, .benefit-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
}

.icon-circle {
    width: 90px; height: 90px;
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VISION CARD */
.vision-card {
    background: rgba(26, 42, 78, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* CORE VALUES */
.core-values-section {
    background: linear-gradient(135deg, #3A4F7A 0%, #2A3B5F 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.value-icon i {
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* WHY PARTNER */
.why-partner-section {
    background: var(--navy-deep);
}

.benefit-icon i {
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: translateY(-5px);
    color: var(--gold-light);
}

.benefit-card {
    transition: all 0.5s ease;
}

.benefit-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
}

/* CTA */
.cta-bar {
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* FOOTER */
.site-footer {
    background: rgba(10, 14, 31, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--graphite);
    font-size: 0.95rem;
}

.footer-link {
    color: var(--graphite);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-social {
    color: var(--graphite);
    font-size: 1.1rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: var(--gold-primary);
}

.text-graphite {
    color: var(--graphite);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-logo { height: 55px !important; }
    .hero-title { font-size: 2.8rem !important; }
    .section-spacing {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .site-footer .container {
        text-align: center;
    }
    .footer-link {
        display: block;
        margin: 0.5rem 0;
    }
    .footer-social {
        margin: 0 0.5rem;
    }
}

/*Privacy page code*/
/* PRIVACY POLICY PAGE */
.list-styled {
    list-style: none;
    padding-left: 0;
}

.list-styled li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--graphite);
    opacity: 0.9;
}

.list-styled li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.1rem;
}

.max-w-800 {
    max-width: 800px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh !important;
    }
    .display-2 {
        font-size: 2.5rem !important;
    }
}



/* CONTACT FORM - TRANSPARENT INPUTS */
.input-transparent {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
    color: var(--graphite) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-transparent::placeholder {
    color: rgba(184, 193, 212, 0.6) !important;
    font-style: italic;
}

.input-transparent:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--white-soft) !important;
    outline: none;
}

.input-transparent:focus::placeholder {
    color: rgba(184, 193, 212, 0.8) !important;
}

/* Form Labels */
form .form-label {
    margin-bottom: 0.5rem;
}