@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: #31C49F;
    --primary-rgb: 49, 196, 159;
    --secondary: #9B2744;
    --secondary-rgb: 155, 39, 68;
    --accent: #5AC4E7;
    --accent-rgb: 90, 196, 231;
    --bg: #FFFAF5;
    --bg-alt: #FAF5EF;
    --text-color: #2D2319;
    --text-muted-color: #6B5D4F;
    --section-dark: #2D2319;
    --section-accent: #FAF0E6;
    --border-color: #e0d5c8;
    --sidebar-width: 260px;
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

@keyframes floatDrift {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-14px) rotate(1deg); }
    66% { transform: translateY(-8px) rotate(-0.5deg); }
}

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

@keyframes warmPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(49, 196, 159, 0.25); }
    50% { box-shadow: 0 0 0 12px rgba(49, 196, 159, 0); }
}

@keyframes shimmerSlide {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    color: var(--text-color);
    background: var(--bg);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-color);
}

h1 { font-size: 2rem; margin-bottom: 0.75em; }
h2 { font-size: 1.5rem; margin-bottom: 0.65em; }
h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
h4 { font-size: 1.125rem; margin-bottom: 0.5em; }
h5 { font-size: 1rem; margin-bottom: 0.4em; }
h6 { font-size: 0.875rem; margin-bottom: 0.4em; }

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

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

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--section-dark);
    padding: 30px 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
    letter-spacing: -0.02em;
}

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

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(49, 196, 159, 0.12);
    color: var(--primary);
    border-color: rgba(49, 196, 159, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-color);
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 18px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: rgba(0,0,0,0.06);
}

main {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    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: 20px;
}

.grid-4 > * {
    flex: 1 1 calc(25% - 15px);
    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;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--section-dark) 0%, #3D2F24 60%, var(--secondary) 100%);
    overflow: hidden;
    padding: 80px 30px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    z-index: 0;
    animation: floatDrift 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    bottom: -60px;
    left: -40px;
    z-index: 0;
    animation: floatDrift 9s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5em;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

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

.hero-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    color: #fff;
    min-width: 160px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.16);
}

.hero-card strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-card span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.hero-search {
    margin-top: 30px;
    display: flex;
    gap: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    backdrop-filter: blur(4px);
}

.hero-search input::placeholder {
    color: rgba(255,255,255,0.5);
}

.hero-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.hero-search button {
    padding: 14px 24px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.25s ease;
}

.hero-search button:hover {
    background: #28a885;
    border-color: #28a885;
}

.header-hero {
    position: relative;
    padding: 60px 30px 50px;
    background: linear-gradient(160deg, var(--section-dark) 0%, #3D2F24 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    top: -80px;
    right: -40px;
    z-index: 0;
}

.header-hero h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.4em;
}

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

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

.content-section:nth-child(even) {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--section-dark);
    color: #fff;
    padding: 60px 0;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

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

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

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

.section-accent {
    background: var(--section-accent);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 35, 25, 0.12);
    border-color: var(--primary);
}

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

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

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.4em;
}

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

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

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(45, 35, 25, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--accent-rgb), 0.08));
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(45, 35, 25, 0.08);
}

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

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

.testimonial-card .author {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: var(--text-color);
    font-style: normal;
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

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

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.pricing-card h3 {
    margin-bottom: 0.4em;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: 16px;
}

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

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

.pricing-card ul li::before {
    content: '\2713';
    color: var(--primary);
    margin-right: 8px;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0;
    border: 2px solid currentColor;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    background: linear-gradient(to right, var(--primary) 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;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary:hover {
    background-position: left;
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    border-radius: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    line-height: 1.4;
}

.btn-secondary:hover {
    background: #7d1f36;
    border-color: #7d1f36;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
    line-height: 1.4;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

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

.section-dark .btn-primary:hover {
    background-position: left;
    color: var(--section-dark);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
}

.section-dark .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.9);
}

.section-dark .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

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

.faq-question {
    padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: var(--text-color);
}

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

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

.faq-item.active .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

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

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

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

.directory-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.directory-listing .card {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
}

.listing-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted-color);
    margin-top: 8px;
}

.listing-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.tag-secondary {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary);
}

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

.blog-grid .card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

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

.partner-item {
    flex: 0 1 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    min-height: 80px;
}

