/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0F172A;
    --accent-color: #3B82F6;
    --text-color: #1E293B;
    --light-text: #64748B;
    --white: #FFFFFF;
    --background: #FFFFFF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 0;
    background-color: var(--background);
    will-change: transform;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
}

.logo {
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Animation pour le menu mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background-color: var(--background);
        transform: translateX(5px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px; /* Same as navbar height */
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    text-align: center;
    will-change: opacity;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
                      url('assets/hero-image.png');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
                      url('assets/2222.jpg');
}

.slide.active {
    opacity: 2;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}

@media (max-width: 768px) {
    .hero-main-image {
        max-width: 90vw;
        margin-bottom: 1rem;
    }
    
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--background);
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: add background or border if desired */
}

.service-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Style spécifique pour l'image IT Consulting */
.service-card:nth-child(4) .service-logo img {
    border-radius: 15px;
}

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

.service-card p {
    color: var(--light-text);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--white);
}

.products .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.products .section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding:  0.5rem;
    justify-content: center;
    align-items: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.13);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    padding: 1.5rem;
}

.product-logo {
    width: auto;
    height: auto;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.product-info {
    text-align: center;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.2rem 0.7rem;
        max-width: 98vw;
    }
    .product-logo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem 0;
        max-width: 98vw;
    }
    .product-logo {
        width: 50px;
        height: 50px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--background);
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    letter-spacing: 0.5px;
}

.submit-button::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: 0.5s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

/* Animation de pulsation pour le bouton */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }
}

.submit-button {
    animation: buttonPulse 2s infinite;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e2e8f0;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .slide h1 {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

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

.service-card,
.stat-item,
.about-text,
.contact-form {
    animation: fadeIn 0.4s ease-out forwards;
    will-change: transform, opacity;
}

/* New Video Slider Section */
.video-slider-section {
    padding: 80px 0;
    background: var(--background);
}

.video-slider-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.new-video-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.main-video-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}

.main-video-container video {
    width: 100%;
    height: 110%;
    object-fit: contain;
    cursor: pointer;
}

/* Style personnalisé pour les contrôles vidéo */
.main-video-container video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    padding: 0 15px;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Ajustement de la position du bouton play overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Masquer le bouton play overlay quand la vidéo est en cours de lecture */
.main-video-container.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Afficher le bouton play overlay au survol quand la vidéo n'est pas en cours de lecture */
.main-video-container:not(.playing):hover .play-button-overlay {
    opacity: 1;
    pointer-events: auto;
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
    color: var(--white);
    z-index: 1;
}

.video-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.nav-arrow:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev-video {
    left: 10px;
}

.nav-arrow.next-video {
    right: 10px;
}

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding: 0 10px;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--accent-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay-thumb {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none; /* Allows clicks to go through to the thumbnail */
}

@media (max-width: 768px) {
    .new-video-slider {
        padding: 0 auto;
    }

    .main-video-container {
        margin-bottom: 0.8rem;
    }

    .play-button-overlay {
        font-size: 3rem;
    }

    .video-caption {
        padding: 1rem;
    }

    .video-caption h3 {
        font-size: 1.1rem;
    }

    .video-caption p {
        font-size: 0.8rem;
    }

    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .nav-arrow.prev-video {
        left: 5px;
    }
    
    .nav-arrow.next-video {
        right: 5px;
    }

    .video-thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 100px;
        height: 66px;
    }

     .play-button-overlay-thumb {
        font-size: 1.2rem;
    }
}

.site-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .site-logo {
        height: 48px;
        max-width: 160px;
    }
}

.products-page {
    padding: 100px 0 60px 0;
    background: var(--background);
}
.products-page h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    align-items: center;
    justify-content: center;
}
.product-modal.active {
    display: flex;
}
.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s;
}
.close-modal {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
}
.modal-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}
.modal-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
}
#buyButton {
    width: 100%;
    margin-top: 1rem;
}

/* Filtres produits */
.products-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.products-filters input,
.products-filters select {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    min-width: 140px;
}
.products-filters input[type="number"] {
    max-width: 120px;
}

/* Cards produits modernes */
.product-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.10);
    padding: 1.5rem 1rem 1.5rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(59,130,246,0.13);
}
.product-card img {
    width: 100%;
    max-width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}
