/* assets/css/style.css - UPDATED COLOR SCHEME */
:root {
    --primary: #ff6d11;
    --secondary: #743a88;
    --tertiary: #ff9d5c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2a2a2a;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* WabaCRM Brand Image Animation */
.brand-image-section {
    overflow: hidden;
}

.waba-brand-image {
    max-width: 100%;
    height: auto;
    transition: all 0.6s ease-in-out;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Scroll animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.waba-brand-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-image-section {
        padding: 3rem 0 !important;
    }
    
    .waba-brand-image {
        max-width: 90%;
    }
}

/* Advanced Animation */
.image-animation-container {
    position: relative;
}

.animated-fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Optional: Add a subtle pulse animation after load */
@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.waba-brand-image.loaded {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
        text-align: center;
    }
    
    .hero-section .lead {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .features-section .card {
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1) !important;
    }
    
    .ai-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .ai-feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.3rem;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        padding: 2rem 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .ai-capability-card {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }
    
    .capability-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important;
    }
    
    .capability-icon i {
        font-size: 1.3rem !important;
    }
}

.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-section .display-5 {
        font-size: 2rem !important;
    }
    
    .video-container {
        margin: 0 -15px;
        border-radius: 0;
    }
}

.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-section .display-5 {
        font-size: 2rem !important;
    }
    
    .video-container {
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* AI CRM Section Mobile Fix */
@media (max-width: 768px) {
    .ai-crm-section .ai-feature-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem 1rem !important;
    }
    
    .ai-crm-section .ai-feature-icon {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
    
    .ai-crm-section .ai-feature-content {
        text-align: center !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .ai-crm-section .ai-feature-card {
        padding: 1.25rem 0.75rem !important;
    }
    
    .ai-crm-section .ai-feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .ai-crm-section .ai-feature-icon i {
        font-size: 1.3rem !important;
    }
    
    .ai-crm-section .ai-feature-content h5 {
        font-size: 1.1rem !important;
    }
    
    .ai-crm-section .ai-feature-content p {
        font-size: 0.9rem !important;
    }
}

/* Fix for horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--secondary) !important;
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--tertiary) !important;
    padding-left: 5px;
}

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

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--tertiary) !important;
}

footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Utility Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-slide-in-down {
    animation: slideInDown 0.5s ease-out;
}


.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-section .display-5 {
        font-size: 2rem !important;
    }
    
    .video-container {
        margin: 0 -15px;
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 3rem 0 !important;
    }
    
    .video-section .display-5 {
        font-size: 1.75rem !important;
    }
}

/* CRM Interface Section */
.crm-interface-section {
    background: var(--white);
}

.crm-interface-container {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.crm-interface-image {
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
    max-height: 500px;
    width: auto;
}

.crm-interface-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
}

/* Navbar Styles */
.navbar {
    background: var(--secondary) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.5s ease-out;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 109, 17, 0.3);
}

.btn-success {
    background: var(--primary);
    color: var(--white);
}

.btn-success:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 109, 17, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
}

.btn-light:hover {
    background: var(--tertiary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

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

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin: 0.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-section .card {
    height: 100%;
    border-left: 5px solid var(--primary);
}

.features-section .card i {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Dark Sections */
.bg-dark {
    background: var(--secondary) !important;
    color: var(--white);
}

/* Problem Solution Section */
.problem-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

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

.problem-card i {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Alert Styles */
.alert-info {
    background: linear-gradient(135deg, #fff5f0, var(--white));
    border: 2px solid var(--primary);
    border-radius: 15px;
    color: var(--secondary);
}

/* AI Powered CRM Section */
.ai-crm-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-badge .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--primary) !important;
}

.ai-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.ai-highlight {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

/* AI Feature Cards */
.ai-features-grid {
    padding: 1rem;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.ai-feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.ai-feature-content h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ai-feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Enhanced AI Capabilities Section */
.ai-capability-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ai-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-capability-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ai-capability-card:hover::before {
    opacity: 1;
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.ai-capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 109, 17, 0.3);
}

.capability-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.capability-content {
    text-align: center;
}

.capability-content h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.capability-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.capability-badge {
    background: rgba(255, 109, 17, 0.2);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 109, 17, 0.3);
}

/* WabaCRM Showcase Section */
.wabacrm-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f6ff 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.wabacrm-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.showcase-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    background: var(--primary) !important;
}

.header-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Stats Row */
.stats-row {
    margin: 2rem 0;
}

.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Simple Feature Cards */
.feature-card-simple {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0edff;
    transition: all 0.3s ease;
    position: relative;
    height: 20%;
}

.feature-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 109, 17, 0.15);
    border-color: var(--primary);
}

.featured-highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #ffffff, #fff5f0);
}

.popular-ribbon {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.feature-icon-simple {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-simple i {
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content-simple h5 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.feature-content-simple p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.feature-benefit {
    background: #fff5f0;
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    display: inline-block;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(116, 58, 136, 0.3);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.cta-box h4 {
    position: relative;
    z-index: 2;
}

.cta-box p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-card {
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 109, 17, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular::after {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.card-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
    color: var(--white);
    border: none;
    padding: 2rem 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f6ff;
}

.accordion-button {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px !important;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-2px);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    background: var(--white);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    border-left: 4px solid var(--primary);
    border-radius: 0 0 10px 10px;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 109, 17, 0.5);
    z-index: 1000;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
    color: var(--white);
}

/* Text Colors */
.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--primary) !important;
}

/* Badges */
.badge.bg-success {
    background: var(--primary) !important;
}

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

/* Focus styles for accessibility */
.btn:focus,
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 17, 0.25);
}
/* Installation Steps Styling */
.step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 109, 17, 0.3);
}

.step-title h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.instruction-list {
    margin-bottom: 1.5rem;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.instruction-item i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.instruction-item span {
    line-height: 1.5;
}

/* Security Features */
.security-feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.security-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--success);
}

.security-feature-card i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Note Cards */
.note-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.note-card h5 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive for Installation Page */
@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .instruction-item {
        flex-direction: column;
        text-align: center;
    }
    
    .instruction-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .video-section .display-5 {
        font-size: 2rem !important;
    }
    
    .video-container {
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .video-section .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Lead Capture Section */
.lead-capture-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.lead-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 17, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 109, 17, 0.3);
}

.alert {
    border-radius: 15px;
    border: none;
    padding: 2rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #f8fff8);
    color: #155724;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lead-form-card {
        padding: 2rem 1.5rem;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .lead-form-card::before {
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .lead-form-card {
        padding: 1.5rem 1rem;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 576px) {
    .step-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-section {
        padding: 3rem 0 !important;
    }
    
    .video-section .display-5 {
        font-size: 1.75rem !important;
    }
    
    .video-section .lead {
        font-size: 1rem !important;
    }
}