* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', Helvetica, sans-serif;
    background-color: #fafbfb;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
.page-wrapper {
    background: #fafbfb;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: var(--header-offset, 100px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    z-index: 1000;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 112px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    direction: rtl;
}

.nav-button {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    font-size: 20px;
    color: #343434;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-button.active {
    background-color: #ff6900;
    color: #ffffff;
}

.nav-button:hover:not(.active) {
    opacity: 0.8;
}

.logo {
    width: 150px;
    height: 34px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #343434;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #ffe8d8;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 938px;
    margin-top: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-icon {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 336px;
    height: 398px;
}

.hero-group {
    position: absolute;
    top: 273px;
    left: 50%;
    transform: translateX(-50%);
    width: 1165px;
    height: 359px;
}

.hero-title {
    position: absolute;
    top: 546px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    font-size: 48px;
    white-space: nowrap;
    direction: rtl;
    text-align: center;
}

.hero-title-main {
    font-weight: 500;
    color: #ffffff;
    font-size: 40px;
}

.hero-title-spacing {
    color: #000000;
    font-size: 40px;
}

.hero-title-brand {
    font-weight: 700;
    color: #ff6900;
}

.hero-description {
    position: absolute;
    top: 627px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    line-height: 30px;
    direction: rtl;
}

.statistics-container {
    position: absolute;
    top: 725px;
    left: 50%;
    transform: translateX(-50%);
    width: 1176px;
    display: flex;
    gap: 44px;
}

.stat-card {
    width: 200px;
    height: 178px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.stat-label {
    font-family: 'Rubik', Helvetica;
    font-weight: 700;
    color: #ff6900;
    font-size: 40px;
    line-height: normal;
    white-space: nowrap;
}

.stat-value {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    padding: 64px 16px;
}

.services-main-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #ff6900;
    font-size: 32px;
    text-align: center;
    
    /* Center all mobile content horizontally */
    .hero-section,
    .services-content,
    .testimonials-content,
    .team-content,
    .contact-content,
    .beauty-content,
    .why-choose-content,
    .features-grid,
    .car-services-section,
    .about-section {
        align-items: center !important;
        text-align: center !important;
    }
    /* Ensure inner text blocks are centered */
    .services-text,
    .testimonials-text,
    .team-text,
    .contact-text,
    .beauty-text,
    .why-choose-text { 
        text-align: center !important; 
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* Center images/cards */
    img,
    .feature-card,
    .service-item,
    .benefit-item,
    .stat-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* Remove side floats in mobile */
    .float-left,
    .float-right { float: none !important; }
    line-height: normal;
    margin-bottom: 48px;
       scrollbar-width: none;
}

.services-content {
    display: flex;
    direction: rtl;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-image {
    flex: 1;
    order: 2;
}

.services-img {
    width: 100%;
    height: auto;
    max-width: 593px;
    margin: 0 auto;
    display: block;
}

.services-text {
    flex: 1;
    order: 1;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: normal;
    margin-bottom: 16px;
    text-align: right;
}

.services-subtitle {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 32px;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 6.8px;
    justify-content: flex-start;
    direction: rtl;
}

.service-item-full {
    grid-column: 1 / -1;
}

.service-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
}

.service-icon {
    width: 29.04px;
    height: 29.04px;
    flex-shrink: 0;
}

.services-choose {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 24px;
    direction: rtl;
}

.choose-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.choose-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #0153a9;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
}

.choose-text-single {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #0153a9;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
}

.choose-underline {
    width: 59px;
    height: 8px;
    background-color: #ff6900;
    border-radius: 50px;
}

.services-button {
    width: 100%;
    max-width: 476px;
    height: 57px;
    background-color: #ff6900;
    border: none;
    border-radius: 20px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.services-button:hover {
    opacity: 0.9;
}

/* Car Services Section */
.car-services-section {
    position: relative;
    width: 100%;
    height: 482px;
}

.car-services-title {
    position: absolute;
    top: 63px;
    left: calc(50% - 470px);
    width: 494px;
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: normal;
    direction: rtl;
    text-align: right;
}

.car-services-subtitle {
    position: absolute;
    top: 106px;
    left: calc(50% - 470px);
    width: 494px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    line-height: normal;
    direction: rtl;
    text-align: right;
}

.car-services-list {
    position: absolute;
    top: 140px;
    left: calc(50% - 470px);
    width: 494px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.car-service-item {
    display: flex;
    align-items: center;
    gap: 6.8px;
    height: 44px;
}

.car-service-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
    margin-top: 6px;
}

.car-service-icon {
    width: 29.04px;
    height: 29.04px;
    margin-top: 7.1px;
}

.car-services-footer {
    position: absolute;
    top: 310px;
    left: calc(50% - 470px);
    width: 494px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #0153a9;
    font-size: 24px;
    line-height: normal;
    direction: rtl;
    text-align: right;
    z-index: 10;
}

.car-services-image {
    position: absolute;
    right: 300px;
    bottom: 107px;
    width: 488px;
    height: 260px;
}

.car-services-button {
    position: absolute;
    top: 388px;
    left: calc(50% - 470px);
    width: 494px;
    height: 57px;
    background-color: #0153a9;
    border: none;
    border-radius: 20px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
    overflow: hidden;
}

.car-services-button:hover {
    opacity: 0.9;
}

/* Beauty Section */
.beauty-section {
    position: relative;
    width: 100%;
    height: 500px;
}

.beauty-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.beauty-image {
    position: absolute;
    left: 450px;
    top: 50%;
    transform: translateY(-50%);
}

.beauty-img {
    width: 411px;
    height: auto;
}

.beauty-text {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    width: 600px;
    direction: rtl;
    text-align: right;
}

.beauty-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    line-height: normal;
    text-align: right;
    margin: 0;
    width: 100%;
}

.beauty-subtitle {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    line-height: normal;
    text-align: right;
    margin: 0;
    width: 100%;
}

.beauty-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.beauty-service-item {
    display: flex;
    align-items: center;
    gap: 6.8px;
    justify-content: flex-start;
    direction: rtl;
}

.beauty-service-item-full {
    grid-column: 1 / -1;
}

.beauty-service-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
}

