@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* DESIGN SYSTEM VARIABLES */
:root {
    --primary-color: #0f5d34;     /* Deep Forest/Emerald Green */
    --primary-light: #1c8c53;    /* Active/Bright Green */
    --primary-dark: #073b20;     /* Rich Dark Green */
    --accent-color: #f7a81b;     /* Amber Gold */
    --accent-hover: #e09312;     /* Darker Amber */
    --accent-light: #fef3c7;     /* Light Amber background */
    --bg-light: #f4f8f5;         /* Soft greenish-white background */
    --bg-white: #ffffff;
    --bg-dark: #0b0f17;          /* Premium slate black */
    --bg-dark-card: #151c2c;
    --text-main: #1f2937;        /* Tailwind slate-800 */
    --text-muted: #6b7280;       /* Tailwind slate-500 */
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 93, 52, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 15, 23, 0.12);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* BASE RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-accent { color: var(--accent-color); }
.font-accent { font-family: var(--font-headings); }

.bg-dark-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
}
.bg-dark-section h2, 
.bg-dark-section h3, 
.bg-dark-section h4 {
    color: var(--text-white);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: var(--primary-color);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 93, 52, 0.2);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 168, 27, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-dark);
}
.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* HEADER & NAVBAR */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 93, 52, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-color);
    display: block;
    margin-top: -6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(15, 93, 52, 0.05) 0%, rgba(247, 168, 27, 0.05) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 93, 52, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-downloads {
    border-top: 1px solid rgba(15, 93, 52, 0.1);
    padding-top: 30px;
}

.hero-downloads p {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.download-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-white);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 93, 52, 0.1);
}

.download-link-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-ill-container {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SECTION HEADER */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
}

/* CARDS AND SERVICES */
.card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 93, 52, 0.03);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 93, 52, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover::before {
    opacity: 1;
}

.card-num {
    font-family: var(--font-headings);
    font-size: 36px;
    font-weight: 800;
    color: rgba(15, 93, 52, 0.15);
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.card-link {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    color: var(--accent-color);
}

/* INNER PAGES HERO */
.inner-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0c3e21 100%);
    color: var(--text-white);
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 168, 27, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.inner-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

/* HISTORIA / TIMELINE */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: 2px;
    height: 100%;
    background-color: rgba(15, 93, 52, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -32px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid var(--bg-light);
    box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.2);
    z-index: 1;
}

.timeline-year {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

/* STATS BAR */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0b4e2a 100%);
    color: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* ORGANIGRAMA */
.organigrama-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.org-node {
    background: var(--bg-light);
    border: 2px solid rgba(15, 93, 52, 0.15);
    border-radius: var(--border-radius);
    padding: 16px 28px;
    text-align: center;
    min-width: 220px;
    position: relative;
    transition: var(--transition-smooth);
}

.org-node:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    border-color: var(--primary-dark);
}

.org-node h4 {
    font-size: 18px;
    color: inherit;
    margin-bottom: 2px;
}

.org-node p {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
}

.org-level-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.org-card-detail {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 24px;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.org-card-detail h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.org-card-detail ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-muted);
}

.org-card-detail ul li {
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
}

.org-card-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ACCORDIONS (TECHNICAL SERVICES) */
.accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.accordion-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(15, 93, 52, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-dark);
}

.accordion-header:hover {
    background-color: rgba(15, 93, 52, 0.02);
}

.accordion-icon {
    font-size: 20px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-light);
}

.accordion-body {
    padding: 24px;
    font-size: 15px;
    border-top: 1px solid rgba(15, 93, 52, 0.05);
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* high value to cover content */
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* PROCESS PATH */
.process-path {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 8px rgba(15, 93, 52, 0.1);
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 20px;
    right: -20px;
    font-size: 24px;
    color: var(--accent-color);
}

/* RTE / TRANSPARENCY SECTION */
.rte-table-container {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 40px;
}

.rte-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.rte-table th, .rte-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rte-table th {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
}

.rte-table tr:last-child td {
    border-bottom: none;
}

.rte-table tr:nth-child(even) {
    background-color: rgba(15, 93, 52, 0.01);
}

.rte-table td strong {
    color: var(--primary-color);
}

.philosophy-banner {
    background: linear-gradient(135deg, #072a17 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    margin-top: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-banner::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 180px;
    font-family: var(--font-headings);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.philosophy-banner h3 {
    color: var(--accent-color);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.philosophy-text {
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font-headings);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* PAYMENTS / NEQUI SECTION */
.payment-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid #d4145a; /* Nequi signature color shade */
    display: flex;
    align-items: center;
    gap: 30px;
}

.nequi-logo-badge {
    background-color: #1f1137; /* Nequi dark background */
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nequi-details h4 {
    font-size: 24px;
    color: #1f1137;
    margin-bottom: 6px;
}

.nequi-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-family: var(--font-headings);
}

/* EVENT LIST */
.event-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-img {
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-img-placeholder {
    color: var(--text-white);
    font-size: 48px;
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.event-date span {
    display: block;
}

.event-day {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.event-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.event-info {
    padding: 30px;
}

.event-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.event-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

/* GALLERY PAGE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 93, 52, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--text-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 16px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* LIGHTBOX MODAL */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 23, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 32px;
    cursor: pointer;
}

.lightbox-caption {
    color: var(--text-white);
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-headings);
    font-size: 18px;
}

/* BLOG PAGE */
.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-header-img {
    height: 200px;
    background: linear-gradient(135deg, #2e7d32 0%, #1565c0 100%);
    position: relative;
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-panel {
    background-color: var(--primary-dark);
    color: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(247, 168, 27, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h3 {
    color: var(--text-white);
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-details-list {
    list-style: none;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-detail-icon {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 0;
}

.contact-socials {
    margin-top: 40px;
    display: flex;
    gap: 12px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-form-panel {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(15, 93, 52, 0.1);
}

.form-message {
    padding: 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* TESTIMONIALS (HOME PAGE) */
.testimonial-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(15, 93, 52, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    border: 1px solid rgba(15, 93, 52, 0.05);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 24px;
    font-size: 80px;
    color: rgba(15, 93, 52, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 18px;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d4626 100%);
    color: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 168, 27, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-white);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 14px;
    border-top: 5px solid var(--primary-color);
}

.footer h4 {
    color: var(--text-white);
    font-size: 16px;
    font-family: var(--font-headings);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-panel .logo-text {
    color: var(--text-white);
}

.footer-logo-panel p {
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    color: var(--accent-color);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* RESPONSIVE DESIGN - BREAKPOINTS */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .org-level-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .navbar {
        height: 70px;
    }
    
    /* MOBILE NAVIGATION */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 24px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    /* Mobile burger active animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-ill-container {
        height: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .process-path {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-bar {
        margin-top: 30px;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .org-level-3 {
        grid-template-columns: 1fr;
    }
    
    .nequi-number {
        font-size: 26px;
    }
    
    .philosophy-banner {
        padding: 30px 15px;
    }
    
    .philosophy-text {
        font-size: 18px;
    }
}
