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

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #131313;
    color: #F3F3F4;
    line-height: 1.6;
}

/* Header Section */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.3s ease;
}

.header.scrolled {
    top: 30px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    border: none;
    transition: padding 0.3s ease;
}

.header.scrolled .header-container {
    padding: 18px 20px;
    border: 1px solid #303030;
    border-radius: 15px;
    background: #131313;
    max-width: 1180px;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo-image {
    height: 40px;
    width: fit-content;
    display: block;
}

.logo-subtitle {
    height: 18px;
    font-family: 'Kodchasan', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
    color: #F3F3F4;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 10px;
    gap: 10px;
    height: 38px;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #F3F3F4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.menu-item:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex: 1;
}

/* Mobile Menu Button */
/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 2em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
    fill: none;
    stroke: #F3F3F4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: -80%;
    width: 80%;
    height: calc(100vh - 70px);
    background: #131313;
    border-left: 1px solid #303030;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 15px;
}

.mobile-menu-item {
    color: #F3F3F4;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #303030;
    background: #1C1C1C;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-item:hover {
    background: #272727;
    border-color: #404040;
}

.mobile-menu-item.btn-primary {
    background: #FF6B35;
    border-color: #FF6B35;
    color: #FFFFFF;
}

.mobile-menu-item.btn-primary:hover {
    background: #FF8555;
    border-color: #FF8555;
}

.desktop-only {
    display: flex;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px;
    gap: 10px;
    width: 80px;
    height: 50px;
    border: 1px solid #303030;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    padding-left: 10px;
}

.lang-btn:hover {
    border-color: #535353;
}

