/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

   :root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --tertiary-color: #8b5cf6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #0ea5e9;
    --dark: #1f2937;
    --light: #f3f4f6;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border-radius: 0.75rem;
    --transition-duration: 0.3s;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ========================================
   GRADIENT UTILITIES
   ======================================== */

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar-gradient {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.9) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    color: white !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all var(--transition-duration) ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-color);
    transition: width var(--transition-duration) ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-call {
    background: var(--secondary-color);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
}

.btn-call:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-badge .badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
}

.btn-outline-light {
    border: 2px solid white;
    color: var( --primary-color);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-image-section {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.2));
    animation: blob-animation 8s infinite;
}

@keyframes blob-animation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(5deg); }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-card .card-content {
    text-align: center;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.floating-card h6 {
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.floating-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* ========================================
   VALUE SECTION
   ======================================== */

.value-section {
    padding: 5rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all var(--transition-duration) ease;
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    color: white;
}

.value-card h5 {
    margin: 1rem 0 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.hover-lift {
    transition: all var(--transition-duration) ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 5rem 0;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-duration) ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

.large-card {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-icon {
    min-width: 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.service-content h4 {
    margin: 0 0 1rem;
    color: var(--text-dark);
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-features i {
    color: var(--success-color);
    font-weight: bold;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    padding: 5rem 0;
}

.portfolio-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-duration) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #e5e7eb;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-duration) ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h5 {
    margin: 0 0 0.75rem;
    color: var(--text-dark);
}

.portfolio-content p {
    flex-grow: 1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: #f3f4f6;
    color: var(--text-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition-duration) ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h4 {
    margin: 0 0 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-duration) ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    margin: 0 0 0.25rem;
    color: var(--text-dark);
}

.testimonial-author small {
    color: var(--text-muted);
    display: block;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 5rem 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.about-features .feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-features .feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-features h6 {
    margin: 0 0 0.25rem;
    color: var(--text-dark);
}

.about-features small {
    color: var(--text-muted);
    display: block;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 5rem 0;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: var(--primary-color);
}

.accordion-button i {
    margin-right: 0.75rem;
}

.accordion-body {
    color: var(--text-muted);
    padding: 1.5rem;
    line-height: 1.8;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all var(--transition-duration) ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    font-size: 1.75rem;
    transition: transform var(--transition-duration) ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h5 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-duration) ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.form-control,
.form-select {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition-duration) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    color: var(--text-dark);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer-section {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-duration) ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-duration) ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal-content {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* ========================================
   STICKY BUTTONS
   ======================================== */

.sticky-call-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 999;
    transition: all var(--transition-duration) ease;
    animation: pulse 2s infinite;
}

.sticky-call-button a {
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sticky-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(239, 68, 68, 0.8); }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 999;
    transition: all var(--transition-duration) ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button a {
    color: white;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

/* ========================================
   CHATBOT STYLES
   ======================================== */

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    z-index: 1000;
    transition: all var(--transition-duration) ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.6);
}

.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    max-width: 100%;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    display: none;
    flex-direction: column;
    height: 550px;
    z-index: 1001;
    overflow: hidden;
}

.chatbot-widget.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.chatbot-title i {
    font-size: 1.5rem;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-duration) ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f9fafb;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

.message {
    display: flex;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.3s ease;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message p {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin: 0;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message p {
    background: white;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
}

.user-message p {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem 0;
    animation: fadeInUp 0.3s ease;
}

.quick-reply {
    background: white;
    border: 1.5px solid #e5e7eb;
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-duration) ease;
    text-align: center;
    font-weight: 500;
}

.quick-reply:hover {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.call-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.75rem 0;
    animation: fadeInUp 0.3s ease;
}

.btn-call-action {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    border: none;
    color: white !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px;
    font-size: 0.95rem !important;
    cursor: pointer;
    transition: all var(--transition-duration) ease;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.btn-call-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

.typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.typing p {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    animation: bounce 1.4s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.chat-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    animation: fadeInUp 0.3s ease;
}

.chat-contact-form input,
.chat-contact-form select {
    padding: 0.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-duration) ease;
}

.chat-contact-form input:focus,
.chat-contact-form select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    flex-shrink: 0;
}

.chatbot-field {
    flex-grow: 1;
    border: 1.5px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-duration) ease;
}

.chatbot-field:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.chatbot-field::placeholder {
    color: #9ca3af;
}

.chatbot-send {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-duration) ease;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.chatbot-send:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .chatbot-widget {
        width: calc(100% - 40px);
        height: 450px;
        bottom: 90px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .message p {
        max-width: 90%;
        font-size: 0.9rem;
    }

    .chatbot-messages {
        padding: 1rem;
    }

    .chatbot-header {
        padding: 1rem;
    }

    .chatbot-input {
        padding: 0.75rem;
    }
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */

.counter {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .large-card {
        flex-direction: column;
        gap: 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .chatbot-widget {
        width: calc(100% - 40px);
        height: 400px;
    }

    .sticky-call-button {
        width: 50px;
        height: 50px;
        bottom: 90px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

.rounded-3 {
    border-radius: 2rem !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.container-fluid {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.fa-times{
    color: red !important;
}
/* .bg-gradient-primary{
    color: black;
    font-weight: bold;
} */

/* ========================================
   TOASTIFY NOTIFICATIONS
   ======================================== */

.toastify {
    border-radius: 8px !important;
}

.custom-toast {
    border-radius: 8px !important;
}