.beauty-service-icon {
    width: 29.04px;
    height: 29.04px;
    flex-shrink: 0;
}

.beauty-footer {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #0153a9;
    font-size: 24px;
    line-height: normal;
    text-align: right;
    margin-top: 16px;
    width: 100%;
}

.beauty-button {
    width: 100%;
    max-width: 476px;
    height: 57px;
    background-color: #ff6900;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    margin-left: auto;
    display: block;
    position: relative;
    overflow: hidden;
}

.beauty-button:hover {
    opacity: 0.9;
}

/* Features Section */
.features-section {
    width: 100%;
    background-color: #f7f7f7;
    padding: 36px 16px; /* No change here, keeping for context */
}

.features-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    text-align: center;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    width: 228px;
    height: 196px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

.feature-icon {
    height: 90px;
    width: 90px;
    margin-top: 27px;
}

.feature-title {
    height: 20px;
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    font-size: 17px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
    text-align: center;
    padding: 0 16px;
}

.feature-title.orange {
    color: #ff6900;
}

.feature-title.blue {
    color: #0153a9;
}

/* Why Choose Section */
.why-choose-section {
    width: 100%;
    padding: 64px 16px;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.why-choose-images {
    position: relative;
    width: 100%;
    max-width: 593px;
    height: 459px;
    margin-left: auto;
}

.why-choose-main-img {
    position: absolute;
    top: 68px;
    right: 0;
    width: 530px;
    height: 391px;
    max-width: 100%;
}

.why-choose-icon {
    position: absolute;
    top: 0;
    left: 413px;
    width: 120px;
    height: 120px;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    direction: rtl;
}

.why-choose-header {
    position: relative;
    margin-bottom: 48px;
    text-align: right;
    margin-left: auto;
    width: fit-content;
}

.why-choose-ellipse {
    position: absolute;
    top: -30px;
    right: 0;
    width: 74px;
    height: 92px;
}

.why-choose-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    line-height: normal;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    text-align: right;
    padding-right: 35px;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 6.8px;
    justify-content: flex-start;
    direction: rtl;
}

.why-choose-item-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    padding-right: 35px;
}

