/* ==========================================
   RESET & BASE STYLES - FIXED VERSION
   ========================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-primary: #FF481F;
    --color-dark-navy: #262929;
    --color-grey-40: #999999;
    --color-grey-20: #CCCCCC;
    --color-grey-30: #B4B4B4;
    --color-grey-60: #666666;
    --color-yellow-5: #F1EEE9;
    --color-bg-dark: #484848;
    --color-bg-medium: #5a5a5a;
    --color-bg-dark-alt: #464646;
    
    --font-inter: 'Inter', sans-serif;
    
    /* Fixed nav widths */
    --nav-width-mobile: 50px;
    --nav-width-tablet: 70px;
    --nav-width-desktop: 90px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-inter);
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-left: 0;
    font-weight: 500;
}

/* ==========================================
   TYPOGRAPHY - BOLDER WEIGHTS
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 500;
    line-height: 1.67;
}

/* ==========================================
   LAYOUT - CONSISTENT SPACING
   ========================================== */
.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 120px 0;
    }
}

.section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 calc(var(--nav-width-mobile) + 20px);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .section-content {
        padding: 0 30px 0 calc(var(--nav-width-tablet) + 30px);
    }
}

@media (min-width: 1024px) {
    .section-content {
        padding: 0 40px 0 calc(var(--nav-width-desktop) + 40px);
    }
}

/* ==========================================
   NAVIGATION BAR - FIXED POSITIONING
   ========================================== */
.nav-vertical {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--nav-width-mobile);
    height: 100vh;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .nav-vertical {
        width: var(--nav-width-tablet);
        padding: 30px 0;
    }
}

@media (min-width: 1024px) {
    .nav-vertical {
        width: var(--nav-width-desktop);
        padding: 40px 0;
    }
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-content {
        gap: 25px;
    }
}