.current-lang-flag {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.expand-icon {
    width: 24px;
    height: 24px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.lang-btn.active .expand-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #272727;
    border: 1px solid #303030;
    border-radius: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: #F3F3F4;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: #303030;
}

.lang-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.lang-option:first-child {
    border-radius: 10px 10px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 10px 10px;
}

/* Buttons */
.btn-primary {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    gap: 10px;
    height: 50px;
    width: auto;
    background: #F3F3F4;
    border: 1px solid #C3CDD8;
    border-radius: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #141414;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #E4E4E4;
    border-color: #A3B3C8;
}

.btn-secondary {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    gap: 10px;
    height: 50px;
    width: auto;
    border: 1px solid #303030;
    border-radius: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #F3F3F4;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.btn-secondary span,
.btn-primary span,
.btn-outline span {
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #535353;
    background: rgba(48, 48, 48, 0.3);
}

.btn-outline {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    gap: 10px;
    height: 50px;
    width: auto;
    border: 1px solid #303030;
    border-radius: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #F3F3F4;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: #535353;
    background: rgba(48, 48, 48, 0.3);
}

/* Hero Section */
.hero {
    width: 100%;
    background: #131313;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 530px;
    flex: 1;
}

.tag {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 7px 15px;
    gap: 10px;
    height: 32px;
    border: 1px solid #303030;
    border-radius: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: #F3F3F4;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.hero-title {
    width: 100%;
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    margin: 0;
}

.hero-title .highlight-orange {
    color: #FF9A00;
}

.hero-title .highlight-white {
    color: #F3F3F4;
}

.hero-description {
    width: 100%;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #E4E4E4;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.hero-right {
    width: 530px;
    height: 430px;
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    border-bottom: 1px solid #303030;
}

/* Services Section */
.services {
    width: 100%;
    background: #171717;
    padding: 60px 0;
}

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

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.services-title {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.services-slider-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.services-slider {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-width: 0;
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    border: 1px solid #303030;
    border-radius: 10px;
    background: #171717;
    transition: transform 0.2s ease;
}

.service-card-image {
    box-sizing: border-box;
    width: 100%;
    height: 210px;
    min-height: 210px;
    background: #F3F3F4;
    border-bottom: 1px solid #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 20px;
    flex: 1;
    width: 100%;
    min-height: 145px;
}

.service-card-title {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    width: 100%;
}

.service-card-description {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #BFBFBF;
    margin: 0;
    text-align: center;
    width: 100%;
}

.services-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.services-nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.services-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin: 0;
}

.slider-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: #1C1C1C;
    border: 1px solid #303030;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.slider-btn:hover {
    background: #272727;
    border-color: #404040;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: #323232;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #FFFFFF;
}

.slider-dot:hover {
    background: #666;
}

/* Projects Section */
.projects {
    width: 100%;
    background: #171717;
    padding: 60px 0;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.projects-title {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.projects-slider-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.projects-slider {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-width: 0;
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    border: 1px solid #303030;
    border-radius: 10px;
    background: #171717;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.project-card-image {
    box-sizing: border-box;
    width: 100%;
    height: 300px;
    min-height: 300px;
    background: #F3F3F4;
    border-bottom: 1px solid #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    flex: 1;
    width: 100%;
    min-height: 180px;
}

.project-card-title {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
    width: 100%;
}

.project-card-description {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #BFBFBF;
    margin: 0;
    text-align: left;
    width: 100%;
}

.project-link {
    font-family: 'Blinker', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #ff9a00;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.project-link:hover {
    opacity: 0.8;
}

.project-card-button {
    margin-top: auto;
}

.projects-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.projects-nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.projects-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin: 0;
}

/* Footer Section */
.footer {
    width: 100%;
    background: #171717;
    border-top: 1px solid rgba(83, 83, 83, 0.29);
    padding: 60px 0 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-description {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #E4E4E4;
    margin-top: 10px;
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #F3F3F4;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    color: #E4E4E4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #FF9A00;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(83, 83, 83, 0.29);
    text-align: center;
}

.footer-copyright {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .header-container,
    .hero-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .header-container,
    .hero-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 18px 20px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
    }

    .header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .services-slider {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
        flex-direction: row !important;
    }
    
    .hero-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Show mobile menu button, hide desktop menu */
    .hamburger {
        display: block;
        border: solid 1px #303030;
        padding: 7px;
        height: 50px;
        width: 50px;
        border-radius: 10px;
    }
    

    .desktop-only {
        display: none !important;
    }

    .mobile-menu {
        display: block;
    }

    .header-left {
        gap: 20px;
        flex-direction: row !important;
    }

    .header-right {
        gap: 15px;
    }

    /* Hero mobile layout - image top, content bottom */
    .hero-container {
        flex-direction: column-reverse !important;
        padding-bottom: 40px;
    }

    .hero-left {
        width: 100% !important;
    }

    .hero-right {
        width: 100% !important;
        margin-bottom: 30px;
    }

    /* Sections padding */
    .services,
    .projects {
        padding: 0;
    }
    
    /* Mobile slider - 1 card at a time, full width, no gap */
    .services-slider,
    .projects-slider {
        gap: 0 !important;
    }
    
    .service-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .project-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .services-container,
    .projects-container {
        padding: 25px !important;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
        min-height: 355px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .service-card-description {
        font-size: 13px;
        line-height: 16px;
    }
    
    .services-navigation {
        flex-direction: row;
        gap: 20px;
    }
    
    .services-nav-buttons {
        order: 1;
    }
    
    .services-dots {
        order: 2;
    }
    
    .project-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .projects-navigation {
        flex-direction: row;
        gap: 20px;
    }
    
    .projects-nav-buttons {
        order: 1;
    }
    
    .projects-dots {
        order: 2;
    }
    
    /* Button sizes for mobile */
    .slider-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 15px 20px;
    }

    .logo-image {
        height: 45px;
    }

    .logo-subtitle {
        font-size: 10px;
    }
    .header.scrolled {
        top: 15px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .header {
        width: auto    }
        
    .menu-item {
        font-size: 16px;
        padding: 0 8px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        font-size: 16px;
        padding: 6px 15px;
        height: 50px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 30px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .services-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .service-card-image {
        height: 150px;
    }
    
    .service-card-content {
        padding: 15px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .slider-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] body,
body.rtl {
    direction: rtl;
}

[dir="rtl"] .header-container,
body.rtl .header-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-left,
body.rtl .header-left {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-right,
body.rtl .header-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu,
body.rtl .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-container,
body.rtl .hero-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-buttons,
body.rtl .cta-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-content,
body.rtl .footer-content {
    direction: rtl;
}

[dir="rtl"] .lang-dropdown,
body.rtl .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .hero-title,
body.rtl .hero-title {
    text-align: right;
}

[dir="rtl"] .hero-description,
body.rtl .hero-description {
    text-align: right;
}

[dir="rtl"] .footer-links,
body.rtl .footer-links {
    text-align: right;
}
