/*
Theme Name: Vocal Persia
Theme URI: 
Author: 
Author URI: 
Description: قالب خام برای سایت وکال پرشیا
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vocalpersia
*/

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

html {
    background-color: #000000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ایجاد 4 خط عمودی باریک از بالا تا پایین در بکگراند */
.vertical-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.vertical-lines .line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
}

.vertical-lines .line-1 {
    left: 20%;
}

.vertical-lines .line-2 {
    left: 40%;
}

.vertical-lines .line-3 {
    left: 60%;
}

.vertical-lines .line-4 {
    left: 80%;
}

/* ========================================
   Header Styles (BEM Methodology)
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.header.header--scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.header__logo {
    flex: 0 0 auto;
}

.header__logo-link {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

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

.header__logo-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.header__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
}

.header__center-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: opacity 0.3s ease;
}

.header__menu-toggle:hover {
    opacity: 0.7;
}

.header__menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
    position: relative;
}

.header__menu-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__menu-line--top {
    width: 100%;
}

.header__menu-line--middle {
    width: 100%;
}

.header__menu-line--bottom {
    width: 80%;
    align-self: flex-end;
}

/* Menu Styles */
.header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.header__menu--active {
    right: 0;
}

.header__menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header__menu-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    z-index: 3001;
    overflow: hidden;
}

.header__menu-header {
    padding: 50px 50px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-shrink: 0;
}

.header__menu-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.header__menu-close:hover {
    opacity: 0.6;
}

.header__menu-close-text {
    color: #ffffff;
    letter-spacing: 0.5px;
}

.header__menu-close-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    stroke-width: 1.5;
}

.header__menu-body {
    flex: 1;
    padding: 60px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 0;
    max-height: calc(100vh - 100px);
    gap: 0;
    box-sizing: border-box;
}

    .header__menu-nav {
        flex-shrink: 0;
        margin-bottom: 0;
        align-self: flex-start;
        width: 100%;
    }

    /* Ensure footer is visible in mobile */
    @media (max-width: 768px) {
        .header__menu-body {
            padding-bottom: 30px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .header__menu-body::-webkit-scrollbar {
            display: none;
        }

        .header__menu-body {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .header__menu-footer {
            margin-bottom: 0;
            padding-bottom: 10px;
        }
    }

.header__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
}

.header__menu-item {
    margin: 0;
}

.header__menu-link {
    display: block;
    padding: 12px 0;
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
    width: 100%;
}

.header__menu-link:hover {
    opacity: 0.5;
}

.header__menu-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 40px 0 35px;
    flex-shrink: 0;
}

.header__menu-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    flex-shrink: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    max-width: 100%;
    align-self: flex-start;
    width: 100%;
}

.header__menu-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.header__menu-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header__menu-contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    margin-bottom: 2px;
}

.header__menu-contact-link,
.header__menu-contact-text {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 1.5;
    font-weight: 300;
}

.header__menu-contact-link:hover {
    opacity: 0.6;
}

