/* Global Styles */
:root {
    --primary-color: #4e54c8;
    --primary-light: #8f94fb;
    --secondary-color: #ff5e62;
    --text-dark: #333;
    --text-light: #777;
    --white: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #2c2c54;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin: 15px 0;
    color: var(--text-light);
}

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

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(78, 84, 200, 0.6);
}

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

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.fa-bars, .fa-times {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDEwODBsMzAtNjBjMzAtNjAgOTAtMTgwIDE1MC0yNDBzMTIwLTYwIDE4MCAwYzYwIDYwIDEyMCAxODAgMTgwIDE4MHM2MCAwIDEyMC02MCAxMjAtMTgwIDE4MC0yNDBjNjAtNjAgMTIwLTYwIDE4MC02MCAxMjAgMTIwIDE4MCAyNDAgMTgwIDI0MHYxODBIMHoiIGZpbGw9IiNmZmZmZmYyMCIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-assistant-svg {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.voice-assistant-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.3);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseSubtle {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.01);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowRing {
    0% {
        opacity: 0.5;
        filter: brightness(0.8);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
    100% {
        opacity: 0.5;
        filter: brightness(0.8);
    }
}

@keyframes waveLine {
    0% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
}

@keyframes soundBarPulse {
    0%, 100% {
        transform: scaleY(0.3);
    }
    50% {
        transform: scaleY(1);
    }
}

@keyframes expandWave {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    10%, 30% {
        opacity: 0.9;
    }
    40% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.9;
    }
}

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

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Assistants Section */
.assistants {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.assistants::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDB2MTgwbDI0MCAtMTIwIDI0MCAxMjAgMjQwIC05MCAyNDAgOTAgMjQwIC0xMjAgMjQwIDEyMCAyNDAgLTkwIDI0MCA5MFYweiIgZmlsbD0iI2ZmZmZmZjIwIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.assistants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.assistant-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.assistant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: var(--transition);
}

.assistant-card:hover {
    transform: translateY(-10px);
}

.assistant-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.assistant-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    margin-right: 15px;
}

.assistant-card.marketing::before,
.assistant-card.marketing .assistant-icon {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.assistant-card.medical::before,
.assistant-card.medical .assistant-icon {
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
}

.assistant-card.psychological::before,
.assistant-card.psychological .assistant-icon {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.assistant-card.support::before,
.assistant-card.support .assistant-icon {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
}

.assistant-card h3 {
    font-size: 20px;
}

.assistant-card p {
    margin-bottom: 20px;
}

.assistant-demo {
    margin-top: auto;
    width: 100%;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-image {
    flex: 1;
    text-align: center;
}

/* Voice Features SVG Animations */
.voice-features-svg {
    max-width: 100%;
    height: auto;
}

.pulse-circle {
    animation: pulse 2s infinite ease-in-out;
}

.rotating-circle {
    animation: rotate 15s linear infinite;
    transform-origin: center;
}

.rotating-circle-reverse {
    animation: rotate-reverse 15s linear infinite;
    transform-origin: center;
}

.particle-to-center {
    animation: moveToCenter 3s infinite alternate ease-in-out;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

.delay-3 {
    animation-delay: 1.5s;
}

.delay-4 {
    animation-delay: 2s;
}

.flow-particle {
    animation: flowPath 4s infinite ease-in-out;
    opacity: 0;
}

.path1 {
    animation-delay: 0s;
}

.path2 {
    animation-delay: 1s;
}

.path3 {
    animation-delay: 2s;
}

.path4 {
    animation-delay: 3s;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes moveToCenter {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(100%, 100%);
        opacity: 0;
    }
}

@keyframes flowPath {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(15px, 15px);
        opacity: 0;
    }
}

.features-list {
    flex: 1;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info h4 {
    margin: 0;
    font-size: 18px;
}

.client-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
    background: var(--primary-color);
}

.testimonial-arrows {
    display: flex;
    gap: 15px;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDEwODBsMzAtNjBjMzAtNjAgOTAtMTgwIDE1MC0yNDBzMTIwLTYwIDE4MCAwYzYwIDYwIDEyMCAxODAgMTgwIDE4MHM2MCAwIDEyMC06MCAxMjAtMTgwIDE4MC0yNDBjNjAtNjAgMTIwLTYwIDE4MC06MCAxMjAgMTIwIDE4MCAyNDAgMTgwIDI0MHYxODBIMHoiIGZpbGw9IiNmZmZmZmYyMCIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
    opacity: 0.2;
    z-index: 0;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
    z-index: 1;
}

.process-card {
    position: relative;
    width: 45%;
    margin-bottom: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    z-index: 2;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-card::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 3;
}

.process-card.left {
    margin-right: auto;
}

.process-card.left::after {
    right: -60px;
}

.process-card.right {
    margin-left: auto;
}

.process-card.right::after {
    left: -60px;
}

.process-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
}

.process-content {
    padding-top: 10px;
}

.step-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.process-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.process-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.process-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.process-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
}

@media (max-width: 992px) {
    .process-timeline {
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 0;
    }
    
    .process-card {
        width: 90%;
        margin-left: auto;
    }
    
    .process-card.left::after,
    .process-card.right::after {
        left: -60px;
    }
}

@media (max-width: 576px) {
    .process-card {
        padding: 20px;
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.social-media h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

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

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 30px;
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
    margin-top: 10px;
}

.footer-column ul {
    display: flex;
    gap: 20px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-container {
        flex-direction: column-reverse;
    }

    .features-image {
        margin-top: 50px;
    }

    .process-step {
        width: calc(100% / 3 - 20px);
    }

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

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 40px;
        transition: 0.5s;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
    }

    .fa-bars, .fa-times {
        display: block;
    }

    .fa-times {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .process-step {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .process-step {
        width: 100%;
    }
}

/* Elevenlabs Widget Customization */
elevenlabs-convai {
    width: 100%;
    display: block;
}
