/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #e6f0ff;
    --secondary: #f0f4f8;
    --text: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --border: #e0e0e0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Demo Notice Banner */
.demo-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    border-bottom: 3px solid #5a67d8;
}

.demo-notice a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.demo-notice a:hover {
    text-decoration-thickness: 3px;
    opacity: 0.9;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.navbar .container {
    max-width: 1400px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

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

.nav-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
}

.nav-menu > li > a:hover {
    color: var(--primary);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Mega Menu */
.nav-mega-item {
    position: static;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.nav-mega-item:hover .mega-menu {
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    padding: 45px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.mega-column {
    padding: 0;
    min-width: 0;
}

.mega-column h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--text);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: block;
}

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

.mega-column li {
    margin: 0;
    padding: 0;
    display: block;
}

.mega-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: block;
    padding: 11px 0 11px 12px;
    margin: 0;
    transition: all 0.25s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.mega-column a:hover {
    color: var(--primary);
    padding-left: 20px;
    border-left-color: var(--primary);
    background-color: var(--primary-light);
}

/* Nav Link Styling - regular items */
.nav-menu > li:not(.nav-mega-item) > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu > li:not(.nav-mega-item) > a:hover::after {
    width: 100%;
}

/* Mega menu items - underline effect */
.nav-mega-item > a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-mega-item > a:hover::before {
    width: calc(100% - 18px);
}

/* Mega menu dropdown arrow */
.nav-mega-item > a {
    padding-right: 18px;
}

.nav-mega-item > a::after {
    content: '▾';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-mega-item:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Hero Section */
}

/* Services Section */
.services {
    padding: 120px 0 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    font-size: 14px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--secondary);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--secondary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.reason {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.reason-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.reason h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.reason p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.feature p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    color: var(--white);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--secondary);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-info {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.contact-info p {
    color: var(--text-light);
    margin: 8px 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-address {
    font-size: 13px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-top: 15px;
}

.footer-sites {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-sites h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 20px;
    margin-bottom: 20px;
}

.sites-grid a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    padding: 5px 0;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #808080;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--secondary);
    padding: 20px 0;
    margin: 0;
}

.breadcrumbs p {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

/* Two Column Layout */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.page-content {
    background-color: var(--white);
}

.page-sidebar {
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.page-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.page-sidebar ul {
    list-style: none;
}

.page-sidebar li {
    margin-bottom: 12px;
}

.page-sidebar a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-sidebar a:hover {
    background-color: var(--white);
    color: var(--primary);
    padding-left: 12px;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.content-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text);
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section ul li {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Code Blocks */
.code-block {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.code-block code {
    color: #e0e0e0;
}

/* Pricing Table */
.pricing-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-comparison th,
.pricing-comparison td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-comparison th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.pricing-comparison tr:last-child td {
    border-bottom: none;
}

.pricing-comparison tr:nth-child(even) {
    background-color: var(--secondary);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.2);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

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

.pricing-card .btn {
    width: 100%;
}

/* Case Study Cards */
.case-study-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.case-study-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
}

.case-study-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.case-study-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.case-study-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.case-study-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.case-study-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.case-study-link:hover {
    text-decoration: underline;
}

/* Blog Post */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.blog-post-content {
    margin: 40px 0;
}

.blog-post-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text);
}

.blog-post-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--secondary);
    border-radius: 12px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 5px;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.timeline-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border);
        max-height: 70vh;
        overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid var(--border);
        width: 100%;
        display: block;
    }

    .nav-menu > li > a {
        padding: 16px 20px;
        display: block;
        width: 100%;
    }

    .nav-mega-item > a {
        padding-right: 40px !important;
    }

    .nav-mega-item > a::before {
        right: 20px;
    }

    .mega-menu {
        display: none !important;
        position: static !important;
        background-color: var(--secondary) !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        max-height: 400px;
        overflow-y: auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-mega-item.active .mega-menu {
        display: block !important;
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }

    .mega-column {
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

    .mega-column:last-child {
        border-bottom: none;
    }

    .mega-column h4 {
        margin-bottom: 15px;
        border-bottom: 1px solid var(--primary);
        padding-bottom: 8px;
        font-size: 12px;
    }

    .mega-column li {
        margin-bottom: 0;
    }

    .mega-column a {
        padding: 12px 0 !important;
        font-size: 14px;
    }

    .mega-column a:hover {
        padding-left: 10px !important;
    }

    .nav-mega-item > .nav-link::before {
        content: '▼';
        margin-left: 8px;
    }

    .nav-mega-item.active > .nav-link::before {
        content: '▲';
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h2 {
        font-size: 24px;
    }

    .services {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Hero Slideshow */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideshow 25s infinite;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-1 {
    background-image: url('hero-1.webp');
    animation-delay: 0s;
}

.hero-slide-1::before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(185, 28, 28, 0.75) 100%);
}

.hero-slide-2 {
    background-image: url('hero-2.webp');
    animation-delay: 5s;
}

.hero-slide-2::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(234, 88, 12, 0.75) 100%);
}

.hero-slide-3 {
    background-image: url('hero-3.webp');
    animation-delay: 10s;
}

.hero-slide-3::before {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85) 0%, rgba(22, 163, 74, 0.75) 100%);
}

.hero-slide-4 {
    background-image: url('hero-4.webp');
    animation-delay: 15s;
}

.hero-slide-4::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
}

.hero-slide-5 {
    background-image: url('hero-5.webp');
    animation-delay: 20s;
}

.hero-slide-5::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.85) 0%, rgba(147, 51, 234, 0.75) 100%);
}

@keyframes slideshow {
    0% { opacity: 0; transform: scale(1); z-index: 1; }
    2% { opacity: 1; transform: scale(1.05); z-index: 2; }
    18% { opacity: 1; transform: scale(1.05); z-index: 2; }
    20% { opacity: 0; transform: scale(1); z-index: 1; }
    100% { opacity: 0; transform: scale(1); z-index: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}

.indicator {
    padding: 10px 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.indicator-text {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.indicator:hover .indicator-text {
    color: rgba(255, 255, 255, 1);
}

.indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.indicator-1::after {
    animation: indicatorProgress 25s infinite;
    animation-delay: 0s;
}

.indicator-2::after {
    animation: indicatorProgress 25s infinite;
    animation-delay: 5s;
}

.indicator-3::after {
    animation: indicatorProgress 25s infinite;
    animation-delay: 10s;
}

.indicator-4::after {
    animation: indicatorProgress 25s infinite;
    animation-delay: 15s;
}

.indicator-5::after {
    animation: indicatorProgress 25s infinite;
    animation-delay: 20s;
}

@keyframes indicatorProgress {
    0% { width: 0%; }
    2% { width: 0%; }
    20% { width: 100%; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

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

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

    .slide-indicators {
        bottom: 20px;
        gap: 6px;
        padding: 0 10px;
        max-width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .indicator {
        padding: 8px 12px;
        flex-shrink: 0;
    }

    .indicator-text {
        font-size: 11px;
    }
}