.header__menu-social-link {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
    padding: 2px 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.header__menu-social-link:hover {
    opacity: 0.6;
}

/* Blur Overlay - Only covers content behind menu, not the menu itself */
.header__blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 400px);
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.header__blur-overlay--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* On mobile, disable blur overlay completely */
@media (max-width: 768px) {
    .header__blur-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .header__menu {
        z-index: 3000;
    }

    .header__menu-content {
        z-index: 3001;
        position: relative;
    }

    /* Disable all blur effects in mobile */
    body.menu-open .vertical-lines,
    body.menu-open .main-content,
    body.menu-open .footer {
        filter: none !important;
        -webkit-filter: none !important;
        pointer-events: auto !important;
    }

    body.menu-open .header__menu-content,
    body.menu-open .header__menu-content * {
        filter: none !important;
        -webkit-filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Body blur when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Blur only the content behind menu, not the menu itself */
body.menu-open .vertical-lines,
body.menu-open .main-content,
body.menu-open .footer {
    filter: blur(4px);
    transition: filter 0.4s ease;
    pointer-events: none;
}

/* Ensure menu is not blurred */
body.menu-open .header__menu {
    filter: none !important;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

/* ========================================
   Responsive Header - Advanced & Complete
   ======================================== */

/* Tablet Landscape (992px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .header__container {
        padding: 0 30px;
    }

    .header__logo-text {
        font-size: 17px;
    }

    .header__center-text {
        font-size: 12px;
        letter-spacing: 1.8px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .header {
        padding: 18px 0;
    }

    .header__container {
        padding: 0 25px;
    }

    .header__logo-text {
        font-size: 16px;
    }

    .header__center-text {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .header__menu-toggle {
        padding: 6px;
    }

    .main-content {
        margin-top: 75px;
    }
}

/* Mobile Landscape / Large Mobile (576px - 768px) */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header__container {
        padding: 0 20px;
        justify-content: space-between;
    }

    /* Hide center text in mobile */
    .header__center {
        display: none;
    }

    /* Toggle on left, Logo on right in mobile */
    .header__menu-toggle {
        order: 1;
        flex: 0 0 auto;
    }

    .header__logo {
        order: 2;
        flex: 0 0 auto;
    }

    .header__logo-text {
        font-size: 16px;
        letter-spacing: 0.3px;
    }

    .header__menu-toggle {
        padding: 6px;
    }

    .header__menu-icon {
        width: 22px;
        height: 16px;
        gap: 4px;
    }

    .header__menu-line {
        height: 1.5px;
    }

    .header__menu {
        max-width: 100%;
    }

    .header__menu-header {
        padding: 40px 30px 0;
    }

    .header__menu-body {
        padding: 50px 30px 35px;
        max-height: calc(100vh - 85px);
        justify-content: flex-start;
        gap: 0;
        box-sizing: border-box;
    }

    .header__menu-link {
        font-size: 32px;
        padding: 10px 0;
        letter-spacing: -0.8px;
    }

    .header__menu-divider {
        margin: 40px 0 30px;
    }

    .header__menu-footer {
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
        padding-bottom: 0;
    }

    .header__menu-footer-col {
        gap: 16px;
        width: 100%;
    }

    .header__menu-contact-item {
        gap: 5px;
        width: 100%;
    }

    .header__menu-contact-link,
    .header__menu-contact-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .main-content {
        margin-top: 70px;
    }
}

/* Mobile Portrait (481px - 575px) */
@media (max-width: 575px) and (min-width: 481px) {
    .header {
        padding: 14px 0;
    }

    .header__container {
        padding: 0 18px;
    }

    .header__logo-text {
        font-size: 15px;
        letter-spacing: 0.2px;
    }

    .header__menu-toggle {
        padding: 5px;
    }

    .header__menu-icon {
        width: 20px;
        height: 15px;
    }

    .header__menu-header {
        padding: 35px 25px 0;
    }

    .header__menu-body {
        padding: 45px 25px 30px;
        max-height: calc(100vh - 75px);
        justify-content: flex-start;
        gap: 0;
    }

    .header__menu-link {
        font-size: 28px;
        padding: 9px 0;
        letter-spacing: -0.7px;
    }

    .header__menu-divider {
        margin: 30px 0 25px;
    }

    .header__menu-footer {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        padding-bottom: 0;
        margin-top: 0;
    }

    .header__menu-footer-col {
        gap: 14px;
        width: 100%;
    }

    .header__menu-contact-item {
        gap: 4px;
    }

    .main-content {
        margin-top: 68px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .header__container {
        padding: 0 15px;
    }

    .header__logo-text {
        font-size: 14px;
        letter-spacing: 0.1px;
    }

    .header__menu-toggle {
        padding: 4px;
    }

    .header__menu-icon {
        width: 20px;
        height: 14px;
        gap: 3.5px;
    }

    .header__menu-line {
        height: 1.5px;
    }

    .header__menu-header {
        padding: 35px 25px 0;
    }

    .header__menu-body {
        padding: 40px 25px 25px;
        max-height: calc(100vh - 70px);
        justify-content: flex-start;
        gap: 0;
    }

    .header__menu-link {
        font-size: 26px;
        padding: 8px 0;
        letter-spacing: -0.6px;
    }

    .header__menu-divider {
        margin: 28px 0 22px;
    }

    .header__menu-footer {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        padding-bottom: 0;
        margin-top: 0;
    }

    .header__menu-footer-col {
        gap: 12px;
        width: 100%;
    }

    .header__menu-contact-item {
        gap: 4px;
        width: 100%;
    }

    .header__menu-contact-label {
        font-size: 10px;
    }

    .header__menu-contact-link,
    .header__menu-contact-text,
    .header__menu-social-link {
        font-size: 12px;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }

    .main-content {
        margin-top: 64px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .header {
        padding: 10px 0;
    }

    .header__container {
        padding: 0 12px;
    }

    .header__logo-text {
        font-size: 13px;
    }

    .header__menu-icon {
        width: 18px;
        height: 13px;
    }

    .header__menu-header {
        padding: 30px 20px 0;
    }

    .header__menu-body {
        padding: 35px 20px 20px;
        max-height: calc(100vh - 65px);
    }

    .header__menu-link {
        font-size: 24px;
        padding: 7px 0;
    }

    .header__menu-divider {
        margin: 25px 0 20px;
    }

    .header__menu-footer {
        gap: 22px;
    }

    .header__menu-footer-col {
        gap: 11px;
    }

    .header__menu-contact-label {
        font-size: 9px;
    }

    .header__menu-contact-link,
    .header__menu-contact-text,
    .header__menu-social-link {
        font-size: 11px;
    }

    .main-content {
        margin-top: 60px;
    }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        padding: 12px 0;
    }

    .header__container {
        padding: 0 20px;
    }

    .main-content {
        margin-top: 64px;
    }
}

/* ========================================
   Footer Styles (BEM Methodology)
   ======================================== */

.footer {
    margin: 15px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.footer__container {
    padding: 60px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

/* Scroll Animation Styles */
.footer__column--fade-in,
.footer__social--fade-in,
.footer__bottom--fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__column--fade-in.footer__animated,
.footer__social--fade-in.footer__animated,
.footer__bottom--fade-in.footer__animated {
    opacity: 1;
    transform: translateY(0);
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 2px;
}

.footer__text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link-item {
    margin-bottom: 12px;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer__link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
    padding-left: 12px;
}

.footer__link:hover::before {
    opacity: 1;
    left: 0;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s ease;
}

.footer__contact-item:hover {
    transform: translateX(4px);
}

.footer__contact-icon {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.footer__contact-item:hover .footer__contact-icon {
    color: rgba(255, 255, 255, 0.9);
}

.footer__contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.footer__contact-link:hover {
    color: #ffffff;
}

.footer__contact-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex: 1;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer__social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

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

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer__social-icon {
    position: relative;
    z-index: 1;
}

.footer__social-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.footer__social-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    flex-wrap: wrap;
    min-height: 50px;
}

.footer__status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer__status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer__status-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.footer__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.footer__copyright {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.footer__copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    word-break: break-word;
    hyphens: auto;
}

/* Better wrapping for long copyright text */
@media (max-width: 1200px) {
    .footer__bottom {
        align-items: flex-start;
    }

    .footer__copyright {
        text-align: left;
    }
}

/* Medium breakpoint for better transition */
@media (max-width: 900px) and (min-width: 641px) {
    .footer__bottom {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
    }

    .footer__status-badge {
        margin-right: auto;
    }

    .footer__copyright {
        text-align: left;
        width: 100%;
        margin-top: 4px;
    }
}

/* ========================================
   Responsive Styles - Advanced & Complete
   ======================================== */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .footer__container {
        max-width: 1600px;
        padding: 80px 60px 50px;
    }

    .footer__content {
        gap: 70px;
    }

    .footer__title {
        font-size: 20px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .footer__container {
        padding: 70px 50px 45px;
    }

    .footer__content {
        gap: 60px;
    }
}

/* Tablet Landscape / Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .footer__container {
        padding: 60px 40px 40px;
    }

    .footer__content {
        gap: 50px;
    }

    .footer__title {
        font-size: 17px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .footer {
        margin: 15px 12px;
    }

    .footer__container {
        padding: 50px 35px 35px;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer__title {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .footer__title::after {
        width: 35px;
    }

    .footer__text {
        font-size: 13.5px;
    }

    .footer__link {
        font-size: 13.5px;
    }

    .footer__contact-item {
        font-size: 13.5px;
    }

    .footer__social {
        gap: 18px;
        margin-bottom: 35px;
    }

    .footer__social-link {
        width: 46px;
        height: 46px;
    }

    .footer__bottom {
        gap: 20px;
        padding-top: 28px;
    }

    .footer__status-badge {
        padding: 9px 18px;
        font-size: 12.5px;
    }

    .footer__status-text {
        font-size: 12.5px;
    }

    .footer__copyright {
        text-align: left;
    }

    .footer__copyright-text {
        font-size: 12.5px;
    }
}

/* Mobile Landscape / Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .footer {
        margin: 15px 10px;
        border-radius: 18px;
    }

    .footer__container {
        padding: 45px 30px 30px;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 50px;
    }

    .footer__column {
        min-height: auto;
    }

    .footer__title {
        font-size: 16px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .footer__title::after {
        width: 30px;
    }

    .footer__text {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer__link {
        font-size: 13px;
        padding: 4px 0;
    }

    .footer__link-item {
        margin-bottom: 10px;
    }

    .footer__contact {
        gap: 14px;
    }

    .footer__contact-item {
        font-size: 13px;
        gap: 10px;
    }

    .footer__contact-icon {
        width: 16px;
        height: 16px;
    }

    .footer__social {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 35px;
        padding-top: 25px;
    }

    .footer__social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .footer__social-icon {
        width: 18px;
        height: 18px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding-top: 25px;
        text-align: center;
    }

    .footer__status-badge {
        padding: 9px 18px;
        font-size: 12px;
        border-radius: 20px;
        width: fit-content;
        order: 1;
        align-self: center;
    }

    .footer__status-text {
        font-size: 12px;
    }

    .footer__status-dot {
        width: 7px;
        height: 7px;
    }

    .footer__copyright {
        text-align: center;
        width: 100%;
        min-width: 0;
        order: 2;
    }

    .footer__copyright-text {
        font-size: 12px;
        line-height: 1.6;
        word-break: break-word;
    }
}

/* General Mobile Styles - Ensure vertical layout for all mobile */
@media (max-width: 767px) {
    .footer__bottom {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px;
        text-align: center;
    }

    .footer__status-badge {
        order: 1;
        width: fit-content;
        align-self: center;
    }

    .footer__copyright {
        order: 2;
        text-align: center !important;
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* Mobile Portrait / Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .footer {
        margin: 12px 8px;
        border-radius: 16px;
    }

    .footer__container {
        padding: 35px 20px 25px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer__column {
        width: 100%;
    }

    .footer__title {
        font-size: 15px;
        margin-bottom: 16px;
        padding-bottom: 8px;
        letter-spacing: 0.3px;
    }

    .footer__title::after {
        width: 25px;
        height: 1.5px;
    }

    .footer__text {
        font-size: 12.5px;
        line-height: 1.75;
    }

    .footer__links {
        margin-top: 4px;
    }

    .footer__link {
        font-size: 12.5px;
        padding: 6px 0;
        display: block;
    }

    .footer__link::before {
        width: 3px;
        height: 3px;
        left: -10px;
    }

    .footer__link:hover {
        padding-left: 10px;
    }

    .footer__link-item {
        margin-bottom: 8px;
    }

    .footer__contact {
        gap: 12px;
    }

    .footer__contact-item {
        font-size: 12.5px;
        gap: 10px;
        align-items: center;
    }

    .footer__contact-icon {
        width: 15px;
        height: 15px;
        margin-top: 0;
    }

    .footer__contact-link {
        font-size: 12.5px;
        word-break: break-word;
    }

    .footer__contact-text {
        font-size: 12.5px;
        line-height: 1.6;
        word-break: break-word;
    }

    .footer__social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .footer__social-link {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        touch-action: manipulation;
    }

    .footer__social-link:active {
        transform: translateY(-2px) scale(0.95);
    }

    .footer__social-icon {
        width: 17px;
        height: 17px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding-top: 20px;
        text-align: center;
    }

    .footer__status-badge {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 18px;
        align-self: center;
        width: fit-content;
        max-width: 100%;
    }

    .footer__status-text {
        font-size: 11px;
        letter-spacing: 0.2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer__status-dot {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
    }

    .footer__copyright {
        text-align: center;
        width: 100%;
        min-width: 0;
    }

    .footer__copyright-text {
        font-size: 11px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.45);
        word-break: break-word;
        hyphens: auto;
    }

    /* Animation adjustments for mobile */
    .footer__column--fade-in,
    .footer__social--fade-in,
    .footer__bottom--fade-in {
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .footer {
        margin: 10px 6px;
        border-radius: 14px;
    }

    .footer__container {
        padding: 30px 16px 20px;
    }

    .footer__content {
        gap: 28px;
        margin-bottom: 35px;
    }

    .footer__title {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer__text {
        font-size: 12px;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__contact-item {
        font-size: 12px;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    .footer__bottom {
        gap: 12px;
        padding-top: 18px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer__status-badge {
        padding: 7px 14px;
        font-size: 10px;
        border-radius: 16px;
        gap: 8px;
        align-self: center;
    }

    .footer__status-text {
        font-size: 10px;
        letter-spacing: 0.1px;
    }

    .footer__status-dot {
        width: 5px;
        height: 5px;
    }

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

    .footer__copyright-text {
        font-size: 10px;
        line-height: 1.65;
    }
}

/* Landscape Orientation Adjustments */
@media (max-width: 991px) and (orientation: landscape) {
    .footer__container {
        padding: 35px 30px 30px;
    }

    .footer__content {
        gap: 30px;
    }

    .footer__social {
        margin-bottom: 30px;
    }

    /* در موبایل landscape هم به صورت عمودی و وسط‌چین */
    @media (max-width: 767px) {
        .footer__bottom {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            text-align: center;
        }

        .footer__status-badge {
            align-self: center;
        }

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

/* Print Styles */
@media print {
    .footer {
        margin: 0;
        border-radius: 0;
        background: #ffffff;
        color: #000000;
    }

    .footer__status-badge,
    .footer__social {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero__container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 120px);
    min-height: 600px;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Arrows */
.hero__nav {
    position: absolute;
    left: 0;
    top: 20%;
    transform: translateY(0);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #000000;
    border-radius: 0 12px 12px 0;
    padding: 8px 4px;
}

.hero__nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
}

.hero__nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero__nav-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.hero__nav-btn--prev i {
    transform: rotate(0deg);
}

.hero__nav-btn--next i {
    transform: rotate(0deg);
}

/* Slider */
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__slide--active {
    z-index: 1;
}

.hero__slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform, opacity, filter;
}

.hero__slide-media--image {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__slide-media--image img,
.hero__slide-media--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__slide-media--default {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%,
        rgba(249, 115, 22, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero__abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        linear-gradient(225deg, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: abstractMove 20s ease-in-out infinite;
}

@keyframes abstractMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5%, -5%) scale(1.1);
    }
}

/* Content Overlay */
.hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    pointer-events: none;
}

/* Services List (Top Left) */
.hero__services {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 20px;
    pointer-events: auto;
}

.hero__service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    will-change: transform, opacity;
}

.hero__service-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__service-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.hero__service-item:hover::after {
    width: 30px;
}

.hero__service-item--active {
    color: #ffffff;
    font-weight: 500;
}

.hero__service-item--active::after {
    width: 40px;
    background: #ffffff;
}

.hero__service-arrow {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-5px);
}

.hero__service-item--active .hero__service-arrow {
    opacity: 1;
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.8);
}

.hero__service-item:hover .hero__service-arrow {
    opacity: 0.7;
    transform: translateX(0);
}

.hero__service-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Bottom Row: Heading and Watch Button Container */
.hero__bottom-row {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    pointer-events: auto;
    width: 100%;
}

/* Main Heading (Right) */
.hero__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 30px;
    direction: ltr;
}

.hero__heading-text {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
    letter-spacing: -1px;
    text-align: left;
    direction: ltr;
}

.hero__heading-line {
    display: block;
    direction: ltr;
    will-change: transform, opacity, clip-path;
    overflow: hidden;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    will-change: transform, opacity;
}

.hero__button--talk {
    background: #ffffff;
    color: #000000;
    direction: ltr;
}

.hero__button--talk:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero__button-dot {
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
    direction: ltr;
}

.hero__button--watch {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__button--watch:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.hero__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.hero__button-icon i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.hero__button-text {
    display: block;
    direction: ltr;
}

/* Watch Video Button (Left) */
.hero__button--watch {
    align-self: flex-end;
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero__heading-text {
        font-size: 42px;
    }

    .hero__container {
        height: calc(100vh - 100px);
    }

    .hero__content {
        padding: 35px 45px;
    }
}

@media (max-width: 992px) {
    .hero__content {
        padding: 30px 35px;
    }

    .hero__heading-text {
        font-size: 36px;
    }

    .hero__service-item {
        font-size: 18px;
        padding: 6px 0;
    }

    .hero__nav {
        top: 15%;
        padding: 6px 3px;
    }

    .hero__nav-btn {
        padding: 10px 6px;
    }

    .hero__nav-btn i {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 15px;
        min-height: calc(100vh - 70px);
    }

    .hero__container {
        height: calc(100vh - 90px);
        min-height: 500px;
        border-radius: 15px;
    }

    .hero__content {
        padding: 25px 20px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        gap: 0;
    }

    /* Hide services, watch button, and nav in mobile */
    .hero__services {
        display: none !important;
    }

    .hero__button--watch {
        display: none !important;
    }

    .hero__nav {
        display: none !important;
    }

    .hero__bottom-row {
        grid-column: 1;
        grid-row: 2;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 20px;
        width: 100%;
    }

    .hero__heading {
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-end;
        direction: ltr;
        width: 100%;
    }

    .hero__heading-text {
        font-size: 32px;
        text-align: left;
        direction: ltr;
        line-height: 1.2;
    }

    .hero__heading-line {
        display: block;
    }

    .hero__button--talk {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10px;
        min-height: calc(100vh - 60px);
    }

    .hero__container {
        height: calc(100vh - 80px);
        min-height: 450px;
        border-radius: 12px;
    }

    .hero__content {
        padding: 20px 15px;
        grid-template-rows: 1fr auto;
    }

    /* Hide services, watch button, and nav in mobile */
    .hero__services {
        display: none !important;
    }

    .hero__button--watch {
        display: none !important;
    }

    .hero__nav {
        display: none !important;
    }

    .hero__bottom-row {
        gap: 18px;
    }

    .hero__heading {
        gap: 18px;
    }

    .hero__heading-text {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero__button {
        padding: 10px 18px;
        font-size: 13px;
        gap: 10px;
    }

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

    .hero__button-icon i {
        width: 14px;
        height: 14px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero__container {
        height: calc(100vh - 80px);
        min-height: 500px;
    }

    .hero__content {
        padding: 25px 30px;
    }

    .hero__heading-text {
        font-size: 38px;
    }

    .hero__nav {
        top: 18%;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero__container {
        height: calc(100vh - 60px);
        min-height: 400px;
    }

    .hero__content {
        padding: 20px 15px;
        grid-template-rows: 1fr auto;
    }

    /* Hide services, watch button, and nav in mobile landscape */
    .hero__services {
        display: none !important;
    }

    .hero__button--watch {
        display: none !important;
    }

    .hero__nav {
        display: none !important;
    }

    .hero__heading-text {
        font-size: 28px;
    }

    .hero__bottom-row {
        gap: 15px;
    }

    .hero__heading {
        gap: 15px;
    }
}

/* ========================================
   About Section
   ======================================== */

.about {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: transparent;
    z-index: 1;
    overflow: hidden;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    direction: ltr;
    align-items: center;
    text-align: center;
}

.about__badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    padding: 8px 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    background: rgba(255, 107, 53, 0.05);
    display: inline-block;
    margin-bottom: 10px;
    direction: ltr;
    transition: all 0.3s ease;
}

.about__badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.about__heading {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    direction: ltr;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    max-width: 900px;
}

.about__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.about__heading.animate-underline::before {
    width: 100%;
}

.about__heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(255, 107, 53, 0.2);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.about__heading-highlight {
    color: #ff6b35;
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
}

.about__heading-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__heading:hover .about__heading-highlight::after,
.about__heading-highlight:hover::after {
    transform: scaleX(1);
}

.about__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    max-width: 900px;
    direction: ltr;
    text-align: center;
}

.about__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    direction: ltr;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.about__feature-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 16px 20px 16px 50px;
    direction: ltr;
    text-align: left;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
}

.about__feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #ff8c5a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about__feature-item::after {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
    color: #ffffff;
}

.about__feature-item:hover::before {
    opacity: 1;
}

.about__feature-item:hover::after {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.about__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
    direction: ltr;
    justify-content: center;
    align-items: center;
}

.about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.about__button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.about__button:hover::before {
    left: 100%;
}

.about__button:hover::after {
    width: 300px;
    height: 300px;
}

.about__button:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2), 0 0 20px rgba(255, 107, 53, 0.1);
}

.about__button:active {
    transform: translateY(-2px) scale(0.98);
}

.about__button-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    z-index: 1;
    display: inline-block;
    direction: ltr;
    text-align: center;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.about__button:hover .about__button-text {
    color: #ffffff;
}

.about__button-highlight {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
}

.about__button:hover .about__button-highlight {
    text-decoration-color: rgba(255, 107, 53, 1);
    text-decoration-thickness: 2px;
}

/* Responsive Design */
/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .about__container {
        max-width: 1400px;
    }

    .about__heading {
        font-size: 32px;
    }

    .about__description {
        font-size: 19px;
        max-width: 1000px;
    }

    .about__features {
        max-width: 900px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .about__container {
        max-width: 1200px;
    }
}

/* Tablet Large (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .about {
        padding: 90px 30px;
    }

    .about__container {
        max-width: 1000px;
    }

    .about__content {
        gap: 35px;
    }

    .about__heading {
        font-size: 26px;
        padding-bottom: 10px;
        max-width: 850px;
    }

    .about__badge {
        font-size: 13px;
        padding: 7px 18px;
        letter-spacing: 1.8px;
    }

    .about__description {
        font-size: 17px;
        line-height: 1.65;
        max-width: 850px;
    }

    .about__features {
        max-width: 750px;
    }

    .about__feature-item {
        font-size: 17px;
        padding: 15px 20px 15px 48px;
    }

    .about__buttons {
        gap: 18px;
    }

    .about__button {
        padding: 15px 30px;
        min-width: 180px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .about {
        padding: 70px 25px;
    }

    .about__container {
        max-width: 900px;
    }

    .about__content {
        gap: 32px;
    }

    .about__heading {
        font-size: 24px;
        padding-bottom: 10px;
        max-width: 800px;
    }

    .about__badge {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .about__heading::before {
        height: 2.5px;
    }

    .about__description {
        font-size: 16px;
        line-height: 1.65;
        max-width: 750px;
    }

    .about__features {
        max-width: 700px;
    }

    .about__feature-item {
        font-size: 16px;
        padding: 14px 18px 14px 45px;
    }

    .about__feature-item::after {
        left: 16px;
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .about__buttons {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about__button {
        padding: 14px 28px;
        min-width: 160px;
        flex: 0 1 calc(50% - 7px);
    }

    .about__button-text {
        font-size: 15px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .about {
        padding: 60px 20px;
    }

    .about__container {
        max-width: 100%;
    }

    .about__content {
        gap: 30px;
    }

    .about__heading {
        font-size: 22px;
        line-height: 1.35;
        padding-bottom: 10px;
        max-width: 100%;
    }

    .about__badge {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .about__heading::before {
        height: 2px;
    }

    .about__description {
        font-size: 16px;
        line-height: 1.65;
        max-width: 100%;
    }

    .about__features {
        max-width: 100%;
        gap: 10px;
    }

    .about__feature-item {
        font-size: 15px;
        padding: 13px 16px 13px 42px;
    }

    .about__feature-item::after {
        left: 15px;
        width: 17px;
        height: 17px;
        font-size: 11px;
    }

    .about__buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .about__button {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        min-width: auto;
    }

    .about__button-text {
        font-size: 15px;
    }
}

/* Mobile (480px - 575px) */
@media (max-width: 575px) and (min-width: 481px) {
    .about {
        padding: 50px 18px;
    }

    .about__content {
        gap: 28px;
    }

    .about__heading {
        font-size: 20px;
        line-height: 1.3;
        padding-bottom: 8px;
    }

    .about__badge {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1.2px;
    }

    .about__heading::before {
        height: 2px;
    }

    .about__description {
        font-size: 15px;
        line-height: 1.6;
    }

    .about__features {
        gap: 10px;
    }

    .about__feature-item {
        font-size: 15px;
        padding: 12px 15px 12px 40px;
    }

    .about__feature-item::after {
        left: 14px;
        width: 16px;
        height: 16px;
        font-size: 11px;
    }

    .about__buttons {
        gap: 10px;
    }

    .about__button {
        padding: 12px 24px;
    }

    .about__button-text {
        font-size: 14px;
    }
}

/* ========================================
   Services Section
   ======================================== */

.services {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: transparent;
    z-index: 1;
    overflow: hidden;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.services__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    opacity: 0;
    transform: translateY(50px);
    direction: ltr;
}

.services__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    direction: ltr;
}

.services__badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    padding: 8px 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    background: rgba(255, 107, 53, 0.05);
    display: inline-block;
    margin-bottom: 10px;
    direction: ltr;
    transition: all 0.3s ease;
}

.services__badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.services__heading {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    direction: ltr;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    max-width: 900px;
}

.services__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.services__heading.animate-underline::before {
    width: 100%;
}

.services__heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(255, 107, 53, 0.2);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.services__item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    direction: ltr;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #ff8c5a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services__item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services__item:hover::before {
    opacity: 1;
}

.services__item:hover::after {
    opacity: 1;
}

.services__item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__item-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.services__item:hover .services__item-icon {
    color: #ff8c5a;
    transform: scale(1.1) rotate(5deg);
}

.services__item-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #ff6b35;
    margin: 0 0 12px 0;
    direction: ltr;
    text-align: center;
    transition: color 0.3s ease;
}

.services__item:hover .services__item-title {
    color: #ff8c5a;
}

.services__item-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    direction: ltr;
    text-align: center;
    transition: color 0.3s ease;
}

.services__item:hover .services__item-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services {
        padding: 80px 20px;
    }

    .services__content {
        gap: 40px;
    }

    .services__grid {
        gap: 20px;
    }

    .services__heading {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .services__badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .services__item {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .services__item-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .services__item-icon i {
        width: 30px;
        height: 30px;
    }

    .services__item-title {
        font-size: 18px;
    }

    .services__item-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 15px;
    }

    .services__content {
        gap: 35px;
    }

    .services__heading {
        font-size: 24px;
        line-height: 1.3;
        padding-bottom: 10px;
    }

    .services__badge {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .services__heading::before {
        height: 2px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services__item {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .services__item-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .services__item-icon i {
        width: 28px;
        height: 28px;
    }

    .services__item-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .services__item-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 15px;
    }

    .services__content {
        gap: 30px;
    }

    .services__header {
        gap: 15px;
    }

    .services__heading {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .services__badge {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }

    .services__heading::before {
        height: 2px;
    }

    .services__grid {
        gap: 16px;
    }

    .services__item {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .services__item-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .services__item-icon i {
        width: 24px;
        height: 24px;
    }

    .services__item-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .services__item-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .about {
        padding: 40px 15px;
    }

    .about__content {
        gap: 25px;
    }

    .about__heading {
        font-size: 18px;
        line-height: 1.3;
        padding-bottom: 8px;
        letter-spacing: -0.3px;
    }

    .about__badge {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 1px;
    }

    .about__heading::before {
        height: 2px;
    }

    .about__description {
        font-size: 14px;
        line-height: 1.6;
    }

    .about__features {
        gap: 8px;
    }

    .about__feature-item {
        font-size: 14px;
        padding: 11px 14px 11px 38px;
        border-radius: 6px;
    }

    .about__feature-item::after {
        left: 13px;
        width: 15px;
        height: 15px;
        font-size: 10px;
    }

    .about__buttons {
        gap: 10px;
    }

    .about__button {
        padding: 11px 20px;
        border-radius: 40px;
    }

    .about__button-text {
        font-size: 13px;
        letter-spacing: 0.2px;
    }
}

/* Landscape Orientation */
@media (max-width: 991px) and (orientation: landscape) {
    .about {
        padding: 50px 20px;
    }

    .about__content {
        gap: 25px;
    }

    .about__heading {
        font-size: 22px;
    }

    .about__description {
        font-size: 15px;
    }

    .about__features {
        gap: 8px;
    }

    .about__feature-item {
        padding: 10px 16px 10px 40px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .about {
        padding: 30px 20px;
        page-break-inside: avoid;
    }

    .about__badge,
    .about__buttons {
        display: none;
    }

    .about__heading {
        color: #000000;
        font-size: 24px;
    }

    .about__description,
    .about__feature-item {
        color: #000000;
    }
}

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: transparent;
    z-index: 1;
    overflow: hidden;
}

.portfolio__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.portfolio__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
}

.portfolio__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.portfolio__badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    direction: ltr;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    will-change: transform, background, border-color;
}

.portfolio__badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.portfolio__heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.8px;
    direction: ltr;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    max-width: 900px;
    will-change: transform, opacity;
}

.portfolio__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.portfolio__heading.animate-underline::before {
    width: 100%;
}

.portfolio__heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(255, 107, 53, 0.2);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.portfolio__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
}

.portfolio__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.05));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.portfolio__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.portfolio__item:hover::before {
    opacity: 0;
}

