/* ==================================
   NEW SECTIONS CSS 
   ================================== */
   
/* How It Works Section */
.how-it-works { padding: 6rem 2rem; position: relative; }
.steps-container { display: flex; justify-content: space-between; position: relative; max-width: 1000px; margin: 4rem auto 0; gap: 2rem; }
.steps-line { position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; border-top: 2px dashed rgba(106, 191, 46, 0.3); z-index: 0; }
.steps-line-progress { position: absolute; top: -2px; left: 0; height: 2px; border-top: 2px solid var(--highlight); width: 0%; transition: width 1s ease; box-shadow: 0 0 10px var(--highlight); }
.step-card { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 1rem; }
.step-number-container { width: 80px; height: 80px; background: var(--bg-card); border: 2px solid var(--highlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; box-shadow: 0 0 20px rgba(106, 191, 46, 0.2); transition: all 0.4s ease; }
.step-card:hover .step-number-container { transform: scale(1.1); box-shadow: 0 0 30px rgba(106, 191, 46, 0.4); }
.step-number { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--highlight); }
.step-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.step-card p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 768px) {
    .steps-container { flex-direction: column; align-items: center; }
    .steps-line { display: none; }
    .step-card { width: 100%; max-width: 300px; margin-bottom: 2rem; }
}

/* Industries We Serve Section */
.industries { padding: 6rem 2rem; background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(74, 124, 32, 0.05) 50%, var(--bg-dark) 100%); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.industry-card { background: var(--bg-card); padding: 2rem; border-radius: 16px; border: 1px solid rgba(106, 191, 46, 0.1); display: flex; align-items: center; gap: 1.5rem; transition: all 0.4s ease; }
.industry-card:hover { transform: translateY(-5px); border-color: var(--highlight); box-shadow: 0 10px 30px rgba(106, 191, 46, 0.2); }
.industry-icon { font-size: 2rem; color: var(--highlight); }
.industry-card h3 { font-size: 1.1rem; margin: 0; color: var(--text-white); }

/* Timeline Section */
.timeline-section { padding: 6rem 2rem; }
.timeline-container { position: relative; max-width: 1000px; margin: 4rem auto 0; padding-bottom: 2rem; overflow-x: auto; scrollbar-width: none; }
.timeline-container::-webkit-scrollbar { display: none; }
.timeline-track { display: flex; min-width: 800px; position: relative; padding-top: 20px; }
.timeline-line { position: absolute; top: 35px; left: 0; right: 0; height: 3px; background: rgba(106, 191, 46, 0.2); }
.timeline-progress { position: absolute; top: 0; left: 0; height: 100%; background: var(--highlight); width: 0%; transition: width 1.5s ease-out; box-shadow: 0 0 15px var(--highlight); }
.timeline-item { flex: 1; position: relative; padding: 0 1rem; text-align: center; }
.timeline-node { width: 30px; height: 30px; background: var(--bg-dark); border: 3px solid var(--highlight); border-radius: 50%; margin: 0 auto 1.5rem; position: relative; z-index: 2; transition: all 0.4s; }
.timeline-item:hover .timeline-node { transform: scale(1.3); box-shadow: 0 0 20px var(--highlight); background: var(--highlight); }
.timeline-item h4 { font-size: 1rem; color: var(--highlight); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.85rem; color: var(--text-light-gray); }

/* Testimonials Carousel */
.testimonials { padding: 6rem 2rem; background: var(--bg-dark); text-align: center; overflow: hidden; }
.carousel-container { max-width: 800px; margin: 3rem auto 0; position: relative; min-height: 460px; }
.testimonial-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transform: translateX(50px); transition: all 0.6s ease; pointer-events: none; display: flex; justify-content: center; }
.testimonial-slide.active { opacity: 1; transform: translateX(0); pointer-events: all; }
.quote-mark { font-family: 'Syne', sans-serif; font-size: 4rem; color: var(--highlight); line-height: 1; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.25rem; font-style: italic; color: var(--text-white); margin-bottom: 2rem; line-height: 1.6; }
.client-name { font-weight: 600; color: var(--text-white); }
.client-role { font-size: 0.875rem; color: var(--text-gray); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; position: absolute; bottom: 10px; width: 100%; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(106, 191, 46, 0.3); cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--highlight); box-shadow: 0 0 10px var(--highlight); }