.product-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.product-card .modal-price {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
}
.product-card .badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
}
.product-card .badge.promo {
    background: #ef4444;
}
.product-card .badge.nouveau {
    background: #22c55e;
}
.product-card .badge.stock {
    background: #f59e42;
}
.product-card .view-btn {
    margin-top: auto;
    padding: 0.7rem 1.5rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.product-card .view-btn:hover {
    background: #2563eb;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.pagination button {
    background: var(--white);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.pagination button.active,
.pagination button:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Page produit détaillée */
.product-detail-page {
    padding: 100px 0 60px 0;
    background: var(--background);
}
.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.10);
    padding: 2.5rem 2rem;
}
.product-detail-image {
    flex: 1 1 320px;
    max-width: 380px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
    object-fit: cover;
    width: 100%;
    height: 320px;
}
.product-detail-info {
    flex: 2 1 400px;
}
.product-detail-info h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.product-detail-info .modal-price {
    font-size: 1.5rem;
    margin: 1rem 0;
}
.product-detail-info .buy-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.product-detail-info .buy-btn:hover {
    background: #2563eb;
}
@media (max-width: 900px) {
    .product-detail {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0.5rem;
    }
    .product-detail-image {
        height: 220px;
        max-width: 90vw;
    }
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    max-width: 950px;
}
.carousel-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
}
.carousel-btn:hover {
    background: #2563eb;
}
.carousel-track .product-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 220px;
}
@media (max-width: 900px) {
    .carousel-track {
        max-width: 98vw;
    }
    .carousel-track .product-card {
        min-width: 180px;
        max-width: 180px;
    }
}

/* Logo styles */
.logo a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.site-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Google Translate Styles */
.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: #007bff;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value {
    display: none !important;
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 120px 0 60px 0;
    background-color: #f8f9fa;
}

.product-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.6s ease-out;
}

.product-image-gallery {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-product-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    animation: fadeIn 0.8s ease-in-out;
}

.product-info {
    flex: 1.5;
    padding-left: 20px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    animation: fadeInDown 0.6s ease-out;
}

.product-price {
    margin-bottom: 25px;
    animation: fadeInUp 0.7s ease-out;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #007bff;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
}

.price-tax {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-selector label {
    margin-right: 10px;
    font-weight: 600;
    color: #333;
}

.quantity-selector input[type="number"] {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    -moz-appearance: textfield; /* Firefox */
}

.quantity-selector input[type="number"]::-webkit-outer-spin-button,
.quantity-selector input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 20px;
}

.add-to-cart-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.add-to-cart-btn i {
    margin-right: 8px;
}

.stock-info {
    color: #ffc107;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: fadeIn 1s ease-in-out;
}

.stock-info i {
    color: #ffc107;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-detail-container {
        flex-direction: column;
        align-items: center;
    }

    .product-info {
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price .price-value {
        font-size: 1.8rem;
    }

    .quantity-selector {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 100px 0 40px 0;
    }

    .product-detail-container {
        padding: 15px;
        margin: 0 15px;
    }

    .product-image-gallery {
        padding: 15px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .add-to-cart-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: var(--white);
}

.clients .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.clients .section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.client-card {
    background-color: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    padding: 1.5rem;
}

.client-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-info {
    text-align: center;
}

.client-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.client-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        width: 100px;
        height: 100px;
    }
}

.contact-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    transition: 0.3s;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 50%;
}

.contact-item:hover i {
    background: #007bff;
    color: white;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-item:hover p {
    color: #007bff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.solution-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.solution-section.gray-background {
    background-color: #e9ecef;
}

.solution-section .section-title {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card.light-background {
    background-color: #f8f9fa;
}

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

.card-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon-container {
    width: 80px;
    height: 80px;
    background-color: #ffe0b2; /* Light orange background */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-container i {
    font-size: 3rem;
    color: #ff9800; /* Orange icon color */
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #FF5722; /* Orange border */
    color: #FF5722;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    background-color: #FF5722;
    color: #ffffff;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .solution-section .section-title {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 25px;
    }

    .solution-card h3 {
        font-size: 1.3rem;
    }

    .solution-card p {
        font-size: 0.95rem;
    }
}

.anywhere-hero {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    padding-top: 120px; /* Adjust for fixed navbar */
}

.anywhere-title {
    font-size: 2.8rem;
    color: #1E293B;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.anywhere-content-box {
    background-color: #FF5722; /* Orange background from image */
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1s ease-out;
}

.anywhere-text {
    flex: 2;
    text-align: left;
}

.anywhere-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.anywhere-text p:last-child {
    margin-bottom: 0;
}

.anywhere-text strong {
    font-weight: 700;
}

.anywhere-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anywhere-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .anywhere-title {
        font-size: 2.2rem;
    }

    .anywhere-content-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .anywhere-text {
        flex: none;
        text-align: center;
    }

    .anywhere-image {
        flex: none;
        margin-top: 30px;
    }

    .anywhere-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .anywhere-hero {
        padding: 60px 0;
        padding-top: 100px;
    }

    .anywhere-title {
        font-size: 1.8rem;
    }

    .anywhere-text p {
        font-size: 1rem;
    }
}

.uses-cases-section,
.features-section,
.why-enable-section,
.accops-solutions-section {
    padding: 60px 0;
    text-align: center;
}

