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

:root {
    --primary-color: #BB7025;
    --primary-rgb: 187, 112, 37;
    --secondary-color: #1D5791;
    --secondary-rgb: 29, 87, 145;
    --accent-color: #ECEC41;
    --accent-rgb: 236, 236, 65;
    --bg-color: #F5F7FA;
    --bg-alt: #EBF0F5;
    --text-color: #1A2332;
    --text-muted: #5A6B7D;
    --section-dark: #1A2332;
    --section-accent: #E8EFF8;
    --white: #ffffff;
    --border-color: #D1D9E3;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lato', sans-serif;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(187, 112, 37, 0.35); }
    50% { box-shadow: 0 0 22px rgba(187, 112, 37, 0.55); }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5 { font-size: 1rem; margin-bottom: 10px; }
h6 { font-size: 0.875rem; margin-bottom: 10px; }

p {
    margin-bottom: 20px;
    color: var(--text-color);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.4em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-2 > * {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-3 > * {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-4 > * {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.two-col-layout > *:first-child {
    flex: 2 1 400px;
}

.two-col-layout > *:last-child {
    flex: 1 1 280px;
}

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    line-height: 1;
}

main {
    padding-top: 72px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--section-dark) 0%, #0f1a2a 60%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 14s ease infinite;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 112, 37, 0.18) 0%, transparent 70%);
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 87, 145, 0.12) 0%, transparent 70%);
    z-index: 0;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.65;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-cards {
    position: relative;
    z-index: 2;
    flex: 0 0 380px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 15px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-card:nth-child(2) {
    margin-left: 30px;
}

.hero-card:nth-child(3) {
    margin-left: 15px;
}

.hero-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.35em;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.header-hero {
    position: relative;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, var(--section-dark) 0%, #162a42 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 112, 37, 0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.header-hero h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.header-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
    position: relative;
}

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

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

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark a {
    color: var(--accent-color);
}

.section-dark a:hover {
    color: var(--primary-color);
}

.section-accent {
    background: var(--section-accent);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

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

.section-dark .section-header h2::after {
    background: var(--accent-color);
}

.section-angled {
    position: relative;
    padding: 80px 0 100px;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-top: -30px;
    margin-bottom: -30px;
}

.section-angled-alt {
    position: relative;
    padding: 80px 0 100px;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -30px;
    margin-bottom: -30px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(187, 112, 37, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: transform 0.45s ease;
    overflow: hidden;
}

.card:hover img {
    transform: scale(1.04);
}

.card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    border-color: var(--secondary-color);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(187, 112, 37, 0.1), rgba(29, 87, 145, 0.08));
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.section-dark .feature {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.section-dark .feature h3 {
    color: var(--white);
}

.section-dark .feature p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .feature-icon {
    background: linear-gradient(135deg, rgba(187, 112, 37, 0.25), rgba(236, 236, 65, 0.12));
    color: var(--accent-color);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-top: 20px;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.testimonial-card .role {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

.section-dark .testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark .testimonial-card .author {
    color: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(187, 112, 37, 0.15);
}

.pricing-card .price {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease;
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

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

.btn-primary:hover::before {
    transform: scaleX(1);
}

.section-dark .btn-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.section-dark .btn-primary::before {
    background: var(--accent-color);
}

.section-dark .btn-primary:hover {
    color: var(--section-dark);
}

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

.hero .btn-primary::before {
    background: var(--white);
}

.hero .btn-primary:hover {
    color: var(--section-dark);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.btn-secondary:hover {
    background: #164a7a;
    border-color: #164a7a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.section-dark .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.section-dark .btn-outline:hover {
    background: var(--white);
    color: var(--section-dark);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(187, 112, 37, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    padding: 20px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1 1 140px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.section-dark .stat-number {
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-primary {
    background: rgba(187, 112, 37, 0.12);
    color: var(--primary-color);
}

.badge-secondary {
    background: rgba(29, 87, 145, 0.1);
    color: var(--secondary-color);
}

.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 560px;
    margin: 0 auto 30px;
}

.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.icon-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.section-dark .icon-list li {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark .icon-list li::before {
    color: var(--accent-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

th {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-alt);
}

td {
    color: var(--text-muted);
}

.event-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.event-date {
    flex-shrink: 0;
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-color), #d48530);
    border-radius: 8px;
    color: var(--white);
    min-width: 70px;
}

.event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.event-date .day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.event-details h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.resource-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.resource-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-accent);
    border-radius: 8px;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.resource-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.resource-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card-body {
    padding: 25px;
}

.project-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.project-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--bg-alt);
    color: var(--text-muted);
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
}

.team-member h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer.footer-minimal {
    padding: 30px 0;
    background: var(--section-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer.footer-minimal .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer.footer-minimal .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

footer.footer-minimal .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s ease;
}

footer.footer-minimal .footer-links a:hover {
    color: var(--primary-color);
}

footer.footer-minimal p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

footer .social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -1px 0;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section-divider.flip {
    transform: scaleY(-1);
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-in"].visible {
    opacity: 1;
}

[data-animate="slide-left"] {
    transform: translateX(-28px);
}

[data-animate="slide-left"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(28px);
}

[data-animate="slide-right"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="scale-up"] {
    transform: scale(0.95);
}

[data-animate="scale-up"].visible {
    opacity: 1;
    transform: scale(1);
}

[data-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

[data-stagger] > *.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-box {
    background: var(--bg-alt);
    border-left: 3px solid var(--secondary-color);
    padding: 20px 25px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 15px 25px;
    margin: 20px 0;
    background: var(--bg-alt);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--text-muted);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(187, 112, 37, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.partner-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0) opacity(1);
}

.grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-asymmetric > *:first-child {
    flex: 2 1 460px;
}

.grid-asymmetric > *:last-child {
    flex: 1 1 260px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    counter-reset: steps;
}

.step-item {
    flex: 1 1 220px;
    counter-increment: steps;
    position: relative;
    padding-top: 40px;
}

.step-item::before {
    content: counter(steps, decimal-leading-zero);
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(187, 112, 37, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.step-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.tab-btn {
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    margin-bottom: -1px;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.overflow-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    z-index: 9999;
    font-size: 0.875rem;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cards {
        flex: none;
        width: 100%;
        max-width: 420px;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        margin-left: 0;
    }

    .grid-asymmetric > *:first-child,
    .grid-asymmetric > *:last-child {
        flex: 1 1 100%;
    }

    .two-col-layout {
        flex-direction: column;
    }

    .two-col-layout.reverse {
        flex-direction: column;
    }

    .two-col-layout > *:first-child,
    .two-col-layout > *:last-child {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.95rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        min-height: 70vh;
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-cards {
        display: none;
    }

    .header-hero {
        padding: 40px 0 35px;
    }

    .header-hero h1 {
        font-size: 1.5rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }

    .section-header h2 {
        font-size: 1.35rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 20px;
    }

    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        flex: 1 1 100%;
    }

    .row {
        flex-direction: column;
    }

    .stat-grid {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .resource-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .steps-grid > * {
        flex: 1 1 100%;
    }

    .section-angled,
    .section-angled-alt {
        clip-path: none;
        margin-top: 0;
        margin-bottom: 0;
        padding: 60px 0;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 8px 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .content-section {
        padding: 30px 0;
    }

    .card,
    .feature {
        padding: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    footer.footer-minimal .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    footer.footer-minimal .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-stagger] > * {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    footer {
        display: none;
    }

    main {
        padding-top: 0;
    }

    .hero {
        min-height: auto;
        background: var(--white);
        color: var(--text-color);
    }

    .hero-content h1 {
        color: var(--text-color);
    }

    .content-section {
        padding: 20px 0;
    }

    .section-dark {
        background: var(--white);
        color: var(--text-color);
    }
}