.why-choose-item-icon {
    width: 29.04px;
    height: 29.04px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    width: 100%;
    padding: 64px 16px;
}

.testimonials-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.testimonials-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    direction: rtl;
}

.testimonials-header {
    display: flex;
    align-items: center;
    gap: -4;
    margin-bottom: 32px;
    direction: rtl;
}

.testimonials-ellipse {
    width: 77px;
    height: 92px;
    flex-shrink: 0;
}

.testimonials-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    text-align: right;
    line-height: normal;
    margin: 0;
}

.testimonials-main {
    max-width: 608px;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 30px;
    line-height: normal;
    text-align: right;
    margin-bottom: 40px;
}

.testimonials-sub {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 20px;
    line-height: normal;
    text-align: right;
    margin-bottom: 32px;
}

.testimonials-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 600px;
    direction: rtl;
    align-self: flex-start;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
    direction: rtl;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.benefit-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #0153a9;
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
}

.testimonials-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.testimonials-main-img {
    position: absolute;
    top: 68px;
    left: 0;
    width: 530px;
    height: 391px;
    max-width: 100%;
}

.testimonials-icon {
    position: absolute;
    top: 0;
    left: 413px;
    width: 180px;
    height: 185px;
}

/* About Section */
.about-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    background-color: #f6f6f6;
}

.about-image {
    height: 471px;
    width: 701px;
    object-fit: cover;
}

.about-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    text-align: center;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

.about-button {
    width: 1109px;
    background-color: #ff6900;
    height: 57px;
    border-radius: 20px;
    border: none;
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.about-button:hover {
    opacity: 0.9;
}

/* Team Section */
.team-section {
    position: relative;
    width: 100%;
    padding: 96px 0;
}

.team-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.team-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.team-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    text-align: right;
    width: 100%;
}

.team-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
    text-align: right;
}

.team-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    direction: rtl;
}

.team-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}

.team-step-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

.team-step-number {
    width: 28px;
    height: 28px;
    background-color: #ff6900;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.team-downloads {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: flex-end;
}
    .download-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        height: 53px;
        padding: 0 16px;
        background-color: #ffffff;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        max-width: 450px;
        text-decoration: none;
        color: inherit;
    }
    .download-button:visited {
        color: inherit;
        text-decoration: none;
    }
    .download-button:hover {
        background-color: #f9fafb;
    }
    .download-text {
        font-family: 'Rubik', Helvetica;
        font-weight: 500;
        color: #2b2b2b;
        font-size: 20px;
        line-height: normal;
        white-space: nowrap;
        direction: rtl;
        text-decoration: none;
    }
    .download-icon {
        width: 32px;
        height: 32px;
    }

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 53px;
    padding: 0 16px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    background-color: #f9fafb;
}

.download-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #2b2b2b;
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

.download-icon {
    width: 32px;
    height: 32px;
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    padding: 96px 0;
}

.contact-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    width: 100%;
}

.contact-title {
    font-family: 'Rubik', Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
    margin-bottom: 48px;
    text-align: right;
}

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 48px;
    direction: rtl;
    width: 100%;
}

.contact-step {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-start;
}

.contact-step-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

.contact-step-number {
    width: 28px;
    height: 28px;
    background-color: #ff6900;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    font-size: 14px;
}

.contact-downloads {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
    max-width: 505px;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
}

/* ============================================
   Responsive Media Queries - Mobile Optimized
   ============================================ */

@media (max-width: 1200px) {
    .header-content { 
        padding: 0 32px; 
    }
    .services-content { 
        padding: 0 48px; 
    }
    .hero-group { 
        width: 90%; 
    }
}

