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

:root {
    --primary: #EA821A;
    --primary-rgb: 234, 130, 26;
    --secondary: #1BC0C0;
    --secondary-rgb: 27, 192, 192;
    --accent: #5555EC;
    --accent-rgb: 85, 85, 236;
    --bg: #FFFAF5;
    --bg-alt: #FAF5EF;
    --text: #2D2319;
    --text-muted: #6B5D4F;
    --section-dark: #2D2319;
    --section-accent: #FAF0E6;
    --white: #ffffff;
    --border: rgba(45, 35, 25, 0.1);
    --shadow-sm: 0 2px 8px rgba(45, 35, 25, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 35, 25, 0.1);
    --shadow-lg: 0 12px 40px rgba(45, 35, 25, 0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 50px;
    --radius-full: 50%;
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.35s cubic-bezier(0.68, -0.15, 0.265, 1.35);
    --transition-smooth: 0.3s ease;
    --sidebar-width: 260px;
}

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

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

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

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

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

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

ul, ol {
    padding-left: 1.25rem;
}

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

@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(234, 130, 26, 0.25);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(234, 130, 26, 0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 36px 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(45, 35, 25, 0.05);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--section-accent);
    display: block;
    line-height: 1.3;
}

.logo span {
    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 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    font-family: var(--font-secondary);
}

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

.nav-link.active {
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 13px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    z-index: 1100;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

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

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

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, var(--section-dark) 0%, #3d2e1f 60%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 14s ease infinite;
    color: var(--white);
    overflow: hidden;
    padding: 72px 48px;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.hero .scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.header-hero {
    padding: 96px 48px 72px;
    background: linear-gradient(135deg, var(--section-dark) 0%, #3d2e1f 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.header-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    top: -80px;
    right: -40px;
    animation: float 8s ease-in-out infinite;
}

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

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

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

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

.section-dark {
    background: var(--section-dark);
    color: var(--white);
    padding: 72px 0;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-dark a:hover {
    color: #f59e4b;
}

.section-accent {
    background: var(--section-accent);
    padding: 72px 0;
    position: relative;
}

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

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 20px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.06), transparent);
    transition: height 0.4s ease;
    pointer-events: none;
}

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

.card:hover::after {
    height: 100%;
}

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

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

.feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: transform var(--transition), background var(--transition-smooth);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.feature h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid var(--border);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0;
    font-family: var(--font-primary);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

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

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

.two-col-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
}

.two-col-layout > * {
    flex: 1;
}

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

.two-col-layout img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #f59e4b);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(var(--secondary-rgb), 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.35);
    color: var(--white);
}

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

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

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

.section-dark .btn-primary {
    background: linear-gradient(135deg, var(--primary), #f59e4b);
}

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

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

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

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

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

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

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

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

form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

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

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

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-smooth);
    font-size: 1rem;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 0 24px 18px;
    max-height: 400px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 36px 0;
}

.stat-item {
    text-align: center;
}

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

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

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

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

.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

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

.badge-accent {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 24px 0;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

blockquote {
    border-left: 4px solid var(--secondary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(var(--secondary-rgb), 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
}

blockquote p {
    margin-bottom: 0;
}

.alert {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-info {
    background: rgba(var(--secondary-rgb), 0.08);
    border-left: 4px solid var(--secondary);
    color: var(--text);
}

.alert-success {
    background: rgba(39, 174, 96, 0.08);
    border-left: 4px solid #27ae60;
    color: var(--text);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

table thead th {
    background: var(--section-dark);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

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

table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}

footer.footer-cta {
    background: var(--white);
    padding: 48px 24px 24px;
    border-top: 1px solid var(--border);
}

footer.footer-cta .footer-cta-section {
    max-width: 600px;
    margin: 0 auto 36px;
    text-align: center;
    padding: 48px 36px;
    background: linear-gradient(135deg, var(--section-accent), var(--bg-alt));
    border-radius: var(--radius-xl);
}

footer.footer-cta .footer-cta-section h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

footer.footer-cta .footer-cta-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

footer.footer-cta .footer-cta-section .cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), #f59e4b);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

footer.footer-cta .footer-cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.35);
    color: var(--white);
}

footer.footer-cta .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

footer.footer-cta .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-smooth);
}

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