.portfolio__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.portfolio__item-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 90, 0.02));
    z-index: 0;
}

.portfolio__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
    filter: brightness(0.95) contrast(1.05);
    display: block;
}

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

.portfolio__item-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.portfolio__item:hover .portfolio__item-gradient {
    opacity: 1;
}

.portfolio__item-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    pointer-events: none;
    cursor: pointer;
    direction: ltr;
    will-change: transform, opacity;
}

.portfolio__item:hover .portfolio__item-button {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.portfolio__item-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.portfolio__item-button-text {
    display: block;
    direction: ltr;
}

.portfolio__button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    direction: ltr;
}

.portfolio__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.portfolio__button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.portfolio__button:hover::before {
    left: 100%;
}

.portfolio__button:hover::after {
    width: 300px;
    height: 300px;
}

.portfolio__button:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2), 0 0 20px rgba(255, 107, 53, 0.1);
}

.portfolio__button:active {
    transform: translateY(-2px) scale(0.98);
}

.portfolio__button-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    z-index: 1;
    display: inline-block;
    direction: ltr;
    text-align: center;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.portfolio__button:hover .portfolio__button-text {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .portfolio {
        padding: 80px 20px;
    }

    .portfolio__content {
        gap: 40px;
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio__heading {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .portfolio__badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .portfolio__button-wrapper {
        margin-top: 40px;
    }

    .portfolio__button {
        padding: 14px 36px;
        min-width: 160px;
    }

    .portfolio__button-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 60px 15px;
    }

    .portfolio__content {
        gap: 35px;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio__heading {
        font-size: 24px;
        line-height: 1.3;
        padding-bottom: 10px;
    }

    .portfolio__badge {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .portfolio__heading::before {
        height: 2px;
    }

    .portfolio__item-icon {
        width: 40px;
        height: 40px;
    }

    .portfolio__item-icon i {
        width: 20px;
        height: 20px;
    }

    .portfolio__button-wrapper {
        margin-top: 35px;
    }

    .portfolio__button {
        padding: 12px 32px;
        min-width: 150px;
    }

    .portfolio__button-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 50px 15px;
    }

    .portfolio__content {
        gap: 30px;
    }

    .portfolio__header {
        gap: 15px;
    }

    .portfolio__heading {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .portfolio__badge {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }

    .portfolio__heading::before {
        height: 2px;
    }

    .portfolio__grid {
        gap: 16px;
    }

    .portfolio__button-wrapper {
        margin-top: 30px;
    }

    .portfolio__button {
        padding: 12px 28px;
        min-width: 140px;
    }

    .portfolio__button-text {
        font-size: 13px;
    }
}

/* Portfolio All Page Styles */
.portfolio-all-page {
    min-height: 100vh;
}

.portfolio-all {
    padding: 120px 40px;
    min-height: 100vh;
    background: transparent;
}

.portfolio-all__container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.portfolio-all__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.portfolio-all__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.portfolio-all__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 107, 53, 0.9);
    text-transform: uppercase;
    direction: ltr;
}

.portfolio-all__heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    direction: ltr;
    text-align: center;
}

