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

:root {
    --primary-color: #1BBB50;
    --primary-rgb: 27, 187, 80;
    --secondary-color: #55CE7D;
    --secondary-rgb: 85, 206, 125;
    --accent-color: #63F293;
    --accent-rgb: 99, 242, 147;
    --bg-color: #FAFAFA;
    --bg-alt: #F3F4F6;
    --text-color: #1F2937;
    --text-muted: #6B7280;
    --section-dark: #1F2937;
    --section-accent: #F0F2F5;
    --border-color: #E5E7EB;
    --white: #ffffff;
    --font-primary: 'Ubuntu', system-ui, -apple-system, sans-serif;
    --font-secondary: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --gutter: 1.5rem;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

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

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

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

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

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s 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);
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 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;
    padding: 0 var(--gutter);
    max-width: var(--max-width);
    margin: 0 auto;
    height: 70px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.logo img {
    height: 36px;
    width: auto;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

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

.nav-link.active::after {
    transform: scaleX(1);
}

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

main {
    padding-top: 70px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 242, 147, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content .btn {
    margin: 0 0.5rem;
}

.header-hero {
    position: relative;
    padding: 5rem 0 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

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

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

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

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-dark {
    background-color: var(--section-dark);
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
}

.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(--white);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

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

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

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

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

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

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 187, 80, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
    overflow: hidden;
}

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

.card h3, .card h4 {
    margin-bottom: 0.5rem;
}

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

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

.feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(27, 187, 80, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(27, 187, 80, 0.08);
    border: 1px solid rgba(27, 187, 80, 0.15);
}

.feature h3, .feature h4 {
    margin-bottom: 0.75rem;
}

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

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.featured-grid .featured-item {
    flex: 1 1 100%;
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.featured-grid .grid-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex: 1 1 100%;
}

.featured-grid .grid-items > * {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    padding-top: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.testimonial-card .author span {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    position: relative;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

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

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

.two-col-layout > * {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

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

.two-col-layout img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.two-col-layout h2 {
    margin-bottom: 1rem;
}

.two-col-layout p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

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

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

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

.timeline-item h3, .timeline-item h4 {
    margin-bottom: 0.5rem;
}

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

.timeline-item .timeline-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.btn-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: background-position 0.35s ease, color 0.35s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-position: left;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(27, 187, 80, 0.25);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

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

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

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

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

.hero .btn-primary {
    border-color: var(--white);
    color: var(--white);
    background: linear-gradient(to right, var(--white) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
}

.hero .btn-primary:hover {
    background-position: left;
    color: var(--primary-color);
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

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

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

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

.contact-info-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-box h4 {
    margin-bottom: 0.75rem;
}

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

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    background: var(--white);
    transition: background 0.3s ease;
}

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

.faq-question .faq-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(27, 187, 80, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(27, 187, 80, 0.2);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
}

.stat-box .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-section {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.cta-section .btn-primary {
    border-color: var(--white);
    color: var(--white);
    background: linear-gradient(to right, var(--white) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
}

.cta-section .btn-primary:hover {
    background-position: left;
    color: var(--primary-color);
}

.section-fade {
    position: relative;
}

.section-fade::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-alt));
    pointer-events: none;
}

.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);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.portfolio-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 260px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.85), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

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

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.event-card:hover {
    border-color: var(--primary-color);
}

.event-card .event-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 0.75rem;
    background: rgba(27, 187, 80, 0.08);
    border: 1px solid rgba(27, 187, 80, 0.15);
}

.event-card .event-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.event-card .event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.event-card .event-details h4 {
    margin-bottom: 0.5rem;
}

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

.location-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary-color);
}

.location-card h4 {
    margin-bottom: 0.75rem;
}

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

.location-card .location-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.news-card:hover {
    border-color: var(--primary-color);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-card .news-body {
    padding: 1.25rem;
}

.news-card .news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.news-card h4 {
    margin-bottom: 0.5rem;
}

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

.insight-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
    transition: box-shadow 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.insight-card h4 {
    margin-bottom: 0.75rem;
}

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

.breadcrumb {
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.breadcrumb span {
    margin: 0 0.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border: 1px solid;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(27, 187, 80, 0.08);
    border-color: rgba(27, 187, 80, 0.2);
    color: #166534;
}

.alert-info {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

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

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

footer.footer-minimal {
    padding: 2rem;
    background: var(--section-dark);
    color: rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

footer.footer-minimal .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

footer.footer-minimal .footer-links {
    display: flex;
    gap: 1.5rem;
    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.9rem;
    transition: color 0.3s ease;
}

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

footer.footer-minimal p {
    margin: 0;
    font-size: 0.9rem;
}

footer .footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    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(-30px);
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .grid-3 > * {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .grid-4 > * {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .portfolio-item {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@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: 5rem 1.5rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .mobile-overlay.active {
        display: block;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }

    .hero {
        min-height: 75vh;
    }

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

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

    .hero::before {
        width: 250px;
        height: 250px;
    }

    .hero::after {
        width: 200px;
        height: 200px;
    }

    .header-hero {
        padding: 4rem 0 2.5rem;
    }

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

    .content-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

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

    .two-col-layout > * {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

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

    .portfolio-item {
        flex: 1 1 100%;
    }

    .event-card {
        flex-direction: column;
        gap: 1rem;
    }

    .event-card .event-date {
        width: auto;
        display: flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

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

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

    footer.footer-minimal .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 65vh;
    }

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

    .hero-content .btn {
        display: block;
        margin: 0.5rem 0;
    }

    .header-hero {
        padding: 3.5rem 0 2rem;
    }

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

    .content-section {
        padding: 2rem 0;
    }

    .card {
        padding: 1.25rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    form {
        max-width: 100%;
    }
}

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

    main {
        padding-top: 0;
    }

    .hero {
        min-height: auto;
        background: var(--primary-color) !important;
        animation: none;
        padding: 2rem;
    }

    .content-section {
        break-inside: avoid;
        padding: 1.5rem 0;
    }

    a {
        color: var(--text-color);
    }

    .btn {
        border: 1px solid var(--text-color);
    }
}
