/* 
    Premium Legal Theme
    Colors:
    Navy: #0A192F (Trust, Seriousness, Authority)
    Gold: #D4AF37 (Premium, Success, Value)
    WhatsApp Green: #25D366 (Action, Communication)
    Light Gray: #F8F9FA
*/

:root {
    --navy-blue: #0A192F;
    --navy-light: #112240;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --wa-green: #25D366;
    --wa-green-hover: #1EBE55;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Utilities */
.bg-navy {
    background-color: var(--navy-blue) !important;
}

.text-navy {
    color: var(--navy-blue) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

.text-light-gray {
    color: #cbd5e1 !important;
}

.text-warning-dark {
    color: #b45309 !important;
}

/* Navbar */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-whatsapp {
    background-color: var(--wa-green);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--wa-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp-outline {
    border: 2px solid var(--wa-green);
    color: var(--wa-green);
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-whatsapp-outline:hover {
    background-color: var(--wa-green);
    color: white;
}

/* Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-animation {
    animation: pulse-green 2s infinite;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

/* Trust Section */
.trust-section {
    position: relative;
    z-index: 10;
    margin-top: -30px; /* Overlap hero a bit */
}

.alert-danger {
    background-color: #fef2f2;
    border-left: 5px solid #dc3545 !important;
    color: #7f1d1d;
}

/* Impact Section */
.impact-img {
    border: 8px solid white;
    border-radius: 12px;
}

/* Solutions Cards */
.solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.solution-card.border-gold {
    border: 2px solid var(--gold) !important;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    color: var(--navy-blue);
    background-color: #f1f5f9;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #e2e8f0;
}

.accordion-button:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 0.25rem rgba(10, 25, 47, 0.25);
}

.accordion-item {
    border-color: #e2e8f0 !important;
}

/* Footer */
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
