:root {
    --primary-green: #1a3a2a;
    --dark-green: #0f2318;
    --light-green: #2d5a3f;
    --accent-gold: #d4a853;
    --accent-gold-light: #e8c878;
    --text-white: #ffffff;
    --text-gray: #b8c5be;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Additional colors for services section */
    --emerald: #2d7a5a;
    --jade: #1a5a3f;
    --forest: #0f3a2a;
    --parchment: #f5f0e8;
    --cream: #faf8f4;
    --mist: #a8b8ae;
    --radius-lg: 16px;
    --radius-md: 12px;
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ff-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-green);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header */
header {
    position: relative;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 70px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
}

.logo-icon::after {
    content: '★';
    position: relative;
    color: var(--accent-gold);
    font-size: 14px;
    z-index: 2;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav li {
    position: relative;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-gold);
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: 2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 58, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 12px;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(212, 168, 83, 0.1);
    border-left-color: var(--accent-gold);
    padding-left: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    padding: 80px 60px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero h2 em {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #c49a4a);
    color: var(--primary-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Avisos Card */
.avisos-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    max-width: 100%;
    margin-left: auto;
    height: 100%;
}

.avisos-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.avisos-header::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.avisos-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
}

.avisos-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.avisos-image-link {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.avisos-image-link:hover {
    transform: scale(1.02);
}

.avisos-image-link:hover .avisos-image {
    filter: brightness(0.85);
}

.avisos-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: filter 0.3s ease;
    background: transparent;
}

.avisos-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 24px 20px;
    background: transparent;
    border-radius: 0 0 16px 16px;
}

.avisos-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.avisos-overlay p {
    font-size: 13px;
    color: var(--mist);
    font-weight: 500;
    margin-bottom: 12px;
}

.btn-inscribete {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-gold), #e8c878);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-inscribete::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-inscribete:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.4);
}

.btn-inscribete:hover::before {
    left: 100%;
}

.avisos-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.avisos-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .hero h2 {
        font-size: 48px;
    }

    .avisos-card {
        margin: 0 auto;
        max-width: 100%;
    }

    header {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

.avisos-card {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* ============================================================
   SECTION INDEX
============================================================ */
.section {
    padding: 90px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent-gold);
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.section-title em {
    color: var(--text-white);
    font-style: italic;
}

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f3 100%);
    border: 2px solid var(--parchment);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(15, 35, 24, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 122, 90, 0.02) 0%, rgba(212, 168, 83, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 48px rgba(45, 122, 90, 0.18);
    border-color: var(--emerald);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-arrow {
    color: var(--accent-gold);
    transform: translateX(6px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), #e8c878);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 36px;
    color: var(--primary-green);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--emerald), var(--jade));
    color: var(--text-white);
    box-shadow: 0 12px 36px rgba(45, 122, 90, 0.35);
    transform: scale(1.12) rotateY(5deg);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    transition: color 0.4s var(--ease-out);
    font-family: var(--ff-display);
}

.service-card:hover h3 {
    color: var(--emerald);
}

.service-card p {
    font-size: 13px;
    color: var(--mist);
    line-height: 1.5;
    margin-top: 6px;
    flex-grow: 1;
    transition: color 0.4s var(--ease-out);
}

.service-card:hover p {
    color: var(--forest);
}

.service-arrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--emerald);
    margin-top: 16px;
    padding-top: 14px;
    border-top: 2px solid var(--parchment);
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
}

/* Responsive Services Section */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .service-card {
        padding: 40px 32px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 36px 28px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* ============================================================
   CONTACT PAGE STYLES
============================================================ */
.contact-page {
    background: transparent;
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-page .section-label {
    color: var(--accent-gold);
    justify-content: center;
}

.contact-page .section-label::before {
    background: var(--accent-gold);
}

.contact-page .section-title {
    color: var(--text-white);
    font-size: clamp(32px, 5vw, 48px);
}

.contact-page .section-title em {
    color: var(--accent-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 32px;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 16px;
}

.contact-info p {
    color: #222222;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #e8c878);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.2);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.contact-item p {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.hours-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26, 58, 42, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.hours-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 16px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-day {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.hour-time {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

.hours-card > div[style*="margin-top:32px"] {
    background: rgba(212, 168, 83, 0.15) !important;
    border: 1px solid rgba(212, 168, 83, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin-top: 28px !important;
}

.hours-card p {
    font-size: 13px;
    color: var(--text-white) !important;
    line-height: 1.8;
    opacity: 0.95;
}

.map-wrap {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
    overflow: hidden;
}

.map-wrap iframe {
    border-radius: 12px !important;
    border: none !important;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-page {
        padding: 60px 24px;
    }

    .contact-info,
    .hours-card,
    .map-wrap {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 16px;
    }

    .contact-info h2,
    .hours-card h2 {
        font-size: 22px;
    }

    .contact-item {
        gap: 16px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hour-time {
        align-self: flex-start;
    }
}

/* ============================================================
   TRANSPARENCY PAGE STYLES
============================================================ */

.transparency-page {
    background: transparent;
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
}

.transparency-intro {
    background: linear-gradient(135deg, rgba(45, 122, 90, 0.08) 0%, rgba(212, 168, 83, 0.04) 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0;
}

.docs-section {
    margin-bottom: 80px;
}

.docs-section:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.subtitle-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-subtitle h3 {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.02em;
}

.docs-grid,
.fin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.doc-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(45, 122, 90, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--emerald));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 10;
}

.doc-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 168, 83, 0.4);
    background: linear-gradient(135deg, rgba(45, 122, 90, 0.12) 0%, rgba(212, 168, 83, 0.08) 100%);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.15);
}

.doc-card:hover::before {
    transform: scaleX(1);
}

.doc-preview {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.doc-card:hover .doc-img-bg {
    transform: scale(1.05);
}

.doc-icon {
    position: absolute;
    z-index: 5;
    font-size: 48px;
    color: var(--accent-gold);
    opacity: 0.85;
    transition: all 0.3s var(--ease-out);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.doc-card:hover .doc-icon {
    opacity: 1;
    transform: scale(1.15);
    color: var(--accent-gold-light);
}

.doc-year {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.doc-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doc-body h4 {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.doc-body p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
    flex-grow: 1;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease-out);
    margin-top: auto;
}

.doc-card:hover .doc-download {
    color: var(--accent-gold-light);
    transform: translateX(4px);
}

/* Responsive Transparency */
@media (max-width: 1024px) {
    .transparency-page {
        padding: 60px 24px;
    }

    .docs-grid,
    .fin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-subtitle h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .transparency-page {
        padding: 40px 16px;
    }

    .transparency-intro {
        padding: 24px 20px;
    }

    .intro-text {
        font-size: 14px;
    }

    .docs-grid,
    .fin-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-subtitle {
        margin-bottom: 24px;
    }

    .section-subtitle h3 {
        font-size: 20px;
    }

    .doc-preview {
        height: 180px;
    }

    .doc-year {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .doc-body {
        padding: 20px;
    }

    .doc-body h4 {
        font-size: 16px;
    }
}