/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1B4079; /* Regal Navy */
    background-color: #FBF7F4; /* Parchment */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #E637BF; /* Shocking Pink */
    color: #FFFFFF; /* White text */
    border: 2px solid #E637BF; /* Shocking Pink border */
    box-shadow: 0 4px 15px rgba(230, 55, 191, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 141, 0.6);
    background: #FF858D; /* Grapefruit Pink on hover */
    color: #000000; /* Black text on hover */
    border-color: #FF858D;
}

.btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    margin-top:60px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1B4079; /* Regal Navy */
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E637BF; /* Shocking Pink */
}

.nav-cta {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1B4079 0%, #000000 100%);
    color: white;
}

.hero-content {
    flex: 1;
    padding: 100px 20px 100px 0;
    max-width: 600px;
    margin-left: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    color: #ffd700;
    font-size: 5rem;
}

.hero-title-secondary {
    display: block;
    color: #e8f4fd;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-element span {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.ai-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1B4079;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Solution Section */
.problem-solution {
    padding: 100px 0 120px;
    background: #f8f9fa;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step-visual {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    width: 80px;
    height: 80px;
    border: 2px solid #667eea;
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s infinite;
}

.pulse-ring-delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.target-lines {
    width: 60px;
    height: 60px;
    position: relative;
}

.target-lines::before,
.target-lines::after {
    content: '';
    position: absolute;
    background: #667eea;
    animation: target 2s infinite;
}

.target-lines::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.target-lines::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes target {
    0%, 100% {
        transform: scaleX(0) scaleY(0);
        opacity: 1;
    }
    50% {
        transform: scaleX(1) scaleY(1);
        opacity: 0.5;
    }
}

.rocket-trail {
    width: 60px;
    height: 60px;
    position: relative;
}

.rocket-trail::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #667eea, transparent);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: rocket 1s infinite;
}

@keyframes rocket {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

/* Services Preview */
.services-preview {
    padding: 100px 0 120px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1B4079 0%, #2a5a99 100%);
    border-radius: 12px 12px 0 0;
    color: white;
}

.service-level {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1B4079 0%, #36827F 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-body {
    padding: 30px 30px 20px;
}

.card-body ul {
    list-style: none;
    padding: 0;
}

.card-body li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.card-body li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
}

/* CTA Section */
.cta-section {
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
    padding: 100px 0 120px;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-info strong {
    display: block;
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 80px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: space-evenly;
}

.social-link {
    color: #a0aec0;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #667eea;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #a0aec0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 55, 191, 0.4);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.chat-icon {
    font-size: 24px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.user {
    background: #667eea;
    color: white;
    margin-left: auto;
}

.chat-message.admin {
    background: white;
    color: #333;
    border: 1px solid #e9ecef;
}

.chat-input {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chat-input button {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.chat-input button:hover {
    background: #5a67d8;
}

/* Enhanced Card Headers */
.card-header h3,
.team-member h3,
.opening-header h3,
.blog-card h3,
.related-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    position: relative;
    padding-bottom: 8px;
}

.card-header h3::after,
.team-member h3::after,
.opening-header h3::after,
.blog-card h3::after,
.related-post-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
}

/* Enhanced Blog Post Headers */
.blog-post-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.blog-post-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    border-radius: 2px;
}

.blog-post-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-post-meta span {
    display: inline-block;
    margin-right: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Enhanced Contact Form Headers */
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    position: relative;
    padding-bottom: 12px;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    border-radius: 2px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    color: white;
    text-align: center;
}

/* Services Hero Section */
.services-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1B4079 0%, #2a5a99 100%);
    color: white;
    text-align: center;
}

/* Blog Hero Section */
.blog-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* Blog Post Hero Section */
.blog-post-hero {
    padding: 200px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-post-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-post-header p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-post-header .btn {
    color: white;
    border: 2px solid white;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.blog-post-header .btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* About Hero Section */
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0 80px;
    background: #f8f9fa;
}

.mission-content,
.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.mission-text h2,
.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1B4079;
    position: relative;
    padding-bottom: 15px;
}

.mission-text h2::after,
.vision-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    border-radius: 3px;
}

.mission-text p,
.vision-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.mission-visual,
.vision-visual {
    text-align: center;
}

.mission-icon,
.vision-icon {
    font-size: 4rem;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.vision-content {
    grid-template-columns: 1fr 2fr;
    margin-bottom: 0;
}

.vision-text {
    order: 2;
}

.vision-visual {
    order: 1;
}

/* Join Hero Section */
.join-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.contact-form-section > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    min-height: 24px;
}

.radio-option input,
.checkbox-option input {
    margin-top: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-option input:checked {
    background: #E637BF;
    border-color: #E637BF;
    box-shadow: 0 0 0 3px rgba(230, 55, 191, 0.3);
}

.checkbox-option input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.radio-label,
.checkbox-label {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.success-message h3 {
    margin-bottom: 10px;
    color: #155724;
}

.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.why-choose-list li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E637BF 0%, #FF858D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #555;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-method:hover {
    background: #f8f9fa;
    color: #667eea;
}

.method-icon {
    font-size: 20px;
}

/* AI Familiarity Slider */
.ai-familiarity-slider {
    margin-top: 16px;
}

.ai-familiarity-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    margin: 20px 0 10px 0;
}

.ai-familiarity-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E637BF;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(230, 55, 191, 0.3);
    transition: all 0.2s ease;
}

.ai-familiarity-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(230, 55, 191, 0.5);
}

.ai-familiarity-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E637BF;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(230, 55, 191, 0.3);
    transition: all 0.2s ease;
}

.ai-familiarity-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(230, 55, 191, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    position: relative;
}

.slider-labels span {
    flex: 1;
}

.slider-labels span:nth-child(1) {
    text-align: left;
}

.slider-labels span:nth-child(2) {
    text-align: center;
}

.slider-labels span:nth-child(3) {
    text-align: right;
}

.slider-description {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #E637BF;
    font-style: italic;
    color: #555;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.slider-description.updating {
    opacity: 0.7;
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-accent {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .solution-steps {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chat-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: -10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        position: static;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .floating-elements {
        display: none;
    }
}