.partner-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.1);
}

.partner-item img {
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

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

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

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

.stat-item .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

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

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

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

.cta-box {
    background: linear-gradient(135deg, var(--primary), #28a885);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-box h2,
.cta-box h3 {
    color: #fff;
    position: relative;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    position: relative;
}

.cta-box .btn {
    position: relative;
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-box .btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.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-in"] {
    transform: scale(0.92);
}

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

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

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

footer.footer-mega {
    background: var(--section-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 30px 30px;
    margin-left: var(--sidebar-width);
}

footer.footer-mega .footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

footer.footer-mega .footer-column {
    flex: 1 1 200px;
    min-width: 180px;
}

footer.footer-mega .footer-column h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

footer.footer-mega .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-mega .footer-column li {
    margin-bottom: 10px;
}

footer.footer-mega .footer-column a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

footer.footer-mega .footer-column a:hover {
    color: var(--primary);
}

footer.footer-mega .footer-copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.mobile-overlay-menu {
    position: fixed;
    inset: 0;
    background: rgba(45, 35, 25, 0.97);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.menu-open .mobile-overlay-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay-menu .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-overlay-menu .nav-link {
    font-size: 1.25rem;
    padding: 14px 30px;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

.mobile-overlay-menu .nav-link:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.05);
}

.breadcrumb {
    padding: 12px 0;
    font-size: 0.8rem;
    color: var(--text-muted-color);
}

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

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

.breadcrumb span {
    margin: 0 6px;
    opacity: 0.5;
}

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

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

table th {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-alt);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

table tr:hover td {
    background: rgba(var(--primary-rgb), 0.03);
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: #1a7a60;
}

.alert-info {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.2);
    color: #2a8aa8;
}

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

.contact-grid > * {
    flex: 1 1 300px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

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

.map-embed {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.news-list .card {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.news-list .card img {
    width: 200px;
    min-height: 160px;
    flex-shrink: 0;
}

.news-list .card .card-body {
    flex: 1;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-nav a {
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-muted-color);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-nav a:hover,
.category-nav a.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-muted-color);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pagination a:hover,
.pagination span.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

blockquote {
    border-left: 3px solid var(--secondary);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--bg-alt);
    font-style: italic;
    color: var(--text-muted-color);
}

blockquote p:last-child {
    margin-bottom: 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 (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (max-width: 1024px) {
    .navbar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .logo {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        color: #fff;
        position: static;
    }

    main {
        margin-left: 0;
        padding-top: 60px;
    }

    footer.footer-mega {
        margin-left: 0;
    }

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

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

    .hero-cards {
        gap: 12px;
    }

    .hero-card {
        min-width: 130px;
        padding: 14px 16px;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search input {
        border-right: 2px solid rgba(255,255,255,0.2);
        border-radius: var(--radius-md);
    }

    .hero-search button {
        border-radius: var(--radius-md);
    }

    .section-angled,
    .section-angled-alt {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
        padding: 60px 0;
    }

    .two-col-layout {
        gap: 30px;
    }

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

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

    .stat-row {
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .news-list .card {
        flex-direction: column;
    }

    .news-list .card img {
        width: 100%;
        min-height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

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

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

    .section-header {
        margin-bottom: 30px;
    }

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

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.1rem; }

    .header-hero {
        padding: 40px 20px 30px;
    }

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

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

    .directory-listing .card {
        flex: 1 1 100%;
    }

    .blog-grid .card {
        flex: 1 1 100%;
    }

    footer.footer-mega {
        padding: 40px 20px 20px;
    }

    footer.footer-mega .footer-grid {
        gap: 30px;
    }

    footer.footer-mega .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

    .cta-box {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

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

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

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

    .hero-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        width: 100%;
        max-width: 260px;
    }

    .container {
        padding: 0 16px;
    }

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

    .feature {
        padding: 24px 18px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

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

    .category-nav {
        gap: 6px;
    }

    .category-nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    table {
        font-size: 0.8rem;
    }

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

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

    main {
        margin-left: 0;
    }

    footer.footer-mega {
        margin-left: 0;
    }

    .hero {
        min-height: auto;
        background: #fff;
        color: var(--text-color);
        padding: 20px 0;
    }

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

    .content-section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