/* Partner Marquee */
.partner-network { padding: 4rem 0; overflow: hidden; background: #0a0a0a; border-top: 1px solid rgba(106, 191, 46, 0.1); border-bottom: 1px solid rgba(106, 191, 46, 0.1); }
.marquee-container { display: flex; width: max-content; animation: scroll-marquee 30s linear infinite; }
.marquee-container:hover { animation-play-state: paused; }
.partner-badge { background: var(--bg-card); border: 1px solid rgba(106, 191, 46, 0.3); padding: 1rem 2rem; border-radius: 50px; margin: 0 1rem; display: flex; align-items: center; gap: 1rem; color: var(--highlight); font-weight: 600; box-shadow: 0 0 20px rgba(106, 191, 46, 0.05); }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Forms Common updates */
.form-banner { background: var(--primary); color: white; padding: 0.5rem 2rem; display: inline-block; border-radius: 4px; font-weight: bold; margin-bottom: 1.5rem; letter-spacing: 2px; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 13, 13, 0.9); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.success-modal { background: var(--bg-card); border: 1px solid var(--highlight); border-radius: 20px; padding: 3rem; text-align: center; max-width: 400px; transform: scale(0.8); transition: transform 0.3s ease; box-shadow: 0 20px 50px rgba(106, 191, 46, 0.2); }
.modal-overlay.active .success-modal { transform: scale(1); }
.check-icon { width: 80px; height: 80px; background: rgba(106, 191, 46, 0.2); color: var(--highlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; }
.success-modal h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.success-modal p { color: var(--text-gray); margin-bottom: 2rem; }

/* Fixed Floating Buttons */
.floating-actions { position: fixed; bottom: 30px; left: 30px; right: 30px; display: flex; justify-content: space-between; z-index: 9999; pointer-events: none; }
.float-btn { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.4); cursor: pointer; transition: all 0.3s ease; pointer-events: auto; position: relative; }
.whatsapp-btn { background: #25D366; animation: whatsapp-pulse 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
.mail-btn { background: var(--primary); }
.mail-btn:hover { transform: scale(1.1); background: var(--highlight); box-shadow: 0 8px 30px rgba(106, 191, 46, 0.6); }
.float-btn svg { width: 35px; height: 35px; fill: white; color: white; }
.float-btn .tooltip { position: absolute; bottom: 85px; background: #333; color: white; padding: 8px 15px; border-radius: 8px; font-size: 14px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.whatsapp-btn .tooltip { right: 0; }
.mail-btn .tooltip { left: 0; }
.float-btn:hover .tooltip { opacity: 1; visibility: visible; bottom: 75px; }
.whatsapp-btn .tooltip::after { content: ''; position: absolute; right: 25px; bottom: -8px; border: 8px solid transparent; border-top-color: #333; }
.mail-btn .tooltip::after { content: ''; position: absolute; left: 25px; bottom: -8px; border: 8px solid transparent; border-top-color: #333; }

/* Filter Tabs (Software Rentals Page) */
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.tab-btn { background: var(--bg-card); border: 1px solid rgba(106, 191, 46, 0.2); color: var(--text-gray); padding: 0.75rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all 0.3s; font-weight: 600; }
.tab-btn:hover, .tab-btn.active { background: var(--highlight); color: var(--text-white); border-color: var(--highlight); }
.catalogue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.software-card { background: var(--bg-card); border: 1px solid rgba(106, 191, 46, 0.1); border-radius: 16px; padding: 2rem; transition: all 0.3s; display: none; }
.software-card.show { display: block; animation: fadeInUp 0.5s ease; }
.software-card:hover { transform: translateY(-5px); border-color: var(--highlight); }
.software-card .price { font-size: 1.5rem; color: var(--highlight); font-weight: bold; margin: 1rem 0; }
.software-card .btn-primary { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* Unified Form Controls */
.form-select { width: 100%; padding: 1rem; background: var(--bg-dark); border: 1px solid rgba(106, 191, 46, 0.2); border-radius: 10px; color: var(--text-white); font-family: inherit; font-size: 1rem; transition: border-color 0.3s ease; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23a0a0a0" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat: no-repeat; background-position: right 1rem center; }
.form-select:focus { outline: none; border-color: var(--highlight); }
.form-select option { background: var(--bg-card); color: var(--text-white); }


/* Testimonial Dark Card */
.dark-card {
    background: #141414;
    border: 1px solid rgba(106, 191, 46, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .carousel-container { min-height: 520px; }
    .dark-card { padding: 2rem 1.5rem; }
    .testimonial-text { font-size: 1rem; margin-bottom: 1.5rem; }
}

@media (max-width: 480px) {
    .carousel-container { min-height: 580px; }
    .quote-mark { font-size: 3rem; margin-bottom: 0.5rem; }
}