.portfolio-all__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.8), transparent);
    border-radius: 2px;
}

.portfolio-all__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.portfolio-all__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.portfolio-all__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 90, 0.02));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.portfolio-all__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-all__item:hover::before {
    opacity: 0;
}

.portfolio-all__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.portfolio-all__item-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 90, 0.02));
    z-index: 0;
}

.portfolio-all__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
    filter: brightness(0.95) contrast(1.05);
    display: block;
}

.portfolio-all__item:hover .portfolio-all__item-image {
    transform: scale(1.05);
}

.portfolio-all__item-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.portfolio-all__item:hover .portfolio-all__item-gradient {
    opacity: 1;
}

.portfolio-all__item-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    pointer-events: none;
    cursor: pointer;
    direction: ltr;
    will-change: transform, opacity;
}

.portfolio-all__item:hover .portfolio-all__item-button {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.portfolio-all__item-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.portfolio-all__item-button-text {
    display: block;
    direction: ltr;
}

.portfolio-all__empty {
    text-align: center;
    padding: 60px 20px;
}

.portfolio-all__empty-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    direction: ltr;
}

/* Responsive Design for Portfolio All Page */
@media (max-width: 992px) {
    .portfolio-all {
        padding: 100px 30px;
    }

    .portfolio-all__content {
        gap: 50px;
    }

    .portfolio-all__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .portfolio-all__heading {
        font-size: 36px;
    }

    .portfolio-all__badge {
        font-size: 13px;
        padding: 7px 18px;
    }
}

