/**
 * =====================================================
 * SITE INSTITUCIONAL - RAFAEL BARRETO RODRIGUES
 * =====================================================
 * Estilos customizados para o site político institucional
 * Tema: Dark com cores da Bandeira do Brasil
 * =====================================================
 */

/* ========== VARIÁVEIS CSS ========== */
:root {
    /* Cores da Bandeira do Brasil */
    --color-green: #009c3b;          /* Verde bandeira */
    --color-green-dark: #007a2f;     /* Verde escuro */
    --color-green-light: #00b344;    /* Verde claro */
    
    --color-yellow: #ffdf00;         /* Amarelo bandeira */
    --color-yellow-dark: #e6c900;    /* Amarelo escuro */
    --color-yellow-light: #ffe433;   /* Amarelo claro */
    
    --color-blue: #002776;           /* Azul bandeira */
    --color-blue-dark: #001d5c;      /* Azul escuro */
    --color-blue-light: #003d99;     /* Azul claro */
    
    /* Alias para compatibilidade */
    --color-primary: var(--color-green);
    --color-primary-dark: var(--color-green-dark);
    --color-primary-light: var(--color-green-light);
    
    --color-secondary: var(--color-blue);
    --color-secondary-dark: var(--color-blue-dark);
    --color-secondary-light: var(--color-blue-light);
    
    --color-gold: var(--color-yellow);
    --color-gold-light: var(--color-yellow-light);
    --color-gold-dark: var(--color-yellow-dark);
    
    /* Cores neutras - Tema Dark */
    --color-white: #ffffff;
    --color-off-white: #2a2a2a;
    --color-light-gray: #3a3a3a;
    --color-gray: #9ca3af;
    --color-dark-gray: #e5e7eb;
    --color-black: #181818;
    
    /* Backgrounds Dark */
    --bg-dark: #181818;
    --bg-dark-secondary: #212121;
    --bg-dark-tertiary: #2a2a2a;
    --bg-card: #252525;
    
    /* Tipografia */
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* ========== RESET E BASE ========== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    line-height: 1.6;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

a {
    color: var(--color-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-yellow);
}

/* ========== UTILITÁRIOS ========== */
.text-gold {
    color: var(--color-gold) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ========== NAVBAR ========== */
#mainNav {
    background-color: transparent;
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

#mainNav.navbar-scrolled {
    background-color: var(--bg-dark-secondary);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--color-green);
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-yellow) !important;
}

/* ========== BOTÕES ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold, .btn-yellow {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--bg-dark);
}

.btn-gold:hover, .btn-yellow:hover {
    background-color: var(--color-yellow-dark);
    border-color: var(--color-yellow-dark);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold, .btn-outline-yellow {
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    background-color: transparent;
}

.btn-outline-gold:hover, .btn-outline-yellow:hover {
    background-color: var(--color-yellow);
    color: var(--bg-dark);
}

.btn-outline-primary {
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

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

.btn-blue {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

.btn-blue:hover {
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 156, 59, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 39, 118, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 223, 0, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 4px solid var(--color-yellow);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    color: var(--color-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
}

.section-badge.badge-gold, .section-badge.badge-yellow {
    background-color: var(--color-yellow);
    color: var(--bg-dark);
}

.section-badge.badge-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.section-title {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== ABOUT CARDS ========== */
.about-card {
    background-color: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid var(--color-light-gray);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-green);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.about-card-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.about-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow);
}

.about-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== VALUES SECTION ========== */
.values-section {
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--bg-dark-tertiary) 100%);
}

.value-card {
    background-color: rgba(0, 156, 59, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 156, 59, 0.2);
    height: 100%;
}

.value-card:hover {
    background-color: rgba(0, 156, 59, 0.2);
    transform: translateY(-5px);
    border-color: var(--color-yellow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.value-card h5 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ========== COMMITMENT CARDS ========== */
.commitment-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    height: 100%;
    transition: all var(--transition-normal);
    border-left: 4px solid var(--color-yellow);
}

.commitment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--color-green);
}

.commitment-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
    font-family: var(--font-heading);
}

.commitment-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow);
}

.commitment-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--color-light-gray);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--color-green);
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--color-yellow);
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.testimonial-info h6 {
    margin-bottom: 0;
    color: var(--color-yellow);
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* ========== LEAD SECTION ========== */
.lead-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    position: relative;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 50%, rgba(0, 156, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(0, 39, 118, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lead-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-light-gray);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .lead-card {
        padding: 2rem 1.5rem;
    }
}

.lead-content {
    padding-right: 1.5rem;
}

.lead-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--color-yellow);
}

.lead-text {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.lead-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-benefits li {
    padding: 0.5rem 0;
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lead-benefits i {
    color: var(--color-yellow);
}

/* Lead Form */
.lead-form-wrapper {
    background-color: var(--bg-dark-tertiary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-gray);
}

.lead-form .form-label {
    font-weight: 600;
    color: var(--color-dark-gray);
    font-size: 0.9rem;
}

.lead-form .form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    background-color: var(--bg-dark);
    color: var(--color-white);
}

.lead-form .form-control:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(0, 156, 59, 0.2);
    background-color: var(--bg-dark);
}