@media (max-width: 992px) {
    .header { 
        height: 80px; 
    }
    .page-wrapper { 
        padding-top: var(--header-offset, 80px); 
    }
    .header-content { 
        padding: 0 24px; 
    }
    .nav-links { 
        gap: 12px; 
    }
    .nav-button { 
        font-size: 18px; 
        padding: 6px 10px; 
    }

    /* Hero adjustments */
    .hero-background { 
        height: 650px; 
    }
    .hero-icon { 
        top: 90px; 
        width: 240px; 
        height: auto; 
    }
    .hero-group { 
        top: 210px; 
        width: 90%; 
        height: auto; 
    }
    .hero-title { 
        top: 460px; 
        font-size: 36px; 
    }
    .hero-title-main, .hero-title-spacing { 
        font-size: 32px; 
    }
    .hero-description { 
        top: 520px; 
        font-size: 18px; 
        line-height: 26px; 
        padding: 0 24px;
    }
    .statistics-container { 
        top: 590px; 
        width: 90%; 
        gap: 20px; 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .stat-card { 
        width: 160px; 
        height: 150px; 
    }

    /* Stack content and images vertically on tablet */
    .services-content { 
        flex-direction: column; 
        padding: 0 24px;
        gap: 32px;
    }
    .services-image { 
        order: 1;
        width: 100%;
    }
    .services-text { 
        order: 2;
        width: 100%;
    }
    .services-img { 
        max-width: 100%; 
    }

    .testimonials-content {
        flex-direction: column;
        gap: 32px;
    }
    .testimonials-image {
        order: 1;
        width: 100%;
        margin-bottom: 24px;
    }
    .testimonials-text {
        order: 2;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .why-choose-content { 
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .why-choose-images { 
        order: 1;
        margin: 0 auto; 
    }
    .why-choose-text {
        order: 2;
        align-items: center;
    }
    .why-choose-header {
        margin: 0 auto;
    }
    .why-choose-list {
        align-items: center;
    }
    .why-choose-item {
        justify-content: center;
    }

    .team-content { 
        flex-direction: column;
        gap: 32px;
    }
    .team-image { 
        order: 1;
        width: 100%;
    }
    .team-text {
        order: 2;
        width: 100%;
    }

    .contact-content { 
        flex-direction: column;
        gap: 32px;
    }
    .contact-image { 
        order: 1;
        width: 100%;
    }
    .contact-text {
        order: 2;
        width: 100%;
    }
}
/* Tablet-only tweaks: target devices between 769px and 992px
   These overrides refine spacing and sizing for tablet screens
   without affecting mobile (<=768px) or desktop (>=993px). */
@media (min-width: 769px) and (max-width: 992px) {
    /* Slightly shorter hero background so content fits better on tablets */
    .hero-background { height: 720px; }

    /* Move/scale hero visuals for tablet */
    .hero-icon {
        top: 70px;
        width: 280px;
        height: auto;
    }
    .hero-group {
        top: 200px;
        width: 88%;
        max-width: 900px;
        height: auto;
    }

    /* Headline and description adjustments */
    .hero-title { top: 440px; font-size: 34px; }
    .hero-title-main, .hero-title-spacing { font-size: 30px; }
    .hero-description { top: 500px; font-size: 18px; line-height: 26px; padding: 0 24px; }

    /* Move statistics up slightly so they appear closer under the hero */
    .statistics-container { top: 620px; width: 92%; gap: 20px; }
    .stat-card { width: 170px; height: 160px; }

    /* Slightly tighten section gaps for tablet */
    .services-content { padding: 0 32px; gap: 28px; }
    .services-img { max-width: 520px; }
    .beauty-img { max-width: 380px; }

    /* Ensure the hero section keeps comfortable bottom spacing on tablets */
    .hero-section { padding-bottom: 24px; }
}

@media (max-width: 768px) {
    /* Hide ellipse icon in Why Choose on mobile */
    .why-choose-ellipse {
        display: none !important;
    }
    .header { 
        height: 70px; 
    }
    .page-wrapper { 
        padding-top: var(--header-offset, 70px); 
    }
    .logo { 
        width: 120px; 
    }
    
    /* Show menu toggle button */
    .menu-toggle {
        display: flex;
    }
    
    /* Hide nav links by default, show as sidebar */
    .nav-links { 
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 280px;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 24px 24px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-button { 
        font-size: 18px; 
        padding: 16px 20px;
        width: 100%;
        text-align: right;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    /* Hero mobile - use flow layout for consistent rendering across devices */
    .hero-section {
        position: relative;
        padding-top: 0;
    }
    /* Center hero content exactly in the middle of the viewport on mobile */
    .hero-section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 16px !important;
        min-height: calc(100vh - var(--header-offset, 70px));
        box-sizing: border-box;
    }
    /* Use the hero image as the section background on mobile */
    .hero-section {
        background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('imgs/Background.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    .hero-background {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 320px;
        display: block;
    }
    .hero-bg-image {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    .hero-overlay {
        position: relative;
        background-color: rgba(0,0,0,0.35);
        width: 100%;
        height: auto;
    }
    /* Hide the separate hero background element on mobile (we use section background instead) */
    .hero-background,
    .hero-bg-image,
    .hero-overlay {
        display: none !important;
    }
    /* Stack hero elements in document flow instead of absolute positioning */
    .hero-icon,
    .hero-group,
    .hero-title,
    .hero-description,
    .statistics-container {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 520px !important;
        text-align: center !important;
        z-index: auto !important;
    }
    .hero-icon { margin-top: -8px; width: 160px; }
    .hero-group { 
        margin-top: -6px;
        max-width: 420px;
    }
    .hero-title { font-size: 20px; margin: 12px auto; line-height: 1.3; }
    .hero-title-main, .hero-title-spacing { font-size: 18px; }
    .hero-description { font-size: 14px; margin-bottom: 12px; padding: 0 16px; }
    .statistics-container {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px 24px;
        box-sizing: border-box;
    }
    /* ensure stats sit below the hero content and not centered with icon/group */
    .statistics-container { margin-top: 8px; }
    .statistics-container::-webkit-scrollbar {
        height: 4px;
    }
    .statistics-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 2px;
    }

    /* Trim extra vertical spaces across mobile */
    section,
    .services-section,
    .car-services-section,
    .beauty-section,
    .features-section,
    .why-choose-section,
    .about-section,
    .team-section,
    .contact-section,
    .footer {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    /* Reduce internal gaps for mobile */
    .services-content,
    .beauty-content,
    .testimonials-content,
    .team-content,
    .contact-content,
    .features-grid,
    .why-choose-list,
    .services-grid,
    .beauty-services-grid {
        gap: 16px !important;
    }
    .footer-content { gap: 16px !important; }
    .footer-description { margin-top: 8px !important; }
    .services-main-title,
    .features-title,
    .why-choose-title,
    .about-title,
    .team-title,
    .contact-title { margin-bottom: 12px !important; }
    .stat-card { 
        height: 110px;
        gap: 12px;
        flex: 0 0 auto;
    }
    /* First row: 2 cards */
    .stat-card:nth-child(-n+2) {
        width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    /* Second row: 3 cards */
    .stat-card:nth-child(n+3) {
        width: calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
    }

    /* All sections: stack images and content vertically */
    .services-content,
    .testimonials-content,
    .team-content,
    .contact-content {
        flex-direction: column;
        padding: 0 20px;
        gap: 32px;
        align-items: center;
        margin: 0;
    }

    .services-image,
    .team-image,
    .contact-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .services-text,
    .team-text,
    .contact-text {
        order: 2;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .services-img,
    .team-img,
    .contact-img {
        max-width: 100%;
        width: 100%;
    }

    .services-grid,
    .services-choose {
        justify-content: center;
    }

    .service-item {
        justify-content: center;
    }

    .team-steps,
    .contact-steps {
        align-items: center;
    }

    .team-step,
    .contact-step {
        justify-content: center;
    }

    .team-downloads,
    .contact-downloads {
        align-items: center;
    }

    /* Testimonials section - image first, then content */
    .testimonials-content {
        flex-direction: column !important;
        gap: 80px !important;
    }
    .testimonials-image {
        order: 1 !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 180px !important;
        position: relative;
        height: 400px;
        flex-shrink: 0;
    }
    .testimonials-main-img {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        height: auto;
    }
    .testimonials-icon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: auto;
        z-index: 5;
    }
    .testimonials-text {
        order: 2 !important;
        width: 100%;
        align-items: center !important;
        text-align: center;
        flex-shrink: 0;
    }
    .testimonials-header {
        justify-content: center;
        margin-bottom: 16px;
        width: 100%;
    }
    .testimonials-main,
    .testimonials-sub {
        text-align: center;
    }
    .testimonials-benefits {
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Sections spacing */
    .services-section,
    .testimonials-section,
    .why-choose-section,
    .team-section,
    .contact-section {
        padding: 40px 20px;
    }

    /* Grids to single column */
    .services-grid { 
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    /* Beauty services: single column centered on mobile */
    .beauty-services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    .beauty-service-item_full,
    .beauty-service-item.full,
    .beauty-service-item.beauty-service-item-full {
        grid-column: 1 / -1;
    }
    
    /* Features section spacing */
    .features-section {
        padding: 40px 20px;
    }

    /* Feature cards */
    .feature-card { 
        width: calc(50% - 12px);
        min-width: 140px;
        margin: 8px;
    }

    /* Car services - full mobile flow */
    .car-services-section {
        height: auto;
        padding: 40px 20px;
        margin: 20px 0;
    }
    .car-services-title,
    .car-services-subtitle,
    .car-services-list,
    .car-services-footer,
    .car-services-button {
        position: static;
        left: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto 16px;
    }
    .car-services-list {
        align-items: center;
    }
    .car-services-image {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 20px auto;
        display: block;
    }

    /* Beauty section - full mobile flow */
    .beauty-section {
        height: auto;
        padding: 40px 20px;
        margin: 20px 0;
    }
    .beauty-image {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .beauty-img {
        max-width: 100%;
        width: 100%;
    }
    .beauty-text {
        position: static;
        right: auto;
        transform: none;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .beauty-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* About section */
    .about-section {
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 24px;
        display: flex;
        flex-direction: column;
    }
    .about-image {
        width: 90%;
        max-width: 450px;
        height: auto;
        order: 1;
    }
    .about-title {
        order: 2;
        margin: 16px 0;
    }
    .about-button {
        order: 3;
        width: 90%;
        max-width: 450px;
    }

    /* Footer single column with proper order */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px;
        padding: 32px 16px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        max-width: 280px;
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .footer-description {
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }
    .footer-contacts {
        align-items: center;
    }
    /* Footer copyright smaller on mobile */
    .footer-copyright {
        font-size: 18px !important;
    }
}

/* Desktop restore for statistics layout */
@media (min-width: 769px) {
    .statistics-container {
        position: absolute;
        top: 725px;
        left: 50%;
        transform: translateX(-50%);
        width: 1176px;
        display: flex;
        gap: 44px;
        overflow: visible;
    }
    .stat-card {
        width: 200px;
        height: 178px;
        flex-shrink: 0;
        gap: 23px;
    }
}

@media (max-width: 480px) {
    .header-content { 
        padding: 0 12px; 
    }
    .nav-button { 
        font-size: 14px; 
        padding: 5px 6px; 
    }

    /* Hero extra compact - adjust positions */
    .hero-background {
        height: 650px;
    }
    .hero-title { 
        top: 340px;
        font-size: 18px;
    }
    .hero-title-main, .hero-title-spacing { 
        font-size: 16px; 
    }
    .hero-description { 
        top: 430px;
        font-size: 13px; 
        line-height: 20px;
    }
    .hero-icon {
        /* Force a smaller icon on very small screens and nudge it up */
        width: 110px !important;
        max-width: 110px !important;
        height: auto !important;
        margin-top: -4px !important;
        display: block !important;
    }
    .hero-group {
        margin-top: 2px !important;
        max-width: 300px !important;
        width: 100% !important;
    }
        .statistics-container {
            top: 500px;
            padding: 0 12px;
            gap: 8px;
        }
    .stat-card { 
        width: 120px;
        min-width: 120px;
        height: 100px;
        gap: 8px;
    }
    .stat-label {
        font-size: 22px;
    }
    .stat-value {
        font-size: 13px;
    }

    /* Feature cards full width */
    .feature-card { 
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Buttons full width */
    .download-button,
    .services-button,
    .car-services-button,
    .beauty-button { 
        max-width: 100%;
        width: 100%;
    }
    .about-button { 
        width: 95%; 
    }

    /* Text adjustments - allow wrapping */
    .service-text,
    .car-service-text,
    .beauty-service-text,
    .benefit-text {
        white-space: normal;
        font-size: 16px;
        text-align: right;
    }
    .choose-text,
    .choose-text-single {
        white-space: normal;
        font-size: 16px;
    }
    .why-choose-item-text,
    .team-step-text,
    .contact-step-text {
        white-space: normal;
        font-size: 16px;
    }

    /* Images fully responsive */
    .car-services-image {
        max-width: 280px;
    }
    .beauty-img {
        max-width: 100%;
    }

    /* Section titles smaller */
    .services-main-title,
    .features-title,
    .why-choose-title,
    .about-title,
    .team-title,
    .contact-title,
    .testimonials-title {
        font-size: 24px;
        white-space: normal;
    }

    .services-title,
    .car-services-title,
    .beauty-title {
        font-size: 18px;
        white-space: normal;
    }
    /* Extra small: even smaller copyright */
    .footer-copyright {
        font-size: 16px !important;
    }
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    direction: rtl;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Final mobile override to ensure footer stacks correctly */
@media (max-width: 768px) {
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 32px 16px !important;
    }
    .footer-column {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }
    .footer-logo {
        max-width: 280px !important;
        width: 90% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    .footer-description,
    .footer-links,
    .footer-contacts {
        text-align: center !important;
        align-items: center !important;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    direction: rtl;
}

.footer-logo {
    width: 322px;
    height: 73px;
}

.footer-description {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    text-align: right;
}

.footer-heading {
    font-family: 'Rubik', Helvetica;
    font-weight: 700;
    color: #ff6900;
    font-size: 20px;
    text-align: right;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-link {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6900;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.footer-contact-text {
    font-family: 'Rubik', Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 18px;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    color: #1e3a8a;
}

.footer-bottom {
    width: 100%;
    background-color: #0153a9;
    padding: 24px 0;
}

.footer-copyright {
    font-family: 'Rubik', Helvetica;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    direction: rtl;
}

.count-up {
    font-weight: 700;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-brand {
    font-weight: 700;
    color: #ffffff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Decorative Shapes */
.decorative-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Logo-based floating motifs */
.logo-shape {
    position: absolute;
    opacity: 0.10;
    background-image: url('imgs/testimonials-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: saturate(0.9);
}

/* Shape 1 - Orange Circle */
.logo-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    right: 6%;
    animation: float-1 22s ease-in-out infinite;
}

/* Shape 2 - Blue Circle */
.logo-2 {
    width: 130px;
    height: 130px;
    top: 58%;
    left: 10%;
    animation: float-2 26s ease-in-out infinite;
}

/* Shape 3 - Orange Square */
.logo-3 {
    width: 100px;
    height: 100px;
    top: 28%;
    left: 75%;
    animation: rotate-float 30s ease-in-out infinite;
}

/* Shape 4 - Blue Triangle */
.logo-4 {
    width: 140px;
    height: 140px;
    top: 70%;
    right: 14%;
    animation: float-1 24s ease-in-out infinite reverse;
}

/* Shape 5 - Orange Circle */
.logo-5 {
    width: 85px;
    height: 85px;
    top: 44%;
    right: 30%;
    animation: float-2 20s ease-in-out infinite;
}

/* Shape 6 - Blue Square */
.logo-6 {
    width: 120px;
    height: 120px;
    top: 14%;
    left: 24%;
    animation: rotate-float 32s ease-in-out infinite reverse;
}

/* Shape 7 - Orange Triangle */
.logo-7 {
    width: 110px;
    height: 110px;
    top: 78%;
    left: 38%;
    animation: float-1 26s ease-in-out infinite;
}

/* Shape 8 - Blue Circle */
.logo-8 {
    width: 160px;
    height: 160px;
    top: 50%;
    right: 60%;
    animation: float-2 28s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 30px) rotate(-8deg);
    }
    66% {
        transform: translate(40px, -20px) rotate(8deg);
    }
}

@keyframes rotate-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(25px, -25px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(30px, 25px) rotate(270deg);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Alternate reveal from left if needed */
[dir="rtl"] .reveal.reveal-left {
    transform: translateX(-40px);
}

[dir="rtl"] .reveal-visible.reveal-left {
    transform: translateX(0);
}

/* Reveal from bottom */
.reveal.reveal-up {
    transform: translateY(40px);
}

.reveal-visible.reveal-up {
    transform: translateY(0);
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