@media (max-width: 768px) {
    .portfolio-all {
        padding: 80px 20px;
    }

    .portfolio-all__content {
        gap: 40px;
    }

    .portfolio-all__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-all__heading {
        font-size: 28px;
        padding-bottom: 12px;
    }

    .portfolio-all__badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-all {
        padding: 60px 15px;
    }

    .portfolio-all__content {
        gap: 30px;
    }

    .portfolio-all__heading {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .portfolio-all__badge {
        font-size: 11px;
        padding: 5px 14px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    background: transparent;
    position: relative;
    direction: ltr;
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.contact__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.contact__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 107, 53, 0.9);
    text-transform: uppercase;
    direction: ltr;
}

.contact__heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    direction: ltr;
    text-align: center;
}

.contact__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.8), transparent);
    border-radius: 2px;
}

.contact__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    margin-top: 20px;
    max-width: 700px;
    direction: ltr;
    text-align: center;
}

.contact__form-wrapper {
    width: 100%;
    max-width: 800px;
}

.contact__form-message {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    direction: ltr;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

.contact__form-message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.contact__form-message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    direction: ltr;
    text-align: left;
}

.contact__form-input,
.contact__form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
    direction: ltr;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact__form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact__form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.contact__form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    direction: ltr;
    will-change: transform;
}