.lead-form .form-control::placeholder {
    color: var(--color-gray);
}

.lead-form .form-check-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.lead-form .form-check-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 0;
}

/* ========== FAQ ACCORDION ========== */
.accordion-item {
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: var(--bg-card);
}

.accordion-button {
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--bg-card);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-green);
    color: var(--color-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-green);
}

.accordion-button::after {
    transition: transform var(--transition-normal);
    filter: invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--color-gray);
    line-height: 1.7;
    background-color: var(--bg-dark-tertiary);
}

/* ========== CONTACT SECTION ========== */
.contact-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--color-dark-gray);
    font-size: 0.9rem;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    background-color: var(--bg-dark);
    color: var(--color-white);
}

.contact-form .form-control:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(0, 156, 59, 0.2);
}

.contact-form .form-control::placeholder {
    color: var(--color-gray);
}

/* ========== PAGE BANNER (Internal Pages) ========== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.page-banner-sm {
    padding: 140px 0 60px;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 156, 59, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 39, 118, 0.15) 0%, transparent 50%);
    opacity: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--bg-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.page-title {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PROFILE PAGE ========== */
.profile-image-wrapper {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.profile-image-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 4px solid var(--color-yellow);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.profile-content .section-badge {
    margin-bottom: 0.75rem;
}

.profile-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.profile-tagline {
    color: var(--color-yellow);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.profile-text {
    color: var(--color-gray);
    line-height: 1.8;
}

.profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.stat-item i {
    color: var(--color-yellow);
    font-size: 1.25rem;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-green), var(--color-yellow));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -39px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-yellow);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-light-gray);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--color-green);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.timeline-icon i {
    font-size: 1.25rem;
    color: var(--color-white);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--color-gray);
}

/* ========== PRINCIPLE CARDS ========== */
.principle-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border-top: 4px solid var(--color-yellow);
    border: 1px solid var(--color-light-gray);
    border-top: 4px solid var(--color-yellow);
}

.principle-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: var(--color-green);
    border-top-color: var(--color-yellow);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.principle-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.principle-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow);
}

.principle-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* ========== VISION SECTION ========== */
.vision-section {
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--bg-dark-tertiary) 100%);
}

.vision-points {
    margin-top: 1rem;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-white);
}

.vision-point i {
    color: var(--color-yellow);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.vision-quote {
    background-color: rgba(0, 156, 59, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-yellow);
}

.vision-quote i {
    font-size: 3rem;
    color: var(--color-yellow);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.vision-quote blockquote {
    color: var(--color-white);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vision-quote cite {
    color: var(--color-yellow);
    font-style: normal;
    font-weight: 600;
}

/* ========== FREEDOM CARDS ========== */
.freedom-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--color-light-gray);
}

.freedom-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.freedom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freedom-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.freedom-icon-green {
    background-color: var(--color-green);
}

.freedom-icon-red {
    background-color: #c0392b;
}

.freedom-header h4 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.freedom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.freedom-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-dark-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.freedom-list li:last-child {
    border-bottom: none;
}

.freedom-list i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.freedom-list li i.bi-arrow-right-circle {
    color: var(--color-green);
}

.freedom-list li i.bi-x-circle {
    color: #c0392b;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background-color: var(--bg-dark-secondary);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-title {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    background-color: var(--bg-dark-secondary);
}

.legal-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
}

@media (max-width: 768px) {
    .legal-card {
        padding: 2rem 1.5rem;
    }
}

.legal-update {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-yellow);
    display: flex;
    align-items: center;
}

.legal-section h2 i {
    color: var(--color-green);
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.legal-section p {
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.contact-info-box {
    background-color: var(--color-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-gold);
    margin: 1rem 0;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: var(--color-dark-gray);
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    background-color: var(--color-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

.legal-footer p {
    margin-bottom: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.legal-footer i {
    color: var(--color-gold);
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--color-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-5px);
}

/* ========== MODAL ========== */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.modal-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem 1.5rem;
}

/* ========== FORM FEEDBACK ========== */
.form-feedback {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .scroll-indicator a {
        animation: none;
    }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .lead-content {
        padding-right: 0;
        text-align: center;
    }
    
    .lead-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-image-frame {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -29px;
        width: 16px;
        height: 16px;
    }
    
    .commitment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-number {
        font-size: 2.5rem;
    }
    
    .vision-quote {
        padding: 1.5rem;
    }
    
    .vision-quote blockquote {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 2rem;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator,
    .btn,
    .footer-social {
        display: none !important;
    }
    
    .hero-section,
    .page-banner {
        background: var(--color-primary) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt;
    }
    
    a {
        text-decoration: underline;
    }
}