footer.footer-cta .copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.bottom-sheet-nav {
    display: none;
}

.hero-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.icon-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icon-box .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary), #f59e4b);
    color: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 36px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    top: -80px;
    left: -60px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    bottom: -50px;
    right: -30px;
}

.cta-banner h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
    background: var(--white);
    color: var(--primary);
}

.cta-banner .btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.team-card {
    text-align: center;
    padding: 32px 20px;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

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

.team-card h4 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: -36px;
    width: 2px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    margin-bottom: 6px;
}

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

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 24px 0;
}

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

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

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

.breadcrumb .separator {
    opacity: 0.4;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 24px 0;
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .news-body {
    padding: 24px;
}

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

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

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

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
    transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

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

@media screen and (max-width: 1280px) {
    :root {
        --sidebar-width: 230px;
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .navbar {
        position: fixed;
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        overflow: hidden;
        border-right: none;
        border-top: 1px solid var(--border);
        padding: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        box-shadow: 0 -4px 30px rgba(45, 35, 25, 0.12);
        z-index: 1050;
        flex-direction: column;
    }

    .navbar.visible {
        max-height: 80vh;
        padding: 28px 24px 36px;
        overflow-y: auto;
    }

    .nav-container {
        height: auto;
    }

    .logo {
        margin-bottom: 20px;
        padding-bottom: 16px;
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        border-left: none;
        padding-left: 16px;
        background: rgba(var(--primary-rgb), 0.08);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    main {
        margin-left: 0;
        padding-bottom: 72px;
    }

    .hero {
        min-height: 90vh;
        padding: 48px 24px;
    }

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

    .header-hero {
        padding: 72px 24px 48px;
        border-radius: 0;
    }

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

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stats-row {
        gap: 32px;
    }

    .bottom-sheet-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 8px 16px;
    }
}

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

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

    .section-dark {
        padding: 48px 0;
        border-radius: var(--radius-md);
        margin: 16px 0;
    }

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

    .hero {
        min-height: 80vh;
        padding: 36px 16px;
    }

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

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

    .header-hero {
        padding: 56px 16px 40px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

    .cta-banner {
        padding: 36px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-banner h3 {
        font-size: 1.4rem;
    }

    footer.footer-cta .footer-cta-section {
        padding: 32px 20px;
    }

    footer.footer-cta .footer-cta-section h3 {
        font-size: 1.4rem;
    }

    footer.footer-cta .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 24px;
    }

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

    table {
        font-size: 0.85rem;
    }

    table thead th,
    table tbody td {
        padding: 10px 12px;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero {
        min-height: 75vh;
    }

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

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

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

    .card img {
        height: 180px;
    }

    .feature {
        padding: 24px 20px;
    }

    .icon-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .team-card img {
        width: 100px;
        height: 100px;
    }

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

    .map-embed iframe {
        height: 250px;
    }

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

    .cta-banner h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .bottom-sheet-nav,
    .scroll-indicator,
    .cta-banner {
        display: none !important;
    }

    main {
        margin-left: 0 !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 24pt 0;
        background: #fff !important;
        color: #000 !important;
    }

    .hero-content h1,
    .header-hero h1 {
        color: #000 !important;
    }

    .section-dark {
        background: #f5f5f5 !important;
        color: #000 !important;
        border-radius: 0;
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark h4 {
        color: #000 !important;
    }

    .card,
    .feature,
    .testimonial-card,
    .pricing-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #333;
        color: #333 !important;
        background: none !important;
    }

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

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

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

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

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    z-index: 9999;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}
