/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Hero Section - Video Carousel */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}
.hero-video-container {
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: calc(100vh + 115px);
    z-index: 1;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

/* Desktop video - show on desktop, hide on mobile */
.hero-video-desktop {
    display: block;
}

/* Mobile video - hide on desktop, show on mobile */
.hero-video-mobile {
    display: none;
}
.hero-content {
    display: none; /* Hide all text content */
}

/* Static Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    visibility: visible !important;
    opacity: 1 !important;
    padding-bottom: 200px;
}
.hero-text-container {
    text-align: center;
    color: white;
    width: 100%;
    position: relative;
    height: auto;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 5%;
}
.hero-text-static {
    position: relative;
    width: 100%;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Plateia', sans-serif;
    color: white;
    text-align: center;
}
.hero-text-static .hero-text-line {
    font-family: 'Plateia', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 0.3rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
    color: white !important;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: transparent;
        overflow: visible;
    }
    .hero-video-container {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: transparent;
        overflow: visible;
    }
    /* Hide desktop video, show mobile video */
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: fill;
        object-position: center center;
        background: transparent;
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .hero-text-overlay {
        z-index: 1002 !important;
        display: flex !important;
        visibility: visible !important;
    }
    .hero-text-overlay {
        padding-bottom: 200px !important;
    }
    .hero-text-static .hero-text-line {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    .hero-text-container {
        height: auto;
    }
}
@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: transparent;
        overflow: visible;
    }
    .hero-video-container {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: transparent;
        overflow: visible;
    }
    /* Hide desktop video, show mobile video */
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: fill;
        object-position: center center;
        background: transparent;
        margin: 0;
        padding: 0;
    }
    .hero-text-overlay {
        z-index: 1002 !important;
        display: flex !important;
        visibility: visible !important;
    }
    .hero-text-overlay {
        padding-bottom: 200px !important;
    }
    .hero-text-static .hero-text-line {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    .hero-text-container {
        height: auto;
    }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feature-icon {
    font-size: 1.5rem;
    color: #eea234;
}
.feature-text h5 {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}
.feature-text small {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #eea234;
}
.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}
.about-section {
    padding: 30px 0;
    background: #f8f9fa;
}
.partners-section {
    padding: 30px 0;
    background: white;
}
.services-section {
    padding: 30px 0;
}
.testimonials-section {
    padding: 30px 0;
    background: #f8f9fa;
}
.products-section {
    padding: 30px 0;
}
.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}
.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cta-section {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
}

