:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
    /* Fixed Header Space */
}

.transition-header {
    transition: box-shadow 0.3s ease, border-bottom 0.3s ease;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Parallax Effect */
.parallax-section {
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Card Hover Effects */
.card,
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Custom Utilities */
.object-fit-cover {
    object-fit: cover;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

/* Testimonial Cards */
.testimonial-card {
    min-height: 300px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    overflow-y: auto;
    /* Allow scrolling if text is too long, though design implies fixed */
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-info h5 {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
}

/* Hero H1 Resize */
.hero-title {
    font-size: 2rem;
    /* Mobile default */
}

@media (min-width: 992px) {

    /* LG */
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1200px) {

    /* XL (covers 1280px) */
    .hero-title {
        font-size: 2.5rem;
        /* Reduced size for 1280+ as requested */
    }
}

@media (min-width: 1400px) {

    /* XXL */
    .hero-title {
        font-size: 3rem;
        /* Slightly larger for huge screens but still controlled */
    }
}

/* FAQ Infographic Styles */
.faq-step-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 2rem;
}

.faq-step-container:last-child {
    padding-bottom: 0;
}

.faq-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 2;
    background: linear-gradient(135deg, #6ea8fe 0%, #0d6efd 100%);
    /* Blue gradient */
}

/* Varying colors for steps similar to infographic if desired, currently uniform blue gradient */
.faq-step-circle.step-a,
.faq-step-circle.step-f {
    background: linear-gradient(135deg, #6ea8fe 0%, #3d8bfd 100%);
}

.faq-step-circle.step-b,
.faq-step-circle.step-g {
    background: linear-gradient(135deg, #3d8bfd 0%, #0d6efd 100%);
}

.faq-step-circle.step-c,
.faq-step-circle.step-h {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.faq-step-circle.step-d,
.faq-step-circle.step-i {
    background: linear-gradient(135deg, #0a58ca 0%, #052c65 100%);
}

.faq-step-circle.step-e,
.faq-step-circle.step-j {
    background: linear-gradient(135deg, #052c65 0%, #021a40 100%);
}

.faq-content {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
    width: 100%;
}

.faq-step-container:last-child .faq-content {
    border-bottom: none;
    padding-bottom: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-color) !important;
}

/* Sales Channels Responsiveness */
#sales-channels h5 {
    font-size: 1.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 576px) {
    #sales-channels h5 {
        font-size: 1rem;
    }
}

/* Geometric Background (Buy Product) */
.geometric-bg {
    position: relative;
    min-height: 600px;
    background-color: #ffffff;
    background-image: url('../img/bg-buy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

/* Ensure content is above background */
.geometric-bg>* {
    position: relative;
    z-index: 2;
}

/* Pulse Button Animation */
.pulse-button {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        /* Primary color shadow */
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}