.contact__form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.contact__form-submit:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.contact__form-submit:active {
    transform: translateY(0);
}

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

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact {
        padding: 100px 30px;
    }

    .contact__content {
        gap: 50px;
    }

    .contact__heading {
        font-size: 36px;
    }

    .contact__badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .contact__subtitle {
        font-size: 17px;
        margin-top: 18px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 20px;
    }

    .contact__content {
        gap: 40px;
    }

    .contact__heading {
        font-size: 28px;
        padding-bottom: 12px;
    }

    .contact__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .contact__subtitle {
        font-size: 16px;
        margin-top: 16px;
    }

    .contact__form {
        gap: 20px;
    }

    .contact__form-submit {
        padding: 14px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 15px;
    }

    .contact__content {
        gap: 30px;
    }

    .contact__heading {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .contact__badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .contact__subtitle {
        font-size: 15px;
        margin-top: 14px;
    }

    .contact__form-input,
    .contact__form-textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .contact__form-submit {
        padding: 12px 36px;
        font-size: 14px;
    }
}

/* Trust Section */
.trust {
    padding: 60px 40px;
    background: transparent;
    position: relative;
    direction: ltr;
    overflow: hidden;
}

.trust__container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.trust__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.trust__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    direction: ltr;
}

.trust__badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    direction: ltr;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    will-change: transform, background, border-color;
}

