/*
Theme Name: ProjectV - עוצמה ברשת
Theme URI: https://otsma.co.il
Author: Studio POWER
Description: תבנית וורדפרס עבור סטודיו POWER - עוצמה ברשת. פתרונות שיווק ופרסום דיגיטלי.
Version: 1.0.0
Text Domain: projectv
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-teal: #4aacb7;
    --color-green: #7ab51d;
    --color-dark: #101828;
    --color-heading: #0a0a0a;
    --color-text: #4a5565;
    --color-text-light: #364153;
    --color-gray-100: #f9fafb;
    --color-gray-200: #f3f4f6;
    --color-gray-300: #e5e7eb;
    --color-gray-muted: #99a1af;
    --color-white: #ffffff;
    --font-family: 'Rubik', sans-serif;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0px 20px 25px -5px rgba(0,0,0,0.1), 0px 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-lg: 0px 25px 50px -12px rgba(0,0,0,0.25);
    --gradient: linear-gradient(to left, #4aacb7, #7ab51d);
    --gradient-vertical: linear-gradient(to bottom, #4aacb7, #7ab51d);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    direction: rtl;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 700;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 96px;
}

/* ===== TAG / BADGE ===== */
.tag {
    display: inline-block;
    background: rgba(74, 172, 183, 0.1);
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 15px;
    border-radius: var(--radius-full);
    line-height: 16px;
}

.tag--white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--gradient);
    color: var(--color-white);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn--outline {
    background: var(--color-white);
    color: var(--color-text-light);
    border: 0.8px solid var(--color-gray-300);
}

.btn--outline:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-teal);
}

.btn--white:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== LINK WITH ARROW ===== */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.link-arrow--teal {
    color: var(--color-teal);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    height: 64px;
}

.navbar .container {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.navbar__logo img {
    height: 48px;
    width: auto;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 20px;
    transition: color 0.3s ease;
}

.navbar__menu a:hover,
.navbar__menu a.active {
    color: var(--color-teal);
    font-weight: 600;
}

.navbar__menu .has-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__menu .has-dropdown svg {
    width: 16px;
    height: 16px;
}

/* ===== NAVBAR DROPDOWN ===== */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.navbar__dropdown-toggle:hover,
.navbar__dropdown-toggle.active {
    color: var(--color-teal);
    font-weight: 600;
}

.navbar__dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.navbar__dropdown.open .navbar__dropdown-toggle svg {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 50%;
    transform: translateX(50%);
    background: #fff;
    border-radius: 8px;
    padding: 16px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(-8px);
    transition: all 0.3s ease;
    z-index: 100;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.navbar__dropdown.open .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.navbar__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 50%;
    transform: translateX(50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
    rotate: 45deg;
}

.navbar__dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar__dropdown-menu a:hover {
    color: var(--color-teal);
}

.navbar__social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 16px;
    border-right: 0.8px solid var(--color-gray-300);
}

.navbar__social a {
    display: flex;
    color: var(--color-text-light);
}

.navbar__social a:hover {
    color: var(--color-teal);
}

.navbar__social svg {
    width: 20px;
    height: 20px;
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--color-gray-100);
    padding: 89px 0 0;
    overflow: hidden;
    position: relative;
    min-height: 589px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero::before {
    width: 870px;
    height: 870px;
    background: radial-gradient(circle, rgba(74,172,183,0.2) 0%, rgba(37,86,92,0.1) 25%, transparent 50%);
    top: -100px;
    right: -100px;
}

.hero::after {
    width: 960px;
    height: 960px;
    background: radial-gradient(circle, rgba(122,181,29,0.2) 0%, rgba(61,91,15,0.1) 25%, transparent 50%);
    bottom: -200px;
    left: -200px;
}

.hero .container {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    padding-top: 0;
}

.hero__tag {
    margin-bottom: 16px;
}

.hero__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 75px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.hero__title span {
    color: var(--color-teal);
}

.hero__subtitle {
    font-size: 14.3px;
    font-weight: 400;
    line-height: 29.25px;
    color: var(--color-text);
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 80px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hero__stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 36px;
}

.hero__stat-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 16px;
}

/* Hero Slider */
.hero__slider {
    flex: 0 0 448px;
    position: relative;
}

