:root {
    --primary-color: #FF4C24;
    --primary-dark: #e63615;
    --primary-light: #ff6b4a;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Arial', sans-serif;
    min-height: 200vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Logo Styles */
.logo-container {
    flex-shrink: 0;
}

.logo {
    max-height: 40px;
    width: auto;
    transition: var(--transition);
}

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

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0 auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover:before {
    width: 100%;
}

.nav-icon {
    font-size: 1.2rem;
}

/* Phone Number Styles */
.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: var(--transition);
}

.phone-number:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.phone-number:hover .phone-icon {
    fill: var(--white);
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Elements */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-phone {
    display: none;
}

/* Scroll Effect */
.navbar.scrolled {
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .logo {
    max-height: 35px;
}

/* Media Queries */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-link:before {
        display: none;
    }

    .nav-link:hover {
        background-color: var(--gray-light);
    }

    .desktop-phone {
        display: none;
    }

    .mobile-phone {
        display: block;
        width: 100%;
    }

    .mobile-phone .phone-number {
        margin: 1rem 2rem;
        justify-content: center;
    }
}

/* Animation Classes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.active li {
    animation: slideIn 0.3s ease forwards;
    animation-delay: calc(0.1s * var(--i));
}



.hero {
    min-height: 100vh;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Content Styles */
.hero-text {
    padding-right: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(255, 76, 36, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: slideIn 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    animation: slideIn 0.8s ease-out;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 76, 36, 0.1);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    animation: slideIn 1s ease-out;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideIn 1.2s ease-out;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 76, 36, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideIn 1.4s ease-out;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Image Section */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.image-wrapper:hover .main-image {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.5s;
}

.card-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Background Shape */
.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape svg {
    width: 100%;
    height: auto;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .float-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .stat-item {
        align-items: center;
    }
}

.how-it-works {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
    position: relative;
    overflow: hidden;
}

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

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 60px 0;
    position: relative;
}

/* Step Item */
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step-item:hover .step-image {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 76, 36, 0.2);
}

.step-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Connector Styles */
.step-connector {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 60px;
}

.connector-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-color) 100%);
    position: relative;
}

.connector-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -3px);
    animation: pulse 2s infinite;
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 76, 36, 0.4);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -3px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -3px) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -3px) scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .step-item {
        flex: 0 0 calc(50% - 40px);
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 5%;
    }

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

    .step-item {
        flex: 0 0 100%;
        max-width: 350px;
        margin-bottom: 40px;
    }

    .step-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }
}

/* Additional Decorative Elements */
.step-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: white;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-item:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.faq-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fff8f6 0%, #fff 100%);
}

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

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    background: rgba(255, 76, 36, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 76, 36, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Category Styles */
.faq-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 1.2rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--primary-color);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 1rem 1.2rem;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer Styles */
.faq-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 76, 36, 0.4);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }

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

    .faq-category {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}























:root {
    --primary-color: #FF4C24;
    --hover-color: #ff6242;
    --transition-speed: 0.3s;
}

.menu-demo {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* QR Code Section */
.qr-wrapper {
    margin: 3rem auto;
    max-width: 300px;
    position: relative;
    transition: transform var(--transition-speed) ease;
}

.qr-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.qr-code {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.qr-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.qr-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 76, 36, 0.2);
}

.qr-link:hover .qr-hover-effect {
    opacity: 1;
}

.qr-link:hover .qr-code {
    transform: scale(1.02);
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.cta-button .icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 76, 36, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-demo {
        padding: 3rem 0;
    }

    .qr-wrapper {
        max-width: 250px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .menu-demo {
        padding: 2rem 0;
    }

    .qr-wrapper {
        max-width: 200px;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85em;
    }
}

/* Animation on scroll (optional) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


































:root {
    --bg-color: #fff;
    --text-color: #1a1a1a;
    --accent-color: #FF4C24;
    --transition: all 0.3s ease;
}

.customer-service {
    background-color: var(--bg-color);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

/* Text Content Styles */
.service-text {
    flex: 1;
    max-width: 600px;
}

.service-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.25rem;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Image Styles */
.service-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.image-wrapper:hover .service-img {
    transform: scale(1.05);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dotted-line {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #2b50aa 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: -1;
}

.star-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 2rem;
    color: var(--accent-color);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .service-content {
        flex-direction: column;
        gap: 3rem;
    }

    .service-text {
        text-align: center;
        max-width: 100%;
    }

    .image-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .customer-service {
        padding: 4rem 0;
    }

    .service-title {
        font-size: 2.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .image-wrapper {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 2rem;
    }

    .image-wrapper {
        max-width: 300px;
    }

    .dotted-line {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }
}






































.video-container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 76, 36, 0.2);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    color: #FF4C24;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

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

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 768px) {
    .video-container {
        padding: 2rem 1rem;
        width: 98%;

    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        padding: 1.5rem 0.5rem;
        width: 98%;

    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}








/* contact-style.css */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-group {
    position: relative;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

textarea ~ label {
    top: 1rem;
    transform: none;
}

input:focus,
textarea:focus {
    border-color: #FF4C24;
    outline: none;
}

input:focus ~ label,
textarea:focus ~ label,
input:not(:placeholder-shown) ~ label,
textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: #FF4C24;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-submit {
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #FF4C24;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: #e63e1a;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    input, textarea {
        font-size: 0.9rem;
    }

    label {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
    }
}







/* price-style.css */
.pricing-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    margin: auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
}

.pricing-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    color: #FF4C24;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-amount {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #7f8c8d;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #2c3e50;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF4C24;
    font-weight: bold;
}

.pricing-action {
    text-align: center;
    margin: 2rem 0;
}

.subscribe-btn {
    background-color: #FF4C24;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #e63e1a;
    transform: scale(1.05);
}

.pricing-notes {
    text-align: center;
    font-size: 0.8rem;
    color: #95a5a6;
}

.pricing-notes p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .pricing-wrapper {
        padding: 1rem;
    }

    .pricing-box {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1.6rem;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }
}





/* footer-style.css */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Arial', sans-serif;
}

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

/* Logo et Description */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-img {
    max-width: 150px;
    height: auto;
}

.brand-description {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #FF4C24;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    color: #FF4C24;
    transform: translateY(-3px);
}

/* Titres des sections */
.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: #FF4C24;
}

/* Listes de liens */
.quick-links,
.services-links {
    list-style: none;
    padding: 0;
}

.quick-links li,
.services-links li {
    margin-bottom: 0.8rem;
}

.quick-links a,
.services-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a:hover,
.services-links a:hover {
    color: #FF4C24;
    padding-left: 5px;
}

/* Section Contact */
.contact-info p {
    color: #b3b3b3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #333;
    background-color: #333;
    color: white;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background-color: #FF4C24;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e63e1a;
}

/* Copyright et liens légaux */
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #b3b3b3;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #FF4C24;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main-footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        padding: 0 1rem;
    }
}






.faq-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fff8f6 0%, #fff 100%);
}

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

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    background: rgba(255, 76, 36, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 76, 36, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Category Styles */
.faq-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 1.2rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--primary-color);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 1rem 1.2rem;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer Styles */
.faq-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 36, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 76, 36, 0.4);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }

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

    .faq-category {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}