/* Partners Section with Round Logos */
.partners-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(238, 162, 52, 0.3), transparent);
}
/* Interactive Sales Section */
.sales-interactive-container {
    display: flex;
    gap: 15px;
    margin-top: 3rem;
    min-height: 300px;
    align-items: stretch;
}
.sales-button-card {
    flex: 0 0 25%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.sales-button-card:hover {
    flex: 0 0 55%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 10;
}
.sales-button-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}
.sales-button-card:hover .sales-button-inner {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.sales-button-card:hover .sales-button-initial-actions {
    opacity: 0;
    pointer-events: none;
}
.sales-button-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.sales-button-card:hover .sales-button-logo {
    transform: scale(0.9);
}
.sales-button-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.sales-button-label {
    font-family: 'Plateia', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.sales-button-initial-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}
.sales-initial-btn {
    background: #2c3e50;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}
.sales-initial-btn:hover {
    background: #eea234;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 162, 52, 0.3);
    color: white;
    text-decoration: none;
}
.sales-card-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}
.sales-button-card:hover .sales-card-expanded {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}
.sales-card-expanded {
    pointer-events: none;
}
.sales-card-content {
    text-align: center;
}
.sales-expanded-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sales-expanded-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.sales-card-content h3 {
    font-family: 'Plateia', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sales-card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}
.sales-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.sales-action-btn {
    background: #2c3e50;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}
.sales-action-btn:hover {
    background: #eea234;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 162, 52, 0.3);
    color: white;
    text-decoration: none;
}
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 15px;
    }
    .partners-section .display-4 {
        font-size: 2rem;
    }
    .sales-interactive-container {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
        margin-top: 1.5rem;
    }
    .sales-button-card {
        flex: none !important;
        width: 100%;
        min-height: 80px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        overflow: hidden;
    }
    /* Expanded state on mobile */
    .sales-button-card.mobile-expanded {
        min-height: 280px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    /* Disable hover effects on mobile */
    .sales-button-card:hover {
        flex: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: auto;
    }
    .sales-button-card.mobile-expanded:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .sales-button-inner {
        flex-direction: row;
        padding: 15px 20px;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.4s ease;
    }
    /* Hide inner content when expanded */
    .sales-button-card.mobile-expanded .sales-button-inner {
        opacity: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
        pointer-events: none;
    }
    .sales-button-card:hover .sales-button-inner {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .sales-button-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .sales-button-card:hover .sales-button-logo {
        transform: none;
    }
    .sales-button-label {
        font-size: 0.75rem;
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }
    /* Expanded content - hidden by default, shown when expanded */
    .sales-card-expanded {
        position: relative !important;
        display: none;
        opacity: 0;
        visibility: hidden;
        padding: 25px 20px;
        transform: none;
        transition: all 0.4s ease;
    }
    .sales-button-card.mobile-expanded .sales-card-expanded {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }
    .sales-button-card:hover .sales-card-expanded {
        display: none !important;
    }
    .sales-button-card.mobile-expanded:hover .sales-card-expanded {
        display: flex !important;
    }
    /* Expanded content styling for mobile */
    .sales-button-card.mobile-expanded .sales-expanded-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    .sales-button-card.mobile-expanded .sales-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .sales-button-card.mobile-expanded .sales-card-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .sales-button-card.mobile-expanded .sales-card-actions {
        flex-direction: row;
        gap: 10px;
    }
    .sales-button-card.mobile-expanded .sales-action-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.8rem;
        text-align: center;
    }
    /* Add tap indicator arrow */
    .sales-button-inner::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #eea234;
        font-size: 0.8rem;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    .sales-button-card.mobile-expanded .sales-button-inner::after {
        transform: rotate(180deg);
    }
    /* Close button for expanded state */
    .mobile-close-btn {
        display: none;
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.1);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 1.2rem;
        color: #666;
        cursor: pointer;
        z-index: 10;
        align-items: center;
        justify-content: center;
    }
    .sales-button-card.mobile-expanded .mobile-close-btn {
        display: flex;
    }
}
.btn-primary {
    background: #eea234;
    border: none;
}
.btn-primary:hover {
    background: #d4941f;
}
.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}
.testimonials-scroll {
    display: flex !important;
    transition: transform 0.6s ease-in-out;
    gap: 2rem;
    width: max-content;
    flex-wrap: nowrap;
}
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #495057;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.testimonial-stars {
    color: #eea234;
}
@media (max-width: 991px) {
    .testimonial-card {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .testimonial-card {
        width: calc(100vw - 60px) !important;
        min-width: calc(100vw - 60px) !important;
        max-width: calc(100vw - 60px) !important;
        padding: 1.5rem;
    }
    .testimonials-container {
        padding: 10px 0;
        margin: 0 -15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .testimonials-scroll {
        padding: 0 15px;
        gap: 1rem;
    }
    .testimonial-quote {
        font-size: 0.95rem;
    }
}
.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
a .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 6px 20px rgba(238, 162, 52, 0.4);
}
.service-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.service-card .card-body {
    padding: 1.5rem;
}
.service-card .card-title {
    color: #2c3e50;
}
a .service-card .card-title {
    color: #2c3e50;
}
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }

    /* About Section Mobile */
    .about-section {
        padding: 25px 15px;
    }
    .about-section .display-4 {
        font-size: 1.8rem;
        text-align: center;
    }
    .about-section .col-lg-6 {
        text-align: center;
    }
    .about-section p {
        text-align: left;
    }
    .about-section div[style*="width: 80px"] {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 25px 15px;
    }
    .services-section .display-4 {
        font-size: 1.8rem;
    }
    .service-card img {
        height: 150px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 25px 0;
    }
    .testimonials-section h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
}
