/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Logo Bar */
    --color-blue: #0001f6;
    --color-purple: #8c2789;
    --color-green: #00f800;
    --color-orange: #ec891a;
    --color-magenta: #f402f7;
    --color-yellow: #f2f502;
    
    /* Primary Colors */
    --primary-color: #0001f6;
    --primary-dark: #0001d4;
    --secondary-color: #8c2789;
    
    /* Accent Colors */
    --accent-green: #00f800;
    --accent-orange: #ec891a;
    --accent-magenta: #f402f7;
    --accent-yellow: #f2f502;
    
    /* Neutral Colors - Dark Theme */
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --text-muted: #888888;
    --bg-light: #1a1a1a;
    --bg-white: #000000;
    --bg-card: #111111;
    --bg-section: #0a0a0a;
    --border-color: #333333;
    
    /* Effects */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #0001f6 0%, #8c2789 50%, #f402f7 100%);
    --gradient-accent: linear-gradient(135deg, #00f800 0%, #ec891a 50%, #f2f502 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-card);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, 
        var(--color-blue) 0%, 
        var(--color-purple) 16.66%, 
        var(--color-green) 33.33%, 
        var(--color-orange) 50%, 
        var(--color-magenta) 66.66%, 
        var(--color-yellow) 83.33%, 
        var(--color-blue) 100%) 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    filter: brightness(1.1);
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.active):not(:hover) {
    color: var(--text-light);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-dark);
}

/* Color underlines for menu items matching logo bar order */
.nav-menu > li:nth-child(1) > a::after,
.nav-menu > li:nth-child(1) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(2) > a::after,
.nav-menu > li:nth-child(2) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(3) > a::after,
.nav-menu > li:nth-child(3) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(4) > a::after,
.nav-menu > li:nth-child(4) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(5) > a::after,
.nav-menu > li:nth-child(5) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-magenta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(6) > a::after,
.nav-menu > li:nth-child(6) > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Show underline on hover and active */
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 250px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a {
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 4rem 0;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: radiantShine 3s ease-in-out infinite;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 248, 0, 0.5))
            drop-shadow(0 0 40px rgba(244, 2, 247, 0.4))
            drop-shadow(0 0 60px rgba(0, 1, 246, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(0, 248, 0, 0.3) 0%,
        rgba(244, 2, 247, 0.2) 25%,
        rgba(0, 1, 246, 0.2) 50%,
        rgba(140, 39, 137, 0.1) 75%,
        transparent 100%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

.hero-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 150%;
    height: 150%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 248, 0, 0.1) 60deg,
        rgba(244, 2, 247, 0.1) 120deg,
        rgba(0, 1, 246, 0.1) 180deg,
        rgba(140, 39, 137, 0.1) 240deg,
        rgba(236, 137, 26, 0.1) 300deg,
        transparent 360deg
    );
    border-radius: 50%;
    animation: rotateShine 4s linear infinite;
    z-index: 0;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 248, 0, 0.5))
                drop-shadow(0 0 40px rgba(244, 2, 247, 0.4))
                drop-shadow(0 0 60px rgba(0, 1, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 248, 0, 0.7))
                drop-shadow(0 0 60px rgba(244, 2, 247, 0.6))
                drop-shadow(0 0 90px rgba(0, 1, 246, 0.5))
                drop-shadow(0 0 120px rgba(140, 39, 137, 0.3));
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotateShine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes radiantShine {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-align: center;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    text-align: center;
}

.hero-parent {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.hero-parent-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

.hero-parent-logo {
    display: inline-block;
    transition: var(--transition);
    filter: brightness(1.1);
}

.hero-parent-logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.hero-parent-logo:hover {
    transform: translateY(-2px);
    opacity: 1;
    filter: brightness(1.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn,
.btn * {
    color: #000000 !important;
}

.btn-primary {
    background: var(--accent-green);
    color: #000000 !important;
    font-weight: 600;
}

.btn-primary,
.btn-primary * {
    color: #000000 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 248, 0, 0.4);
    background: var(--color-magenta);
    color: #000000 !important;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* Value Proposition */
.value-prop {
    padding: 2rem 0;
    background: var(--bg-section);
}

.value-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
}

.quote-icon {
    font-size: 6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -2rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: contents;
}

.services-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(100% - 120px);
}

.services-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 1, 246, 0.2);
    border-color: var(--primary-color);
    border-top: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 1, 246, 0.2));
}