/* Projects Collage */
.hero__collage {
    flex: 0 0 500px;
    position: relative;
    height: 420px;
}

.hero__collage-item {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 3px solid #fff;
}

.hero__collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.hero__collage-item--1 { width: 214px; height: 261px; top: 80px; left: 140px; z-index: 3; }
.hero__collage-item--2 { width: 161px; height: 112px; top: 22px; left: 0; z-index: 2; }
.hero__collage-item--3 { width: 121px; height: 154px; top: -15px; right: 50px; z-index: 2; }
.hero__collage-item--4 { width: 136px; height: 110px; top: 160px; right: 20px; z-index: 5; }
.hero__collage-item--5 { width: 138px; height: 107px; top: 3px; left: 180px; z-index: 5; }
.hero__collage-item--6 { width: 110px; height: 116px; top: 160px; left: 10px; z-index: 5; }
.hero__collage-item--7 { width: 169px; height: 113px; bottom: 20px; right: 10px; z-index: 2; }
.hero__collage-item--8 { width: 136px; height: 110px; bottom: -15px; left: 200px; z-index: 5; }
.hero__collage-item--9 { width: 121px; height: 171px; bottom: -10px; left: 50px; z-index: 2; }

.hero__slide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 336px;
}

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

.hero__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
    mix-blend-mode: multiply;
}

.hero__slide-stats {
    position: absolute;
    top: 17px;
    right: 24px;
    display: flex;
    gap: 8px;
}

.hero__slide-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
}

.hero__slide-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 20px;
}

.hero__slide-stat-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 16px;
}

.hero__slide-content {
    position: absolute;
    bottom: 16px;
    right: 24px;
    left: 24px;
}

.hero__slide-badge {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.hero__slide-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 32px;
    margin-bottom: 4px;
}

.hero__slide-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 20px;
}

.hero__slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    pointer-events: none;
}

.hero__slide-nav button {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.hero__slide-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero__slide-nav svg {
    width: 20px;
    height: 20px;
}

.hero__slide-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
}

.hero__slide-dots button {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.hero__slide-dots button.active {
    width: 18px;
    background: var(--color-white);
}

.hero__slider-link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--color-white);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about__video {
    flex: 0 0 500px;
    height: 297px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--gradient-vertical);
    box-shadow: var(--shadow-md);
}

.about__video-bg {
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.about__video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about__play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
}

.about__play-btn:hover {
    transform: scale(1.1);
}

.about__play-btn svg {
    width: 28px;
    height: 28px;
    margin-right: -3px;
    color: var(--color-teal);
}

.about__video-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 20px;
}

.about__content {
    flex: 1;
}

.about__tag {
    margin-bottom: 12px;
}

.about__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 16px;
}

.about__title span {
    color: var(--color-teal);
}

.about__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.about__link {
    display: flex;
    justify-content: flex-start;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 62px 0 80px;
    background: var(--color-gray-100);
}

.services__header {
    text-align: center;
    margin-bottom: 40px;
}

.services__tag {
    margin-bottom: 12px;
}

.services__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 8px;
}

.services__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 20px;
}

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

.services__card {
    background: var(--color-white);
    border: 0.8px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.services__card-icon {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
    margin-bottom: 16px;
    margin-right: 0;
    margin-left: 0;
}

.services__card-icon svg {
    width: 24px;
    height: 24px;
}

.services__card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.services__card-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.5px;
    color: var(--color-text);
}

.services__link {
    display: flex;
    justify-content: center;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    padding: 78px 0;
    background: var(--color-white);
    border-top: 0.8px solid rgba(0,0,0,0.1);
    border-bottom: 0.8px solid rgba(0,0,0,0.1);
}

.clients__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: #1e2939;
    margin-bottom: 48px;
}

.clients__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.clients__item {
    width: 100px;
    height: 100px;
    background: var(--color-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

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

.clients__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-vertical);
}

.cta .container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.cta__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta__info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta__info-card--wide {
    grid-column: span 2;
}

.cta__info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cta__info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta__info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.cta__info-text {
    flex: 1;
    text-align: right;
}

.cta__info-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 16px;
}

.cta__info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 24px;
}

.cta__content {
    flex: 1;
    text-align: right;
}

