/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    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;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Newsletter Section */
.newsletter {
    background: #1f2937;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #fbbf24;
    color: #1f2937;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.journey-list {
    list-style: none;
    padding: 0;
}

.journey-list li {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2563eb;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
    gap: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8fafc;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 30px;
}

.contact-item span {
    font-weight: 500;
    color: #1f2937;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    color: #1f2937;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* WhatsApp CTA Styles */
.whatsapp-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.whatsapp-icon i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-cta h3 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-cta p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-whatsapp {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #25d366;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #128c7e;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Hide navbar on Utopia Ads page */
.navbar {
    display: none !important;
}

/* Remove top spacing for Utopia Ads page */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Adjust hero section to start from top */
.utopiaads-hero {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.journey-list li {
    animation: fadeInUp 0.6s ease forwards;
}

/* Service Pages Styles */
.service-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.service-hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-icon-large i {
    font-size: 4rem;
    color: #fbbf24;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-item .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Methodology */
.methodology {
    padding: 6rem 0;
    background: white;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Results */
.results {
    padding: 6rem 0;
    background: #1f2937;
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Case Studies */
.case-studies {
    padding: 6rem 0;
    background: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.case-industry {
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.case-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    padding: 6rem 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: white;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.use-case-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card ul li {
    padding: 0.3rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    background: #f8fafc;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.demo-chat {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background: #2563eb;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message .message-content {
    background: white;
    color: #1f2937;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: #2563eb;
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 0.3rem;
}

.chat-input {
    padding: 1rem;
    background: white;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    font-size: 0.9rem;
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.demo-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-features {
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.demo-feature i {
    color: #10b981;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features ul li i {
    color: #10b981;
}

/* Courses */
.courses {
    padding: 6rem 0;
    background: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.course-card.featured {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.course-header {
    padding: 2rem 2rem 1rem;
}

.course-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.course-rating i {
    color: #fbbf24;
}

.course-content {
    padding: 0 2rem 1rem;
}

.course-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-features {
    margin-bottom: 1rem;
}

.course-features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.course-features ul {
    list-style: none;
    padding: 0;
}

.course-features ul li {
    padding: 0.3rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.course-features ul li i {
    color: #10b981;
    font-size: 0.8rem;
}

.course-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-old {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

/* Bundle */
.bundle {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bundle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bundle h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bundle p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bundle-features {
    margin-bottom: 2rem;
}

.bundle-features ul {
    list-style: none;
    padding: 0;
}

.bundle-features ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.bundle-features ul li i {
    color: #fbbf24;
}

.bundle-price {
    margin-bottom: 2rem;
}

.bundle-price .price-old {
    font-size: 1.2rem;
    opacity: 0.7;
    text-decoration: line-through;
    display: block;
}

.bundle-price .price-new {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
}

.bundle-price .price-save {
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.bundle-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.bundle-icon i {
    font-size: 4rem;
    color: #fbbf24;
}

/* Products */
.products {
    padding: 6rem 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card.featured {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    text-align: center;
    color: #9ca3af;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.product-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-ingredients,
.product-benefits {
    margin-bottom: 1.5rem;
}

.product-ingredients h4,
.product-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-ingredients ul,
.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-ingredients ul li,
.product-benefits ul li {
    padding: 0.3rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.product-benefits ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-benefits ul li i {
    color: #10b981;
    font-size: 0.8rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.product-price .price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.product-price .price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Speeches Page */
.speeches-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.speeches-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.speeches-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.speeches-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.speeches-hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.speeches-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.speeches-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.speeches-icon-large i {
    font-size: 4rem;
    color: #fbbf24;
}

/* About Speaker */
.about-speaker {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-speaker-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.speaker-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.speaker-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.speaker-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.achievement {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.speaker-expertise h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.speaker-expertise ul {
    list-style: none;
    padding: 0;
}

.speaker-expertise ul li {
    padding: 0.5rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.speaker-expertise ul li i {
    color: #10b981;
}

.speaker-image {
    display: flex;
    justify-content: center;
}

.speaker-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e5e7eb;
}

.speaker-placeholder i {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.speaker-placeholder p {
    color: #6b7280;
    font-size: 1rem;
}

/* Speeches */
.speeches {
    padding: 6rem 0;
    background: white;
}

.speeches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.speech-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.speech-card.featured {
    border-color: #2563eb;
    transform: scale(1.02);
}

.speech-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.speech-header {
    padding: 2rem 2rem 1rem;
}

.speech-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.speech-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.speech-duration i {
    color: #2563eb;
}

.speech-content {
    padding: 0 2rem 1rem;
}

.speech-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.speech-topics {
    margin-bottom: 1.5rem;
}

.speech-topics h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.speech-topics ul {
    list-style: none;
    padding: 0;
}

.speech-topics ul li {
    padding: 0.3rem 0;
    color: #4b5563;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.speech-topics ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.speech-audience {
    margin-bottom: 1.5rem;
}

.speech-audience h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.speech-audience span {
    color: #6b7280;
    font-size: 0.9rem;
}

.speech-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.speech-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.speech-rating i {
    color: #fbbf24;
}

/* Companies */
.companies {
    padding: 6rem 0;
    background: #f8fafc;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-logo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.company-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
}

.company-placeholder i {
    font-size: 2rem;
    color: #2563eb;
}

.company-placeholder span {
    font-weight: 600;
}

/* Registration */
.registration {
    padding: 6rem 0;
    background: white;
}

.registration-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Utopia Ads Styles - Tech Blue Color Palette */
.utopiaads-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: #0a0e1a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 123, 255, 0.15) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #3b82f6 70%, #06b6d4 100%);
    opacity: 0.95;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00bfff;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00bfff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.6);
    background: linear-gradient(45deg, #1e90ff, #2563eb);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

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

.hero-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.professional-photo {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: visible;
    border: 3px solid rgba(0, 191, 255, 0.4);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 191, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(59, 130, 246, 0.1));
    margin: 0 auto;
}

.professional-photo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00bfff, #3b82f6, #06b6d4, #1e40af);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-photo:hover::before {
    opacity: 1;
}

.professional-photo:hover {
    transform: scale(1.08);
    border-color: #00bfff;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(0, 191, 255, 0.4);
}

.professional-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.professional-photo:hover img {
    filter: contrast(1.2) brightness(1.1) saturate(1.2);
}

/* Rotating Text Animation */
.rotating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}

.text-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotateText 25s linear infinite;
}

.orbit-text {
    position: absolute;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00bfff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
    white-space: nowrap;
    transform-origin: center;
    animation: pulseText 3s ease-in-out infinite;
}

.orbit-text:nth-child(1) { animation-delay: 0s; }
.orbit-text:nth-child(2) { animation-delay: 0.5s; }
.orbit-text:nth-child(3) { animation-delay: 1s; }
.orbit-text:nth-child(4) { animation-delay: 1.5s; }
.orbit-text:nth-child(5) { animation-delay: 2s; }
.orbit-text:nth-child(6) { animation-delay: 2.5s; }

@keyframes pulseText {
    0%, 100% {
        opacity: 0.7;
        text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }
}

.orbit-text:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-text:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

.orbit-text:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.orbit-text:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: center;
}

.orbit-text:nth-child(5) {
    top: 25%;
    right: 25%;
    transform: rotate(45deg);
    transform-origin: center;
}

.orbit-text:nth-child(6) {
    bottom: 25%;
    left: 25%;
    transform: rotate(225deg);
    transform-origin: center;
}

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

/* Pause animation on hover */
.professional-photo:hover .text-orbit {
    animation-play-state: paused;
}

/* Add floating particles around the photo */
.professional-photo::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: floatParticles 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes floatParticles {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsive adjustments for rotating text */
@media (max-width: 768px) {
    .rotating-text {
        width: 320px;
        height: 320px;
    }
    
    .orbit-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .professional-photo {
        width: 240px;
        height: 240px;
    }
}

.photo-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 191, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    z-index: 3;
}

.photo-badge span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.photo-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.dashboard-mockup {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.5), transparent);
}

.dashboard-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 191, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 191, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    position: relative;
    z-index: 2;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dashboard-dots span:nth-child(1) {
    background: #ff5f57;
    border-color: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
    border-color: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background: #28ca42;
    border-color: #28ca42;
}



.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.4);
}

.metric-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 
        0 6px 16px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 191, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.metric-info {
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00bfff;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chart-container {
    height: 90px;
    display: flex;
    align-items: end;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #00bfff, #3b82f6);
    border-radius: 6px 6px 0 0;
    animation: barGrow 2s ease-out;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 20px;
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 6px 6px 0 0;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* About Expert Section */
.about-expert {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.about-expert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.expert-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.expert-photo img {
    width: 320px;
    height: 320px;
    border-radius: 25px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.expert-photo img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(0, 191, 255, 0.3);
    filter: contrast(1.2) brightness(1.1) saturate(1.2);
}

.photo-frame {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid transparent;
    border-radius: 30px;
    background: linear-gradient(45deg, #00bfff, #3b82f6, #06b6d4, #1e40af);
    background-clip: padding-box;
    opacity: 0.4;
    transition: all 0.4s ease;
    z-index: -1;
}

.expert-photo:hover .photo-frame {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.4);
}

.expert-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.expert-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.expert-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00bfff;
    margin-bottom: 1.5rem;
}

.expert-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
}

.expert-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #00bfff;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
    border-top-color: #3b82f6;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 0.9rem;
    color: #6b5b5b;
    font-weight: 500;
}

.expert-certifications h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.expert-certifications ul {
    list-style: none;
    padding: 0;
}

.expert-certifications ul li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.expert-certifications ul li i {
    color: #00bfff;
    font-size: 0.9rem;
}

/* COO Section Styles */
.coo-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.coo-section .expert-badge {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.coo-section .expert-badge span {
    color: white;
}

.coo-section .achievement-number {
    color: #3b82f6;
}

.coo-section .expert-certifications ul li i {
    color: #3b82f6;
}

/* Enhanced Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #00bfff;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.service-header {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.service-icon.google { background: linear-gradient(45deg, #4285f4, #34a853); }
.service-icon.facebook { background: linear-gradient(45deg, #1877f2, #42a5f5); }
.service-icon.instagram { background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045); }
.service-icon.linkedin { background: linear-gradient(45deg, #0077b5, #00a0dc); }
.service-icon.tiktok { background: linear-gradient(45deg, #000000, #ff0050); }
.service-icon.analytics { background: linear-gradient(45deg, #00bfff, #3b82f6); }
.service-icon.conversion { background: linear-gradient(45deg, #06b6d4, #0891b2); }

.service-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #00bfff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
}

/* Crown Badge for Main Platforms */
.crown-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: crownGlow 2s ease-in-out infinite alternate;
    z-index: 10;
}

.crown-badge i {
    font-size: 0.9rem;
    color: #ff6b35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes crownGlow {
    0% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
}

/* Main Platform Styling */
.main-platform {
    border: 2px solid #ffd700;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1);
    transform: scale(1.02);
    position: relative;
}

.main-platform::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.01);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.service-metrics .metric {
    text-align: center;
    flex: 1;
    max-width: 120px;
}

.service-metrics .metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #00bfff;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.service-metrics .metric-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
    gap: 1rem;
}

/* Enhanced Methodology */
.methodology-enhanced {
    padding: 6rem 0;
    background: white;
}

.methodology-timeline {
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00bfff, #3b82f6);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:nth-child(even) {
    flex-direction: row-reverse;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #00bfff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    margin-bottom: 1.5rem;
}

.step-features ul {
    list-style: none;
    padding: 0;
}

.step-features ul li {
    padding: 0.3rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.step-features ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.step-duration i {
    color: #fbbf24;
}

.methodology-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 20px;
}

.methodology-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.methodology-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Enhanced Results Showcase */
.results-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.results-showcase .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.results-showcase .section-subtitle {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Mandala Animation */
.mandala-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    height: 200px;
    position: relative;
}

.mandala {
    position: relative;
    width: 200px;
    height: 200px;
    animation: mandalaRotate 20s linear infinite;
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 191, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.ring-1 {
    width: 60px;
    height: 60px;
    animation: ringRotate 8s linear infinite reverse;
}

.ring-2 {
    width: 100px;
    height: 100px;
    animation: ringRotate 12s linear infinite;
}

.ring-3 {
    width: 140px;
    height: 140px;
    animation: ringRotate 16s linear infinite reverse;
}

.mandala-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.8),
        0 0 30px rgba(0, 191, 255, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ring 1 dots positioning */
.ring-1 .mandala-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.ring-1 .mandala-dot:nth-child(2) { top: 50%; right: -5px; transform: translateY(-50%); }
.ring-1 .mandala-dot:nth-child(3) { bottom: -5px; left: 50%; transform: translateX(-50%); }
.ring-1 .mandala-dot:nth-child(4) { top: 50%; left: -5px; transform: translateY(-50%); }
.ring-1 .mandala-dot:nth-child(5) { top: 15%; right: 15%; }
.ring-1 .mandala-dot:nth-child(6) { bottom: 15%; left: 15%; }

/* Ring 2 dots positioning */
.ring-2 .mandala-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.ring-2 .mandala-dot:nth-child(2) { top: 15%; right: -5px; }
.ring-2 .mandala-dot:nth-child(3) { top: 50%; right: -5px; transform: translateY(-50%); }
.ring-2 .mandala-dot:nth-child(4) { bottom: 15%; right: -5px; }
.ring-2 .mandala-dot:nth-child(5) { bottom: -5px; left: 50%; transform: translateX(-50%); }
.ring-2 .mandala-dot:nth-child(6) { bottom: 15%; left: -5px; }
.ring-2 .mandala-dot:nth-child(7) { top: 50%; left: -5px; transform: translateY(-50%); }
.ring-2 .mandala-dot:nth-child(8) { top: 15%; left: -5px; }

/* Ring 3 dots positioning */
.ring-3 .mandala-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.ring-3 .mandala-dot:nth-child(2) { top: 10%; right: -5px; }
.ring-3 .mandala-dot:nth-child(3) { top: 30%; right: -5px; }
.ring-3 .mandala-dot:nth-child(4) { top: 50%; right: -5px; transform: translateY(-50%); }
.ring-3 .mandala-dot:nth-child(5) { bottom: 30%; right: -5px; }
.ring-3 .mandala-dot:nth-child(6) { bottom: 10%; right: -5px; }
.ring-3 .mandala-dot:nth-child(7) { bottom: -5px; left: 50%; transform: translateX(-50%); }
.ring-3 .mandala-dot:nth-child(8) { bottom: 10%; left: -5px; }
.ring-3 .mandala-dot:nth-child(9) { bottom: 30%; left: -5px; }
.ring-3 .mandala-dot:nth-child(10) { top: 50%; left: -5px; transform: translateY(-50%); }

.mandala-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: centerPulse 3s ease-in-out infinite;
}

.center-icon {
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes mandalaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 20px rgba(0, 191, 255, 0.8),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 30px rgba(0, 191, 255, 1),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    background: rgba(15, 23, 42, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 191, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.5);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 0 20px rgba(0, 191, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.result-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00bfff;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 0 15px rgba(0, 191, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-description {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.results-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.results-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00bfff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.results-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Enhanced Case Studies */
.case-studies-enhanced {
    padding: 6rem 0;
    background: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.case-card.featured {
    border: 2px solid #00bfff;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1rem;
}

.case-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00bfff, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.case-info {
    flex: 1;
}

.case-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.case-industry {
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-badge {
    background: #00bfff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.3);
}

.case-challenge,
.case-solution {
    padding: 0 2rem 1rem;
}

.case-challenge h4,
.case-solution h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.case-challenge p,
.case-solution p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem 1rem;
}

.case-metrics .metric {
    text-align: center;
    flex: 1;
}

.case-metrics .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.case-metrics .metric-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.case-timeline {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

.timeline-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.timeline-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
}

.cases-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cases-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cases-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Responsive Design for Enhanced Components */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .dashboard-mockup {
        max-width: 300px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        gap: 2rem;
    }
    
    .step-card {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Fix case header layout for mobile */
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .case-info {
        width: 100%;
    }
    
    .case-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .case-industry {
        display: inline-block;
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        margin-top: 0.5rem;
    }
    
    .case-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .expert-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .whatsapp-cta {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.5rem;
    }
    
    .whatsapp-cta p {
        font-size: 1rem;
    }
    
    .whatsapp-icon i {
        font-size: 3rem;
    }
    
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .expert-achievements {
        grid-template-columns: 1fr;
        gap: 1rem;

    }
    
    .service-metrics {
        gap: 1rem;
        padding: 0.8rem;
    }
    
    .service-metrics .metric {
        max-width: 100px;
    }
    
    .service-metrics .metric-value {
        font-size: 1.2rem;
    }
    
    .service-metrics .metric-label {
        font-size: 0.7rem;
    }
    
    .mandala-container {
        height: 150px;
        margin: 2rem 0;
    }
    
    .mandala {
        width: 150px;
        height: 150px;
    }
    
    .ring-1 { width: 45px; height: 45px; }
    .ring-2 { width: 75px; height: 75px; }
    .ring-3 { width: 105px; height: 105px; }
    
    .mandala-dot {
        width: 6px;
        height: 6px;
    }
    
    .mandala-center {
        width: 30px;
        height: 30px;
    }
    
    .center-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
}