/* Color accents for service cards */
.service-card:nth-child(1) .service-icon { filter: drop-shadow(0 2px 4px rgba(0, 1, 246, 0.3)); }
.service-card:nth-child(2) .service-icon { filter: drop-shadow(0 2px 4px rgba(140, 39, 137, 0.3)); }
.service-card:nth-child(3) .service-icon { filter: drop-shadow(0 2px 4px rgba(0, 248, 0, 0.3)); }
.service-card:nth-child(4) .service-icon { filter: drop-shadow(0 2px 4px rgba(236, 137, 26, 0.3)); }
.service-card:nth-child(5) .service-icon { filter: drop-shadow(0 2px 4px rgba(244, 2, 247, 0.3)); }
.service-card:nth-child(6) .service-icon { filter: drop-shadow(0 2px 4px rgba(242, 245, 2, 0.3)); }
.service-card:nth-child(7) .service-icon { filter: drop-shadow(0 2px 4px rgba(0, 1, 246, 0.3)); }
.service-card:nth-child(8) .service-icon { filter: drop-shadow(0 2px 4px rgba(140, 39, 137, 0.3)); }
.service-card:nth-child(9) .service-icon { filter: drop-shadow(0 2px 4px rgba(0, 248, 0, 0.3)); }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--color-magenta);
    gap: 0.75rem;
}

/* Why Choose Section */
.why-choose {
    padding: 2rem 0;
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 1.5rem;
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--bg-section);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, 
        var(--color-blue) 0%, 
        var(--color-purple) 16.66%, 
        var(--color-green) 33.33%, 
        var(--color-orange) 50%, 
        var(--color-magenta) 66.66%, 
        var(--color-yellow) 83.33%, 
        var(--color-blue) 100%) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.social-link svg {
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--accent-green);
    color: var(--bg-white);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Page Content Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    margin-top: 2rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section li {
    color: var(--text-light);
}

.content-section strong {
    color: var(--text-dark);
}

.content-section a:not(.btn) {
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition);
}

.content-section a:not(.btn):hover {
    color: var(--color-magenta);
    text-decoration: underline;
}

/* PDF Downloads */
.pdf-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.pdf-downloads .btn {
    display: inline-flex;
    align-items: center;
}

/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background: var(--bg-section);
    overflow: hidden;
}

.clients-logos-wrapper {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-logos-wrapper::before,
.clients-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-section), transparent);
}

.clients-logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-section), transparent);
}

.clients-logos-scroll {
    width: 100%;
    overflow: hidden;
}

.clients-logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    filter: none;
    opacity: 1;
}

.client-logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 248, 0, 0.3);
    border-color: var(--accent-green);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(100% - 120px);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-grid {
    display: contents;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    opacity: 1;
    animation: none;
}

/* Carousel Arrows */
.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--accent-green);
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 248, 0, 0.4);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 248, 0, 0.2);
    border-color: var(--accent-green);
}

.testimonial-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-green);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

/* Calendly Embed */
.calendly-embed {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.calendly-inline-widget {
    width: 100%;
    min-height: 700px;
    background: var(--bg-card);
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-card);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 248, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .dropdown-toggle {
        justify-content: center;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transform: none;
        box-shadow: none;
        background: var(--bg-section);
        margin-top: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border-color);
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: none;
        padding: 0.5rem 0;
        overflow: visible;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-parent {
        margin: 1.5rem 0;
    }

    .hero-parent-logo img {
        height: 35px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-carousel-wrapper {
        gap: 0.5rem;
        justify-content: center;
    }

    .services-carousel {
        max-width: 280px;
        width: 280px;
        min-width: 280px;
        margin: 0 auto;
        flex: 0 0 280px;
    }

    .service-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .services-track {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 248, 0, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-magenta);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(244, 2, 247, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-logo img {
        max-width: 250px;
    }

    .hero-logo::before {
        width: 110%;
        height: 110%;
    }

    .hero-logo::after {
        width: 130%;
        height: 130%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 40px;
        max-width: 150px;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .clients-logos-wrapper::before,
    .clients-logos-wrapper::after {
        width: 50px;
    }

    .clients-logos-track {
        gap: 3rem;
    }

    .client-logo-item {
        width: 150px;
        height: 100px;
        padding: 1.5rem;
    }

    .testimonials-carousel-wrapper {
        gap: 0.5rem;
        justify-content: center;
    }

    .testimonials-carousel {
        max-width: 300px;
        width: 300px;
        min-width: 300px;
        margin: 0 auto;
        flex: 0 0 300px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        width: 300px;
        padding: 2rem;
    }

    .testimonials-track {
        gap: 1.5rem;
    }
}