.features-section.gray-background,
.accops-solutions-section.gray-background {
    background-color: #f8f9fa;
}

.uses-cases-section .section-title,
.features-section .section-title,
.why-enable-section .section-title,
.accops-solutions-section .section-title {
    font-size: 2.2rem;
    color: #1E293B;
    margin-bottom: 40px;
}

.use-cases-grid,
.features-grid,
.why-enable-grid,
.accops-solutions-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.use-cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.use-case-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.use-case-card i {
    font-size: 3rem;
    color: #007bff; /* Blue color for icons */
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    color: #1E293B;
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: left;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #007bff;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

.why-enable-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-enable-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-enable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-enable-item i {
    font-size: 2.5rem;
    color: #28a745; /* Green color for icons */
    margin-bottom: 15px;
}

.why-enable-item h3 {
    font-size: 1.2rem;
    color: #1E293B;
    margin-bottom: 10px;
}

.why-enable-item p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

.accops-solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start; /* Align items to the start of the grid cell */
}

.accops-solution-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accops-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.accops-solution-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.accops-solution-card h3 {
    font-size: 1.1rem;
    color: #1E293B;
    margin-bottom: 5px;
}

.accops-solution-card p {
    font-size: 0.9rem;
    color: #64748B;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .uses-cases-section .section-title,
    .features-section .section-title,
    .why-enable-section .section-title,
    .accops-solutions-section .section-title {
        font-size: 1.8rem;
    }

    .use-cases-grid,
    .features-grid,
    .why-enable-grid,
    .accops-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Get a Free Demo Button */
.open-demo-button {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-left: 2rem;
    background: linear-gradient(45deg, #007bff, #00bfff);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

.open-demo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0.7;
    pointer-events: none;
    border-radius: 50px;
}

.open-demo-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.open-demo-button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25);
    letter-spacing: 1px;
}

.open-demo-button:hover::before {
    opacity: 1;
}

.open-demo-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.open-demo-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

/* Animation de pulsation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.open-demo-button {
    animation: pulse 2s infinite;
}

/* Media query pour les appareils mobiles */
@media (max-width: 768px) {
    .title-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .open-demo-button {
        margin-left: 0;
        margin-top: 1rem;
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    padding: 20px;
}

/* Modal Content/Box */
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 20px auto;
    padding: 25px;
    width: 95%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
    display: none;
}

.form-group textarea {
    height: 60px;
    resize: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* The Close Button */
.close-button {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #333;
}

/* Form Styles */
.modal-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 90px;
}

.submit-button {
    width: 100%;
    padding: 12px 25px;
    margin-top: 10px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        padding: 20px;
        width: 95%;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input select {
        width: 100%;
    }

    .submit-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.title-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.anywhere-title {
    margin: 0;
    flex: 1;
}

.open-demo-button {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-left: 2rem;
}

@media (max-width: 768px) {
    .title-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .open-demo-button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Shiny Demo Button */
.shiny-demo-btn {
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.18), 0 1.5px 0 #fff inset;
    cursor: pointer;
    margin-left: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    outline: none;
    z-index: 2;
    animation: shinyPulse 2s infinite;
}
.shiny-demo-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0.7;
    pointer-events: none;
    border-radius: 50px;
}
.shiny-demo-btn:hover {
    background: linear-gradient(90deg, #2563EB 0%, #3B82F6 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25);
}
@keyframes shinyPulse {
    0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.25); }
    70% { box-shadow: 0 0 0 18px rgba(59,130,246,0); }
    100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.25); }
}

/* Shiny Demo Popup */
.shiny-demo-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(69, 0.92);
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}
.shiny-demo-popup.active { display: flex; }
.shiny-demo-popup-content {
    background: linear-gradient(135deg, #0a2345 80%, #3B82F6 100%);
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
    position: relative;
    min-width: 320px;
    max-width: 95vw;
    animation: fadeInDown 0.5s;
    color: #fff;
    overflow: visible;
}
.shiny-demo-popup.show .shiny-demo-popup-content {
    animation: fadeInDown 0.5s;
}
.shiny-demo-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}
.shiny-demo-close:hover { color: #e74c3c; }
.shiny-demo-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    outline: none;
}
.shiny-demo-icons {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    margin-top: 0.5rem;
}
.shiny-demo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
}
.shiny-demo-icon:hover {
    transform: scale(1.13) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    background: #fff;
}
.shiny-demo-icon svg {
    display: block;
}
.shiny-demo-edit-note {
    color: #b3c6e0;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
    .shiny-demo-popup-content {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        min-width: 90vw;
    }
    .shiny-demo-title { font-size: 1.1rem; }
    .shiny-demo-icons { gap: 1.1rem; }
} 