.cta__tag {
    margin-bottom: 16px;
}

.cta__title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 40px;
    margin-bottom: 12px;
}

.cta__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
    margin-bottom: 32px;
}

.cta__button {
    display: flex;
    justify-content: flex-end;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: 48px 0 0;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 32px;
    align-items: flex-start;
}

.footer__col {
    text-align: right;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 28px;
    margin-bottom: 16px;
}

.footer__logo {
    margin-bottom: 16px;
    overflow: hidden;
}

.footer__logo img {
    height: 68px;
    width: 205px;
    float: right;
}

.footer__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    text-align: right;
}

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

.footer__links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-muted);
    line-height: 24px;
    transition: color 0.3s ease;
    text-align: right;
    display: block;
}

.footer__links a:hover {
    color: var(--color-white);
}

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

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray-muted);
    flex-shrink: 0;
}

.footer__contact-item span {
    font-size: 16px;
    color: var(--color-gray-muted);
    line-height: 24px;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer__social a {
    color: var(--color-gray-muted);
    display: flex;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: var(--color-white);
}

.footer__social svg {
    width: 24px;
    height: 24px;
}

.footer__bottom {
    background: #00040b;
    padding: 8px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: var(--color-gray-100);
    border-bottom: 0.8px solid rgba(0,0,0,0.1);
    padding: 82px 0 60px;
    text-align: center;
}

.page-hero__tag {
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: 35px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 12px;
}

.page-hero__title .gradient-text {
    background: linear-gradient(270deg, #4aacb7 0%, #7ab51d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 24px;
}

/* ===== PROJECTS CATEGORIES (landing page) ===== */
.projects-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.projects-categories__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.projects-categories__item:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    box-shadow: 0 4px 12px rgba(74, 172, 183, 0.15);
}

.projects-categories__item svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.projects-categories__item:hover svg {
    opacity: 1;
    stroke: var(--color-teal);
}

/* ===== PROJECT TABS ===== */
.project-tab {
    font-family: 'Assistant', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.project-tab:hover {
    color: var(--color-teal);
}

.project-tab.active {
    color: var(--color-teal);
    border-bottom-color: var(--color-teal);
}

/* ===== PROJECT SHOWCASE ===== */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.project-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.project-showcase-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1734 / 980;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.project-showcase-link {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-family: 'Assistant', sans-serif;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.project-showcase-link:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ===== ABOUT PAGE - STORY SECTION ===== */
.about-story {
    padding: 60px 0;
    background: var(--color-white);
}

.about-story .container {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-story__content {
    flex: 1;
}

.about-story__tag {
    margin-bottom: 12px;
}

.about-story__title {
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 16px;
}

.about-story__title .gradient-text {
    background: linear-gradient(270deg, #4aacb7 38%, #7ab51d 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-story__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-text-light);
}

.about-story__text strong {
    font-weight: 600;
}

.about-story__image {
    flex: 0 0 456px;
    height: 339px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT PAGE - TEAM SECTION ===== */
.about-team {
    padding: 68px 0 80px;
    background: var(--color-gray-100);
    text-align: center;
}

.about-team__tag {
    margin-bottom: 16px;
}

.about-team__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 24px;
}

.about-team__title .gradient-text {
    background: linear-gradient(270deg, #4aacb7 38%, #7ab51d 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-team__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE - VALUES SECTION ===== */
.about-values {
    padding: 80px 0;
    background: var(--color-white);
}

.about-values__header {
    text-align: center;
    margin-bottom: 48px;
}

.about-values__tag {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}

.about-values__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-values__card {
    background: var(--color-gray-100);
    border: 0.8px solid #e9e9e9;
    border-radius: var(--radius-lg);
    padding: 25px;
    overflow: hidden;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-values__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-values__card--highlight {
    background: linear-gradient(270deg, #4aacb7 38%, #7ab51d 76%);
    border-color: transparent;
}

.about-values__card--highlight .about-values__card-title {
    color: var(--color-white);
}

.about-values__card--highlight .about-values__card-text {
    color: #f7f7f7;
}

.about-values__card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    margin-right: auto;
}

.about-values__card-icon--green {
    background: linear-gradient(to bottom, #7ab51d, #4aacb7);
}

.about-values__card-icon--teal {
    background: linear-gradient(to bottom, #4aacb7, #7ab51d);
}

.about-values__card-icon--green-dark {
    background: linear-gradient(to bottom, #7ab51d, #6a9e1a);
}

.about-values__card-icon--teal-dark {
    background: linear-gradient(to bottom, #4aacb7, #3b8c95);
}

.about-values__card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.about-values__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
}

.about-values__card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .hero .container {
        flex-direction: column-reverse;
        align-items: center;
        overflow: hidden;
    }

    .hero__slider {
        flex: none;
        width: 100%;
        max-width: 448px;
    }

    .hero__collage {
        flex: none;
        width: 500px;
        height: 420px;
        zoom: 0.85;
        margin: 0 auto;
    }

    .hero__content {
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-items: center;
    }

    .about .container {
        flex-direction: column;
    }

    .about__video {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .services__grid,
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story .container {
        flex-direction: column;
    }

    .about-story__image {
        flex: none;
        width: 100%;
        max-width: 456px;
        margin: 0 auto;
    }

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

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__col {
        text-align: center;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__logo img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .navbar__menu,
    .navbar__social {
        display: none;
    }

    .navbar__toggle {
        display: block;
    }

    .navbar.menu-open .navbar__menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        background: var(--color-white);
        padding: 24px;
        box-shadow: var(--shadow-sm);
        z-index: 99;
    }

    .hero {
        padding: 40px 0 0;
        min-height: auto;
    }

    .hero__title {
        font-size: 24px;
        line-height: 50px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__stats {
        gap: 16px;
    }

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

    .cta__info-row {
        grid-template-columns: 1fr;
    }

    .about__title {
        font-size: 22px;
    }

    /* Page Hero */
    .page-hero {
        padding: 48px 0 40px;
    }

    .page-hero__title {
        font-size: 28px;
        line-height: 40px;
    }

    .page-hero__subtitle {
        font-size: 14px;
    }

    /* About Page */
    .about-story .container {
        flex-direction: column !important;
    }

    .about-story__image {
        flex: none !important;
        width: 100% !important;
        height: 250px !important;
    }

    .about-story__title {
        font-size: 22px;
    }

    .about-team__title {
        font-size: 22px;
    }

    .about-values__grid {
        grid-template-columns: 1fr !important;
    }

    .about-values__title {
        font-size: 22px;
    }

    /* Footer */
    .footer__bottom p {
        font-size: 14px;
    }
}

/* ===== MOBILE SMALL (480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 20px;
        line-height: 40px;
    }

    .hero__subtitle {
        font-size: 13px;
    }

    .hero__stat-number {
        font-size: 18px;
    }

    .hero__collage {
        zoom: 0.7;
    }

    .hero__slider {
        max-width: 100%;
    }

    .hero__slide {
        height: 250px;
    }

    .page-hero__title {
        font-size: 24px;
        line-height: 36px;
    }

    .navbar__logo img {
        height: 36px;
    }

}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== PROJECT CARD HOVER ===== */
.project-card img {
    transition: transform 0.6s ease !important;
    will-change: transform;
}

.project-card:hover img {
    transform: scale(1.08) !important;
}

/* ===== SERVICES ICON FIX ===== */
.services__card-icon {
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* ===== ADVANCED ANIMATIONS ===== */
.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

.about {
    overflow: hidden;
}

section {
    overflow: hidden;
}

/* ===== MODERN ANIMATIONS ===== */

/* Smooth page transition */
body {
    animation: pageFadeIn 0.4s ease-out;
}
@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scale up on scroll */
.scale-up {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Filter button smooth transition */
.filter-btn {
    transition: all 0.3s ease !important;
}
.filter-btn:hover {
    transform: translateY(-2px);
}

/* Card lift effect on hover */
.project-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Smooth link button hover */
.website-link-btn {
    transition: all 0.3s ease !important;
}
.website-link-btn:hover {
    transform: translateX(-50%) scale(1.05) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Billboard scroll smooth */
.billboard-scroll {
    scroll-behavior: smooth;
}
.billboard-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.billboard-item:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

/* Section title animation */
.section-title-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-title-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Play button pulse */
.project-card .play-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover .play-btn {
    transform: translate(-50%, -60%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