.trust__badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.trust__heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    direction: ltr;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    max-width: 900px;
}

.trust__heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.trust__heading.animate-underline::before {
    width: 100%;
}

.trust__heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(255, 107, 53, 0.2);
}

.trust__track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    margin: 20px 0;
}

.trust__track-wrapper::before,
.trust__track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust__track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.trust__track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.trust__track {
    display: flex;
    align-items: center;
    gap: 80px;
    will-change: transform;
    width: fit-content;
    padding: 0 20px;
}

.trust__logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 90px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust__logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.05));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.trust__logo-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.trust__logo-item:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.trust__logo-item:hover::before {
    opacity: 1;
}

.trust__logo-item:hover::after {
    width: 200px;
    height: 200px;
}

.trust__logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.trust__logo-item:hover .trust__logo-image {
    filter: grayscale(0%) brightness(1);
}

.trust__logo-svg,
.trust__logo-simple-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.trust__logo-svg svg,
.trust__logo-svg-image {
    width: 100%;
    height: 100%;
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust__logo-item:hover .trust__logo-svg,
.trust__logo-item:hover .trust__logo-simple-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.trust__logo-item:hover .trust__logo-svg-image {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* Responsive Design for Trust Section */
@media (max-width: 992px) {
    .trust {
        padding: 50px 30px;
    }

    .trust__content {
        gap: 35px;
    }

    .trust__heading {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .trust__badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .trust__heading::before {
        height: 2.5px;
    }

    .trust__track-wrapper {
        padding: 35px 0;
        margin: 15px 0;
    }

    .trust__track-wrapper::before,
    .trust__track-wrapper::after {
        width: 100px;
    }

    .trust__logo-item {
        width: 130px;
        height: 75px;
        padding: 12px 20px;
    }

    .trust__track {
        gap: 60px;
    }

    .trust__logo-svg svg,
    .trust__logo-svg-image {
        max-width: 120px;
        max-height: 65px;
    }
}

@media (max-width: 768px) {
    .trust {
        padding: 40px 20px;
    }

    .trust__content {
        gap: 30px;
    }

    .trust__heading {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .trust__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .trust__heading::before {
        height: 2px;
    }

    .trust__track-wrapper {
        padding: 30px 0;
        margin: 10px 0;
    }

    .trust__track-wrapper::before,
    .trust__track-wrapper::after {
        width: 80px;
    }

    .trust__logo-item {
        width: 110px;
        height: 65px;
        padding: 10px 18px;
        border-radius: 12px;
    }

    .trust__track {
        gap: 50px;
        padding: 0 15px;
    }

    .trust__logo-svg svg,
    .trust__logo-svg-image {
        max-width: 100px;
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    .trust {
        padding: 30px 15px;
    }

    .trust__content {
        gap: 25px;
    }

    .trust__heading {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .trust__badge {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1.2px;
    }

    .trust__heading::before {
        height: 2px;
    }

    .trust__track-wrapper {
        padding: 25px 0;
        margin: 8px 0;
    }

    .trust__track-wrapper::before,
    .trust__track-wrapper::after {
        width: 60px;
    }

    .trust__logo-item {
        width: 90px;
        height: 55px;
        padding: 8px 15px;
        border-radius: 10px;
    }

    .trust__track {
        gap: 40px;
        padding: 0 10px;
    }

    .trust__logo-svg svg,
    .trust__logo-svg-image {
        max-width: 80px;
        max-height: 45px;
    }
}