.logo {
    width: 30px;
    height: 30px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
    .logo {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .logo {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-toggle:hover {
    opacity: 1;
}

.social-icons {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 80px;
    width: 100%;
    align-items: center;
}

@media (min-width: 768px) {
    .social-icons {
        display: flex;
        gap: 15px;
    }
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

@media (min-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 1024px) {
    .social-icon {
        width: 44px;
        height: 44px;
    }
}

.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 72, 31, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   TOP BAR - ADJUSTED POSITIONING
   ========================================== */
.top-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

@media (min-width: 768px) {
    .top-bar {
        top: 30px;
        right: 30px;
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .top-bar {
        top: 40px;
        right: 40px;
        gap: 15px;
    }
}

.lang-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .lang-toggle {
        width: 44px;
        height: 44px;
    }
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 44px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 12px;
    }
}

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

.btn-primary:hover {
    background: #e63d17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 72, 31, 0.3);
}

.btn-secondary {
    background: transparent;
    color: currentColor;
    border: 1px solid currentColor;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .btn-secondary {
        padding: 14px 26px;
        font-size: 13px;
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   SECTION TITLE
   ========================================== */
.section-title {
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .section-title {
        position: absolute;
        left: calc(var(--nav-width-desktop) + 40px);
        top: 30px;
        margin-bottom: 0;
    }
}

.section-number {
    display: block;
    font-size: 12px;
    color: currentColor;
    margin-bottom: 8px;
    opacity: 0.8;
    font-weight: 600;
}

@media (min-width: 768px) {
    .section-number {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.title-label {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0;
}

.section-description {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    color: var(--color-white-60);
    margin: 20px 0 30px;
    max-width: 700px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .section-description {
        position: absolute;
        right: 40px;
        top: 30px;
        margin: 0;
        max-width: 500px;
        text-align: right;
    }
}

.copyright {
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 11px;
    color: currentColor;
    opacity: 0.5;
    z-index: 998;
    mix-blend-mode: difference;
    font-weight: 600;
}

@media (min-width: 768px) {
    .copyright {
        bottom: 20px;
        right: 20px;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .copyright {
        font-size: 13px;
        right: 30px;
    }
}

/* ==========================================
   HERO SECTION - 01.jpg
   ========================================== */
.hero-section {
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .section-content,
.hero-section .top-bar,
.hero-section .copyright {
    position: relative;
    z-index: 2;
}

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

@media (min-width: 768px) {
    .hero-content {
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        margin-top: 200px;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-subtitle {
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        position: absolute;
        right: 40px;
        top: 30px;
        max-width: 500px;
        text-align: right;
        margin-bottom: 0;
    }
}

.hero-headline {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 50px 0 30px;
}

@media (min-width: 768px) {
    .hero-headline {
        margin: 60px 0 30px;
    }
}

.hero-subtext {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 500;
}

/* ==========================================
   SERVICES SECTION - 02.jpg
   ========================================== */
.services-section {
    background: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.services-section .section-content,
.services-section .top-bar,
.services-section .copyright {
    position: relative;
    z-index: 2;
}

.services-section .top-bar {
    color: var(--color-black);
}

.services-section .lang-toggle {
    border-color: var(--color-grey-20);
    color: var(--color-black);
}

.services-section .lang-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .services-grid {
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 200px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .service-card {
        padding: 40px;
        min-height: 450px;
    }
}

@media (min-width: 1024px) {
    .service-card {
        padding: 50px;
        min-height: 500px;
    }
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 25px;
    }
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
}

.service-title {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 30px;
    text-decoration: underline;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .service-tags {
        gap: 12px;
        margin-bottom: 30px;
    }
}

.tag {
    padding: clamp(10px, 2vw, 16px) clamp(14px, 3vw, 24px);
    border-radius: 40px;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    background: transparent;
    border: 1px solid var(--color-grey-40);
    color: var(--color-black);
    transition: all 0.3s ease;
}

.tag-active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.tag:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.service-card-large .tag:nth-child(2) {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.service-details {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--color-black);
    margin-top: auto;
    font-weight: 600;
}

/* ==========================================
   WORK SECTION - 03.jpg
   ========================================== */
.work-section {
    background: var(--color-bg-dark-alt);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.work-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.work-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease, background-image 0.5s ease;
}

.work-section .section-content,
.work-section .top-bar,
.work-section .copyright {
    position: relative;
    z-index: 2;
}

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

@media (min-width: 768px) {
    .work-content {
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .work-content {
        margin-top: 200px;
    }
}

.work-description {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    margin-bottom: 25px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .work-description {
        position: absolute;
        right: 40px;
        top: 30px;
        max-width: 500px;
        text-align: right;
        margin-bottom: 0;
    }
}

.work-headline {
    font-size: clamp(40px, 9vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 50px 0 20px;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .work-headline {
        margin: 60px 0 25px;
    }
}

.work-description-detail {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .work-description-detail {
        margin-top: 20px;
    }
}

.work-description-detail p {
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.67;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.project-navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .project-navigation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 50px;
    }
}

.project-nav-link {
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.71;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.project-nav-link:hover,
.project-nav-link.active {
    opacity: 1;
    font-weight: 700;
}

/* ==========================================
   PRICING SECTION - 04.jpg
   ========================================== */
.pricing-section {
    background: var(--color-yellow-5);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 238, 233, 0.88);
    z-index: 1;
}

.pricing-section .section-content,
.pricing-section .top-bar,
.pricing-section .copyright {
    position: relative;
    z-index: 2;
}

.pricing-section .top-bar {
    color: var(--color-black);
}

.pricing-section .lang-toggle {
    border-color: var(--color-grey-20);
    color: var(--color-black);
}

.pricing-section .lang-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .pricing-grid {
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 200px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 50px 40px;
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.8);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-grey-20);
}

.pricing-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-black);
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-from {
    font-size: 14px;
    color: var(--color-grey-60);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.feature {
    font-size: clamp(15px, 2.5vw, 16px);
    line-height: 1.5;
    color: var(--color-black);
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note p {
    font-size: clamp(15px, 2.5vw, 16px);
    line-height: 1.67;
    color: var(--color-grey-60);
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-note strong {
    color: var(--color-black);
    font-weight: 700;
}

/* ==========================================
   PARTNERS/PORTFOLIO SECTION - 05.jpg
   ========================================== */
.partners-section {
    background: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/05.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.partners-section .section-content,
.partners-section .top-bar,
.partners-section .copyright {
    position: relative;
    z-index: 2;
}

.partners-section .top-bar {
    color: var(--color-black);
}

.partners-section .lang-toggle {
    border-color: var(--color-grey-20);
    color: var(--color-black);
}

.partners-section .lang-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 60px;
    border: 1px solid var(--color-grey-20);
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 70px;
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 200px;
    }
}

@media (min-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1800px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ==========================================
   PROJECT CARDS WITH BACKGROUND IMAGES - TEXT IN BOX
   ========================================== */
   .partner-card {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-right: 1px solid var(--color-grey-20);
    border-bottom: 1px solid var(--color-grey-20);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .partner-card {
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    .partner-card {
        padding: 35px;
    }
}

/* Light overlay by default */
.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Stronger overlay on hover */
.partner-card:hover .partner-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.partner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Text container box */
.partner-card .partner-logo,
.partner-card .partner-name {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .partner-card .partner-logo,
    .partner-card .partner-name {
        padding: 14px 18px;
        margin-bottom: 10px;
    }
}

.partner-logo {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.partner-name {
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 0;
}

/* On hover, boxes become more transparent to show overlay */
.partner-card:hover .partner-logo,
.partner-card:hover .partner-name {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-more,
.partner-close {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .partner-more,
    .partner-close {
        bottom: 30px;
        right: 30px;
    }
}

.partner-card:hover .partner-more {
    background: var(--color-black);
    color: var(--color-white);
    transform: scale(1.1);
}

.partner-info {
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.6;
    color: var(--color-black);
    font-weight: 500;
}

.partner-card-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--color-white) !important;
}

.partner-card-info .partner-overlay {
    display: none;
}

.partner-card-info .partner-info {
    text-align: center;
    padding-right: 0;
}

.partner-card-info .partner-info strong {
    display: block;
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 10px;
    color: var(--color-black);
}

/* Remove boxes from info card */
.partner-card-info .partner-logo,
.partner-card-info .partner-name {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* ==========================================
   PROJECT DETAIL MODAL - 08.jpg
   ========================================== */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 5vh auto;
    background: var(--color-white);
    border-radius: 0;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideIn 0.4s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/08.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 80px 60px;
    }
}

.modal-header {
    margin-bottom: 40px;
}

.modal-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--color-black);
}

.modal-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-grey-60);
    line-height: 1.5;
    font-weight: 500;
}

.modal-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .modal-gallery {
        gap: 30px;
    }
}

.gallery-item {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: var(--color-yellow-5);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
}

.modal-description {
    margin-bottom: 40px;
}

.modal-description h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.modal-description p {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    color: var(--color-grey-60);
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.modal-description li {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    color: var(--color-grey-60);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.modal-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tag {
    padding: 10px 20px;
    background: var(--color-yellow-5);
    border: 1px solid var(--color-grey-20);
    border-radius: 30px;
    font-size: 14px;
    color: var(--color-black);
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

/* ==========================================
   TEAM SECTION - 06.jpg
   ========================================== */
.team-section {
    background: var(--color-dark-navy);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/06.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 41, 41, 0.75);
    z-index: 1;
}

.team-section .section-content,
.team-section .top-bar,
.team-section .copyright {
    position: relative;
    z-index: 2;
}

.team-section .lang-toggle {
    border-color: var(--color-grey-60);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, 180px);
        gap: 30px;
        margin-top: 140px;
    }
}

.team-member {
    position: relative;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-grey-60);
    position: relative;
    overflow: hidden;
}

.member-name {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
}

.about-text {
    max-width: 700px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .about-text {
        margin: 50px 0;
    }
}

@media (min-width: 1024px) {
    .about-text {
        margin: 140px 0 50px 0;
    }
}

.about-text p {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    margin-bottom: 20px;
    color: var(--color-white);
    font-weight: 500;
}

/* ==========================================
   CONTACT SECTION - 07.jpg
   ========================================== */
.contact-section {
    background: var(--color-bg-medium);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/portfolio/07.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(90, 90, 90, 0.7);
    z-index: 1;
}

.contact-section .section-content,
.contact-section .top-bar,
.contact-section .copyright {
    position: relative;
    z-index: 2;
}

.contact-info {
    margin-top: 60px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .contact-info {
        margin-top: 80px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .contact-info {
        margin-top: 140px;
    }
}

.contact-address {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.67;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .contact-address {
        position: absolute;
        right: 40px;
        top: 30px;
        max-width: 400px;
        text-align: right;
    }
}

.contact-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-headline {
    font-size: clamp(36px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 25px 0;
    word-break: break-word;
}

@media (min-width: 768px) {
    .contact-headline {
        margin: 30px 0;
    }
}

.contact-phone {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--color-primary);
}

.contact-form {
    max-width: 800px;
    margin: 50px 0 30px;
}

@media (min-width: 768px) {
    .contact-form {
        margin: 60px 0 40px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: clamp(15px, 2vw, 16px);
    font-family: var(--font-inter);
    transition: all 0.3s ease;
    min-height: 48px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

.form-group select option {
    background: var(--color-dark-navy);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 20px;
    padding: 16px 36px;
    font-size: clamp(12px, 2vw, 14px);
    cursor: pointer;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-submit {
        width: auto;
    }
}

.hidden {
    display: none;
}

.service-area {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.67;
    margin-top: 30px;
    opacity: 0.8;
    font-weight: 500;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        animation: fadeIn 0.6s ease forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
}

a, button, .tag, .partner-card, .social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center {
    text-align: center;
}

.mt-auto {
    margin-top: auto;
}

html {
    scroll-behavior: smooth;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   NAVIGATION BULLETS - MOVED FURTHER RIGHT
   ========================================== */
.nav-section-indicator {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

@media (min-width: 768px) {
    .nav-section-indicator {
        right: 15px;
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .nav-section-indicator {
        right: 20px;
        gap: 15px;
    }
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.bullet:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.bullet.active {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border: 1px solid rgba(255, 72, 31, 0.5);
    box-shadow: 0 0 12px rgba(255, 72, 31, 0.6), 0 3px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .bullet {
        width: 10px;
        height: 10px;
    }
    
    .bullet.active {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================
   NAVIGATION MENU OVERLAY
   ========================================== */
.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--color-dark-navy);
    padding: 80px 40px 40px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .nav-menu {
        max-width: 500px;
        padding: 100px 60px 60px;
    }
}

.nav-menu-overlay.active .nav-menu {
    transform: translateX(0);
}

.nav-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media (min-width: 768px) {
    .nav-menu-close {
        top: 30px;
        right: 30px;
    }
}

.nav-menu-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.nav-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .nav-menu-content {
        gap: 40px;
        padding-bottom: 60px;
    }
}

.nav-menu-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-menu-item:hover {
    color: var(--color-primary);
    transform: translateX(10px);
}

.nav-menu-number {
    font-size: 14px;
    color: var(--color-grey-40);
    min-width: 30px;
    flex-shrink: 0;
    font-weight: 600;
}

.nav-menu-label {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================
   SUCCESS MODAL
   ========================================== */
   .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-grey-60);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-black);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-white);
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease-out 0.2s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
}

.modal-message {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.6;
    color: var(--color-grey-60);
    margin-bottom: 30px;
}

.modal-box .btn {
    margin-top: 10px;
}