/**
 * Paintbrush Marketing Theme - Custom Styles
 * Based on MainFile design system
 */

/* Hero Section */
.hero__area-3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
    overflow: hidden;
    padding: 100px 0;
}

.hero__inner-3 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sec-sub-title {
    font-size: 20px;
    font-weight: 300;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sec-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.title-left {
    display: inline-block;
    margin-right: 10px;
}

.title-right {
    display: inline-block;
}

.hero__text-3 {
    max-width: 600px;
    margin: 40px auto;
}

.hero__text-animation {
    font-size: 18px;
    color: #999;
    line-height: 1.8;
}

.hero3-img-ani {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 1195px;
    z-index: 1;
    opacity: 0.8;
}

.hero3-img {
    width: 100%;
    height: auto;
}

.scroll-down button {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Header */
.header__area-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
    background: transparent;
}

.header__area-3.sticky-3 {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__inner-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header__logo img {
    max-height: 50px;
    width: auto;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.menu__list li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.menu__list li a:hover {
    color: #999;
}

.header__nav-icon-3 {
    display: none;
}

.header__nav-icon-3 button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.header__nav-icon-3 button:hover {
    color: #999;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #999;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #111;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #999;
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #222;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-menu-list li a:hover {
    color: #999;
    padding-left: 10px;
}

/* Service Section */
.service__area-3 {
    padding: 100px 0;
    background: #000;
}

.sec-title-wrapper {
    margin-bottom: 60px;
}

.service__area-3 .sec-title {
    font-size: clamp(40px, 7vw, 80px);
}

.service__list-3 {
    display: grid;
    gap: 40px;
}

.service__item-3 {
    position: relative;
    padding: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service__item-3:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.service__item-3 h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service__title-3 {
    color: #fff;
    transition: all 0.3s ease;
}

.service__title-3:hover {
    color: #999;
}

.service__content-3 {
    color: #999;
    margin-bottom: 20px;
}

.service__content-3 ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service__content-3 ul li {
    padding: 8px 0;
    color: #999;
}

.service__hover-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service__item-3:hover .service__hover-3 {
    opacity: 0.3;
}

/* Service Cards (for service page) */
.service__card {
    padding: 30px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.service__card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.service__card p {
    color: #999;
    margin-bottom: 15px;
}

.service__card ul {
    list-style: none;
    padding: 0;
}

.service__card ul li {
    color: #999;
    padding: 5px 0;
}

.service__image {
    border-radius: 8px;
    overflow: hidden;
}

/* About Section */
.about__area-3 {
    padding: 100px 0;
    background: #0b0b0b;
}

.about__area-3 .sec-title {
    font-size: clamp(35px, 6vw, 70px);
}

.about__img-3 img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.sec-text-wrapper {
    margin-top: 30px;
}

.sec-text p {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
}

.capability__card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.capability__card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.capability__card i {
    color: #fff;
}

.capability__card h4 {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 10px;
}

.capability__card p {
    color: #999;
    margin: 0;
}

/* Portfolio Section */
.portfolio__area-3 {
    padding: 100px 0;
    background: #000;
}

.portfolio__area-3 .sec-title {
    font-size: clamp(35px, 6vw, 70px);
}

.portfolio__area-3 .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}

.portfolio__area-3 [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
}

.portfolio__item-3 {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.portfolio__item-3:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.portfolio__item-3 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.portfolio__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.portfolio__content {
    background: #111;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__title-3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    text-align: center;
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__title-3 span {
    color: #999;
}

/* World Domination Section */
.world-domination {
    background: linear-gradient(180deg, #e8f4f8 0%, #d4e8f0 100%);
    color: #111;
    overflow: hidden;
}

.world-domination .sec-title-wrapper {
    margin-bottom: 30px;
}

.world-domination .sec-sub-title {
    color: #0b5c7a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.world-domination .sec-title {
    color: #0a4a61;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    margin-top: 12px;
}

.world-domination__text {
    max-width: 820px;
    margin: 24px auto 0;
    color: #1a5570;
    font-size: 19px;
    line-height: 1.7;
}

.world-domination__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0c7aad 0%, #0a5c85 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(12, 122, 173, 0.35);
}

.world-domination__map-wrap {
    background: linear-gradient(180deg, #c4dce6 0%, #b0d0dd 100%);
    padding: 70px 0 80px;
}

.world-domination__map-stage {
    max-width: 1380px;
    margin: 0 auto;
    border: 3px dashed rgba(12, 122, 173, 0.25);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.world-domination__svg {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.world-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.world-map-overlay .world-map-marker {
    pointer-events: all;
}

.world-map-land {
    fill: #8bc98f;
    stroke: #fff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.world-map-land:hover {
    fill: #7ab87e;
}

.world-map-marker {
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.world-map-marker:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.world-map-marker:focus {
    outline: none;
}

.world-map-marker:focus .marker-dot,
.world-map-marker.is-active .marker-dot {
    fill: #1a1a1a;
    stroke: #fff;
    stroke-width: 4;
}

.world-map-marker.is-active .marker-ring {
    fill: rgba(26, 26, 26, 0.25);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
}

.world-map-marker .marker-ring {
    fill: rgba(255, 59, 59, 0.3);
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    animation: markerPulse 2.5s ease-in-out infinite;
}

.world-map-marker .marker-dot {
    fill: #ff3b3b;
    stroke: #fff;
    stroke-width: 3;
    transition: all 0.2s ease;
}

.world-map-marker:hover .marker-dot {
    fill: #ff1a1a;
    stroke: #fff;
    stroke-width: 3.5;
}

.world-domination__info {
    margin-top: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.world-domination__info-country {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.world-domination__info-projects {
    margin: 0;
    font-size: 15px;
    color: #bbb;
    font-weight: 500;
}

.world-map-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(14px, -18px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    white-space: nowrap;
}

.world-map-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.world-map-tooltip__country {
    display: block;
    font-weight: 700;
}

.world-map-tooltip__projects {
    display: block;
    color: #cfcfcf;
}

@keyframes markerPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.35;
    }
}

.map-stats .stat-item {
    padding: 36px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    border: 2px solid #e3eef7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.map-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #0c7aad;
}

.map-stats .counter__number {
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0c7aad 0%, #0a5c85 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-stats p {
    color: #5a6c7d;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Workflow Section */
.workflow__area-3 {
    background: #f0f0f0;
    color: #111;
}

.workflow__wrapper-3 {
    width: 100%;
}

.choose-wrapper {
    padding: 120px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.choose-title-wrapper {
    text-align: center;
}

.choose-title {
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.95;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.research__area {
    background: #f5f5f5;
    padding: 100px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.research__area .inner_content {
    width: 100%;
}

.research__area .sec-title-wrapper {
    margin-bottom: 30px;
}

.research__area .sec-sub-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}

.workflow__sec-title {
    font-size: clamp(32px, 5vw, 48px);
    color: #111;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.research__area .sec-title-wrapper p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
}

.research__tools {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.research__tools li a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.research__tools li a:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research__list {
    display: grid;
    gap: 20px;
}

.research__item {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    align-items: center;
}

.research__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.research__number {
    flex-shrink: 0;
    min-width: 80px;
}

.research__number span {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: #111;
    display: block;
}

.research__info {
    flex: 1;
}

.research__title {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
    font-weight: 700;
}

.research__info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.counter__area-3 {
    padding: 100px 0;
    background: #f0f0f0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.counter__area-3 .sec-title-wrapper {
    margin-bottom: 50px;
}

.counter__area-3 .sec-sub-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.counter__wrapper-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.counter__item-3 {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.counter__item-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.counter__item-3 .counter__number {
    color: #111;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.counter__item-3 p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.counter__img-3 {
    padding-left: 40px;
}

.counter__img-3 img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta__area-3 {
    background: #f5f5f5;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.cta__content-3 {
    max-width: 800px;
    margin: 0 auto;
}

.cta__sub-title-2 {
    color: #888;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta__title-2 {
    color: #111;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 900;
}

/* Workflow Slider Styles */
.workflow-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 800px;
}

.workflow-slider-track {
    position: relative;
    width: 100%;
    min-height: 800px;
}

.workflow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}

.workflow-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 1;
}

.workflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.85);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.workflow-nav:hover {
    background: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.workflow-nav-prev {
    left: 30px;
}

.workflow-nav-next {
    right: 30px;
}

.workflow-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.workflow-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #111;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.workflow-indicator:hover {
    background: rgba(17, 17, 17, 0.5);
    transform: scale(1.2);
}

.workflow-indicator.active {
    background: #111;
    width: 32px;
    border-radius: 6px;
}

/* Pricing Section */
.price__area {
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.price__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

.price__area .sec-title-wrapper {
    margin-bottom: 50px;
}

.price__area .sec-sub-title {
    color: #999;
    font-size: 16px;
    margin-bottom: 15px;
}

.price__sec-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.2;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

.price__sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
}

.faq__list-3 {
    margin-top: 40px;
}

.faq__list-3 .accordion-item {
    border: 1px solid #222;
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    transition: all 0.3s ease;
}

.faq__list-3 .accordion-item:hover {
    border-color: #444;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.faq__list-3 .accordion-button {
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: none;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.faq__list-3 .accordion-button:not(.collapsed) {
    background: #1a1a1a;
    color: #fff;
    box-shadow: none;
}

.faq__list-3 .accordion-button:hover {
    background: #1a1a1a;
}

.faq__list-3 .accordion-button::after {
    filter: invert(1);
}

.faq__list-3 .accordion-body {
    background: #0f0f0f;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    padding: 18px 22px;
    border-top: 1px solid #222;
}

.price__table {
    margin-top: 0;
}

.price__item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 2px solid #222;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.price__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.price__item:hover {
    transform: translateY(-8px);
    border-color: #555;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.price__item:hover::before {
    opacity: 1;
}

.price__item:nth-child(2) {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: #444;
}

.price__item:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
    border-color: #666;
}

.price__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.price__item:hover .price__icon {
    transform: scale(1.1) rotate(5deg);
}

.price__icon span {
    width: 48px;
    height: 48px;
    border: 2px solid #444;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.price__item:hover .price__icon span {
    background: rgba(255, 255, 255, 0.1);
    border-color: #666;
}

.price__info {
    flex: 1;
    min-width: 0;
}

.price__type {
    display: inline-block;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 5px 12px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.price__item:hover .price__type {
    border-color: #666;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.price__title {
    font-size: 24px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price__item:hover .price__title {
    letter-spacing: 0.3px;
}

.price__info p {
    color: #999;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.price__amount {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-left: 20px;
}

.price__amount::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #333, transparent);
}

.price__amount p {
    font-size: 28px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.price__item:hover .price__amount p {
    transform: scale(1.05);
}

.best-value {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #fff 0%, #e8e8e8 100%);
    color: #111;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 6px;
    padding: 7px 11px;
    margin: 0 0 8px 0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.price__btn {
    margin-top: 30px;
    text-align: left;
}

.price__btn .wc-btn-black {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

/* Contact Section */
.contact__area {
    background: #0b0b0b;
}

.contact__services h4,
.contact__info h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.service__list {
    list-style: none;
    padding: 0;
}

.service__list li {
    color: #999;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.service__list li i {
    margin-right: 10px;
    color: #fff;
}

.contact__info p {
    color: #999;
    padding: 10px 0;
}

.contact__info i {
    margin-right: 10px;
    color: #fff;
}

.contact__form {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #222;
}

.contact__form h4 {
    color: #fff;
}

.form-control {
    background: #000;
    border: 1px solid #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
}

.form-control:focus {
    background: #0b0b0b;
    border-color: #444;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: #666;
}

/* FAQ Section */
.faq__area {
    background: #000;
}

.faq__item {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: #444;
}

.faq__question {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

.faq__question i {
    margin-right: 10px;
    color: #999;
}

.faq__answer p {
    color: #999;
    margin: 0;
    line-height: 1.8;
}

/* Blog Section */
.blog__area {
    background: #0b0b0b;
}

.blog__item {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog__item:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.blog__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog__content {
    background: #111;
}

.blog__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.blog__meta i {
    margin-right: 5px;
}

.blog__title a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.blog__title a:hover {
    color: #999;
}

.blog__excerpt {
    color: #999;
    line-height: 1.8;
}

.blog__link a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog__link a:hover {
    color: #999;
}

/* Buttons */
.wc-btn-light,
.wc-btn-black {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wc-btn-black {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.wc-btn-light:hover,
.wc-btn-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-hover i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-hover:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer__area-3 {
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.footer__top-3 {
    padding: 0;
    border-bottom: 1px solid #222;
}

.footer__top-wrapper-3 {
    display: grid;
    grid-template-columns: 30% 10% auto;
    gap: 0;
    align-items: start;
    padding: 0 50px;
}

.footer__logo-3 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.footer__logo-3 img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.footer__logo-3 p {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 310px;
}

.footer__social-3 {
    border-left: 1px solid #222;
    border-right: 1px solid #222;
}

.footer__social-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social-3 ul li {
    display: block;
    border-bottom: 1px solid #222;
}

.footer__social-3 ul li:last-child {
    border-bottom: 0;
}

.footer__social-3 ul li.footer__info-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 38px 0;
    background-color: transparent;
    cursor: default;
}

.footer__social-3 ul li a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 38px 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.footer__social-3 ul li a:hover {
    color: #0b0b0b;
    background-color: #fff;
}

.footer__contact-3 {
    text-align: right;
    padding-top: 90px;
    padding-bottom: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__contact-3 .end {
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer__contact-3 .end:hover {
    color: #c9f31d;
}

.footer__btm-3 {
    padding: 50px;
}

.footer__copyright-3 p {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 235px;
}

.footer__copyright-3 a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer__copyright-3 a:hover {
    color: #999;
}

.footer__nav-2 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-menu-2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.footer-menu-2 li a {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.footer-menu-2 li a:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .footer__logo-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .footer__social-3 {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #222;
        border-bottom: 1px solid #222;
        margin-top: 0;
    }

    .footer__social-3 ul li a {
        padding: 30px 0;
    }

    .footer__contact-3 {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 50px;
        justify-content: center;
    }

    .footer__contact-3 .end {
        font-size: 36px;
    }

    .footer__btm-3 {
        padding: 30px 10px;
    }

    .footer__btm-3 .row {
        flex-direction: column-reverse;
    }

    .footer__copyright-3 {
        text-align: center;
        margin-top: 20px;
    }

    .footer__copyright-3 p {
        max-width: 100%;
    }

    .footer__nav-2 {
        justify-content: center;
    }

    .footer-menu-2 {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 35% 20% auto;
        gap: 20px;
    }

    .footer__logo-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer__social-3 ul li a {
        padding: 30px 0;
    }

    .footer__contact-3 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer__contact-3 .end {
        font-size: 48px;
    }

    .footer__btm-3 {
        padding: 40px 15px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 35% 15% auto;
        gap: 20px;
    }

    .footer__contact-3 .end {
        font-size: 60px;
    }
}

/* Team Page */
.team__area-6 {
    background: #0b0b0b;
    overflow: hidden;
}

.team__area-6 .sec-title-wrapper {
    text-align: left;
    padding-bottom: 60px;
}

.team__area-6 .sec-title {
    color: #fff;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.team__area-6 .sec-title-wrapper p {
    color: #999;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.team__slider {
    padding: 80px 0;
    overflow: hidden;
}

.team__slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team__slide:nth-child(even) {
    padding-top: 100px;
}

.team__slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team__slide:hover img {
    transform: scale(1.05);
}

.team__info {
    padding: 20px 0;
}

.team__member-name-6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    padding-top: 20px;
    margin: 0;
}

.team__member-role-6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #999;
    margin: 8px 0 0;
}

.team__join-btn {
    text-align: center;
    padding: 60px 0 100px;
}

.wc-btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.wc-btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.wc-btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.wc-btn-primary:hover i {
    transform: translateX(5px);
}

.team__btm {
    background: #000;
    padding: 100px 0;
}

.team__btm .sec-title-wrapper {
    text-align: center;
}

.team__btm .sec-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.3;
    margin-bottom: 30px;
}

.team__btm .sec-title-wrapper p {
    color: #999;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Line decorations */
.line {
    position: relative;
}

.line-3 {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #222;
    z-index: 1;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-140 {
    padding-bottom: 140px;
}

/* Swiper overrides for team slider */
.team__slider .swiper-slide {
    height: auto;
}

.team__slider .swiper-wrapper {
    align-items: flex-start;
}

/* Utility Classes */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-130 { padding-top: 130px; }
.pt-140 { padding-top: 140px; }
.pb-110 { padding-bottom: 110px; }
.pb-150 { padding-bottom: 150px; }

.text-anim,
.title-anim {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sec-title {
        font-size: 60px;
    }

    .hero3-img-ani {
        width: 100%;
        opacity: 0.5;
    }

    /* Mobile Header */
    .header__area-3 {
        padding: 15px 0;
    }

    .header__inner-3 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header__logo img {
        max-height: 40px;
    }

    /* Hide desktop menu on mobile */
    .main-menu {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    .header__nav-icon-3 {
        display: none;
    }

    /* Team Page Mobile */
    .team__area-6 .sec-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .team__area-6 .sec-title-wrapper p {
        font-size: 16px;
    }

    .team__slider {
        padding: 40px 0;
    }

    .team__slide:nth-child(even) {
        padding-top: 0;
    }

    .team__member-name-6 {
        font-size: 20px;
        padding-top: 15px;
    }

    .team__member-role-6 {
        font-size: 14px;
    }

    .team__join-btn {
        padding: 40px 0 60px;
    }

    .wc-btn-primary {
        padding: 16px 32px;
        font-size: 16px;
    }

    .team__btm {
        padding: 60px 0;
    }

    .team__btm .sec-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .team__btm .sec-title-wrapper p {
        font-size: 16px;
    }

    .pt-120 {
        padding-top: 60px;
    }

    .pt-130 {
        padding-top: 70px;
    }

    .pt-150 {
        padding-top: 80px;
    }

    .pb-140 {
        padding-bottom: 70px;
    }

    .service__item-3,
    .service__card,
    .blog__item {
        margin-bottom: 30px;
    }

    .portfolio__item-3 img,
    .portfolio__image img {
        height: 300px;
    }

    .portfolio__title-3 {
        font-size: 20px;
        padding: 15px 10px;
    }

    .world-domination__text {
        font-size: 16px;
    }

    .world-domination__map-stage {
        padding: 14px;
    }

    .world-domination__info {
        width: 100%;
    }

    .map-stats .counter__number {
        font-size: 48px;
    }

    .map-stats p {
        font-size: 18px;
    }

    .choose-title {
        font-size: clamp(48px, 12vw, 80px);
    }

    .choose-wrapper {
        padding: 80px 0;
        min-height: 700px;
    }

    .research__area {
        padding: 60px 0;
        min-height: 700px;
    }

    .workflow__sec-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .research__area .sec-title-wrapper {
        margin-bottom: 30px;
    }

    .research__area .sec-title-wrapper p {
        font-size: 15px;
    }

    .research__tools {
        margin-top: 20px;
        gap: 8px;
    }

    .research__tools li a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .research__item {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        align-items: flex-start;
    }

    .research__number {
        min-width: auto;
    }

    .research__number span {
        font-size: 38px;
    }

    .research__title {
        font-size: 18px;
    }

    .research__info p {
        font-size: 13px;
    }

    .counter__area-3 {
        padding: 60px 0;
        min-height: 700px;
    }

    .counter__area-3 .sec-title-wrapper {
        margin-bottom: 35px;
    }

    .counter__wrapper-3 {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
        gap: 16px;
    }

    .counter__item-3 {
        padding: 24px 20px;
    }

    .counter__item-3 .counter__number {
        font-size: 52px;
    }

    .counter__item-3 p {
        font-size: 14px;
    }

    .counter__img-3 {
        padding-left: 0;
        margin-top: 20px;
    }

    .cta__area-3 {
        min-height: 700px;
    }

    .cta__sub-title-2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .cta__title-2 {
        font-size: clamp(32px, 8vw, 52px);
        margin-bottom: 30px;
    }

    .counter__wrapper-3 {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .workflow-slider-container {
        min-height: 700px;
    }

    .workflow-slide {
        min-height: 700px;
    }

    .workflow-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .workflow-nav-prev {
        left: 15px;
    }

    .workflow-nav-next {
        right: 15px;
    }

    .workflow-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .workflow-indicator {
        width: 10px;
        height: 10px;
    }

    .workflow-indicator.active {
        width: 24px;
    }

    .price__area .sec-title-wrapper {
        margin-bottom: 35px;
    }

    .price__sec-title {
        font-size: clamp(28px, 6vw, 40px);
        padding-bottom: 15px;
    }

    .faq__list-3 {
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .faq__list-3 .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq__list-3 .accordion-body {
        font-size: 13px;
        padding: 16px 18px;
    }

    .price__table {
        margin-top: 0;
    }

    .price__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .price__icon span {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .price__type {
        font-size: 9px;
        padding: 4px 10px;
    }

    .price__title {
        font-size: 22px;
    }

    .price__info p {
        font-size: 13px;
    }

    .price__amount {
        align-items: flex-start;
        padding-left: 0;
        width: 100%;
    }

    .price__amount::before {
        display: none;
    }

    .price__amount p {
        font-size: 24px;
    }

    .best-value {
        right: 15px;
        top: -10px;
        font-size: 8px;
        padding: 6px 9px;
        letter-spacing: 1px;
    }

    .price__btn {
        margin-top: 20px;
    }

    .price__btn .wc-btn-black {
        padding: 15px 28px;
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    /* Hide mobile menu on tablet/desktop */
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    /* Tablet Header */
    .header__logo img {
        max-height: 45px;
    }

    .menu__list {
        gap: 25px;
    }

    .menu__list li a {
        font-size: 15px;
    }

    .portfolio__item-3 img,
    .portfolio__image img {
        height: 350px;
    }

    .choose-title {
        font-size: clamp(60px, 10vw, 120px);
    }

    .choose-wrapper {
        padding: 100px 0;
    }

    .workflow__sec-title {
        font-size: clamp(30px, 5vw, 42px);
    }

    .research__area {
        padding: 80px 0;
    }

    .research__item {
        padding: 24px;
        gap: 20px;
    }

    .research__number span {
        font-size: 40px;
    }

    .research__title {
        font-size: 19px;
    }

    .counter__area-3 {
        padding: 80px 0;
    }

    .counter__item-3 {
        padding: 28px 24px;
    }

    .counter__item-3 .counter__number {
        font-size: 56px;
    }

    .counter__img-3 {
        padding-left: 20px;
    }

    .cta__title-2 {
        font-size: clamp(36px, 6vw, 64px);
    }

    .price__item {
        gap: 18px;
        padding: 28px 30px;
    }

    .price__title {
        font-size: 22px;
    }

    .price__info p {
        font-size: 14px;
    }

    .price__amount p {
        font-size: 26px;
    }

    .price__icon span {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* Full-Width Container */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Desktop - Hide mobile menu elements */
@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}
