/* =============================================
   POLITICS PAGE STYLES - COMPREHENSIVE REDESIGN
   ============================================= */

/* Root Colors from Home Page */
:root {
    --primary-dark: #1a3948;
    --accent-orange: #f59834;
    --sage-green: #a1b27e;
    --light-bg: #f1e6c7;
    --white: #ffffff;
}

.politics-header {
    background: linear-gradient(135deg, #1a3948 0%, #0f2128 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.politics-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.politics-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */

.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1e6c7 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a3948;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.subtitle-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #f59834;
    box-shadow: 0 4px 15px rgba(26, 57, 72, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f59834, #a1b27e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(245, 152, 52, 0.2);
    border-left-color: #a1b27e;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: #f59834;
    width: 50px;
    height: 50px;
    background: rgba(245, 152, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.card-header h3 {
    font-size: 1.3rem;
    color: #1a3948;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.philosophy-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-highlight {
    background: linear-gradient(135deg, #f1e6c7 0%, rgba(245, 152, 52, 0.1) 100%);
    padding: 1rem;
    border-radius: 8px;
    color: #1a3948;
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 3px solid #f59834;
}

/* =============================================
   VALUES SECTION
   ============================================= */

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1e6c7 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3948;
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59834, #a1b27e);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 152, 52, 0.1), transparent);
    transition: left 0.4s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(245, 152, 52, 0.2);
    border-top-color: #f59834;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59834, #a1b27e);
    border-radius: 50%;
    color: white;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(245, 152, 52, 0.3);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1a3948;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* =============================================
   TIMELINE SECTION
   ============================================= */

.journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1e6c7 0%, #ffffff 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f59834, #a1b27e, #f59834);
    top: 0;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item.left {
    text-align: right;
    padding-right: 52%;
}

.timeline-item.right {
    text-align: left;
    padding-left: 52%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #f59834;
    border: 4px solid white;
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 0 4px #1a3948;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: #a1b27e;
    box-shadow: 0 0 0 4px #1a3948, 0 0 15px rgba(245, 152, 52, 0.4);
    transform: translateX(-50%) scale(1.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    box-shadow: 0 12px 30px rgba(245, 152, 52, 0.2);
    transform: translateY(-5px);
    border-left: 4px solid #f59834;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #1a3948;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timeline-content h3 i {
    color: #f59834;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-highlight {
    background: linear-gradient(135deg, #f1e6c7, rgba(245, 152, 52, 0.1));
    padding: 1rem;
    border-left: 3px solid #f59834;
    border-radius: 6px;
    font-weight: 600;
    color: #1a3948;
    font-size: 0.9rem;
}

/* =============================================
   AGENDA SECTION
   ============================================= */

.agenda-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1e6c7 100%);
}

.agenda-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.agenda-item {
    background: linear-gradient(135deg, #a1b27e 0%, #92a574 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(161, 178, 126, 0.2);
    transition: all 0.3s ease;
    border-top: 4px solid #f59834;
    position: relative;
    overflow: hidden;
}

.agenda-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.agenda-item:hover::after {
    right: -30px;
    top: -30px;
}

.agenda-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(161, 178, 126, 0.3);
    border-top-color: #f59834;
}

.agenda-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.agenda-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f59834;
    min-width: 60px;
    font-family: 'Playfair Display', serif;
}

.agenda-header h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.agenda-header i {
    font-size: 1.5rem;
    color: white;
}

.agenda-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* =============================================
   POSITIONS SECTION
   ============================================= */

.positions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1e6c7 0%, #ffffff 100%);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #f59834;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.position-icon {
    font-size: 2.5rem;
    color: #f59834;
    min-width: 60px;
    height: 60px;
    background: rgba(245, 152, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.position-card:hover .position-icon {
    background: linear-gradient(135deg, #f59834, #a1b27e);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.position-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(245, 152, 52, 0.2);
    border-left-color: #a1b27e;
}

.position-content h4 {
    font-size: 1.3rem;
    color: #1a3948;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.position-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   VISION SECTION
   ============================================= */

.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3948 0%, #0f2128 100%);
    color: white;
}

.vision-section .section-title {
    color: #f59834;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vision-section .section-title::after {
    background: linear-gradient(90deg, #f59834, #a1b27e);
}

.vision-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.vision-pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59834;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.vision-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59834, #a1b27e, #f59834);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-pillar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(245, 152, 52, 0.3);
    border-left-color: #a1b27e;
}

.pillar-icon {
    font-size: 3rem;
    color: #f59834;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(245, 152, 52, 0.2);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.vision-pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(15deg);
    color: #a1b27e;
}

.vision-pillar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: white;
}

.vision-pillar p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* =============================================
   INSPIRATIONS SECTION
   ============================================= */

.inspirations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1e6c7 0%, #ffffff 100%);
}

.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.inspiration-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #f59834;
    position: relative;
}

.inspiration-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(245, 152, 52, 0.25);
    border-top-color: #a1b27e;
}

.inspiration-icon {
    font-size: 2.5rem;
    color: white;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59834, #a1b27e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 152, 52, 0.3);
}

.inspiration-card:hover .inspiration-icon {
    transform: scale(1.1) rotate(-15deg);
}

.inspiration-card h4 {
    font-size: 1.2rem;
    color: #1a3948;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.inspiration-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3948 0%, #0f2128 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   BUTTON STYLES
   ============================================= */

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: #f59834;
    color: white;
    border-color: #f59834;
}

.btn-primary:hover {
    background: transparent;
    color: #f59834;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 152, 52, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: #f59834;
}

.btn-secondary:hover {
    background: #f59834;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 152, 52, 0.3);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
    .politics-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
    }

    .agenda-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =============================================
   ANIMATIONS & TRANSITIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agenda-items {
        grid-template-columns: 1fr;
    }

    .agenda-header {
        flex-wrap: wrap;
    }

    .position-card {
        border-left: none !important;
        border-right: none !important;
        border-top: 4px solid #2980b9;
    }

    .cta-links {
        flex-direction: column;
    }

    .cta-links .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .agenda-number {
        font-size: 1.5rem;
    }

    .agenda-item h3 {
        font-size: 1.1rem;
    }

    .position-card h4 {
        font-size: 1.2rem;
    }
}
