html {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}

body {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    max-width: 100vw;
    position: relative;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 1rem 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    will-change: transform;
}

header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

.navbar {
    width: 100%;
}

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

.logo {
    width: 120px;      
    height: auto;      
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger .close-icon {
    display: none;
    font-size: 28px;
    font-weight: bold;
    color: #2C3E50;
    line-height: 1;
}

.hamburger.active .bar {
    display: none;
}

.hamburger.active .close-icon {
    display: block;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A7BA7;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4A7BA7;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.btn-language {
    background-color: #4A7BA7;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow:0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-language:hover {
    background-color: #3A6485;
    transform: translateY(-2px);
}

.btn-language .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.language-dropdown li {
    margin: 0;
}

.language-dropdown a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.language-dropdown a::after {
    content: none !important;
}

.language-dropdown a:hover {
    background-color: #f5f7fa;
    color: #4A7BA7;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: #E8F1F8;
    color: #4A7BA7;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 2.8rem !important;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.2rem !important;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background-color: #4A7BA7;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #3A6485;
    transform: translateY(-2px);
}


/* Hero Image Grid */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
}

.grid-item {
    position: relative;
    aspect-ratio: 0.95;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Dekorasi Panah */
.arrow-decoration {
    position: absolute;
    top: 15px;
    left: -25px;
    color: #2C3E50;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
    letter-spacing: -2px;
}

/* Dekorasi X */
.x-decoration {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 55px;
    height: 55px;
    background: #4A7BA7;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.4);
    z-index: 10;
}

/* Badge Styles untuk Grid */
.grid-item .badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #2C3E50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.4);
    font-size: 10px;
    white-space: nowrap;
    z-index: 10;
}


.item-1 {
    background: linear-gradient(135deg, #5DABB8 0%, #4A95A1 100%);
}

.item-2 {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
}

.item-3 {
    background: linear-gradient(135deg, #2C3E50 0%, #243342 100%);
}

.item-4 {
    background: linear-gradient(135deg, #5DABB8 0%, #4A8FA0 100%);
}

/* Garis Diagonal pada Item 2 */
.item-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255, 255, 255, 0.4) 4px,
        rgba(255, 255, 255, 0.4) 8px
    );
    border-radius: 0 15px 0 0;
    z-index: 1;
}

/* Core Values Section */
.core-values {
    text-align: center;
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #34495E 50%, #34495E 100%);
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow-x: auto;
}

.value-card {
    background: #2C3E50;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.value-card:hover {
    background: #4A7BA7;
    transform: translateY(-5px);
}

.value-card-top {
    background: rgba(0, 0, 0, 0.15);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.value-card:hover .value-card-top {
    background: rgba(0, 0, 0, 0.2);
}

.value-card-bottom {
    background: #2C3E50;
    padding: 1.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.value-card:hover .value-card-bottom {
    background: #3A6485;
}

.value-icon {
    font-size: 3.5rem;
}

.value-card h3 {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.value-card p {
    font-size: 1.1rem !important;
    line-height: 1.5;
    opacity: 0.95;
    margin-top: 0.5rem;
}

.value-card p small {
    font-size: 1rem !important;
    display: block;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose {
    background: #34495E;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose .section-title {
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 3rem 0;
    margin-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 1rem;
}

/* Baris pertama - 4 cards */
.why-card:nth-child(1) {
    grid-column: 1 / 3;
}

.why-card:nth-child(2) {
    grid-column: 3 / 5;
}

.why-card:nth-child(3) {
    grid-column: 5 / 7;
}

.why-card:nth-child(4) {
    grid-column: 7 / 9;
}

/* Baris kedua - 3 cards (centered) */
.why-card:nth-child(5) {
    grid-column: 2 / 4;
}

.why-card:nth-child(6) {
    grid-column: 4 / 6;
}

.why-card:nth-child(7) {
    grid-column: 6 / 8;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A7BA7 0%, #5B8DBE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(74, 123, 167, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(74, 123, 167, 0.6);
}

.why-card h3 {
    color: white;
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    min-height: 42px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem !important;
    line-height: 1.5;
    margin: 0;
}

/* Connection Lines - Baris pertama (1-4) */
.why-card:nth-child(1)::after,
.why-card:nth-child(2)::after,
.why-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4A7BA7 0%, rgba(74, 123, 167, 0.5) 100%);
    z-index: 1;
}

.why-card:nth-child(1)::before,
.why-card:nth-child(2)::before,
.why-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 0;
    width: 10px;
    height: 10px;
    background: #4A7BA7;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.3);
}

/* Connection Lines - Baris kedua (5-6) */
.why-card:nth-child(5)::after,
.why-card:nth-child(6)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4A7BA7 0%, rgba(74, 123, 167, 0.5) 100%);
    z-index: 1;
}

.why-card:nth-child(5)::before,
.why-card:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 0;
    width: 10px;
    height: 10px;
    background: #4A7BA7;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.3);
}

/* Our Values Section */
.our-values {
    background-color: #fff;
    padding: 3rem 0;
    position: relative;
}

.our-values .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
}

.values-header {
    text-align: left;
    flex: 0 0 auto;
    max-width: 300px;
}

.values-title {
    font-size: 3rem !important;
    color: #2C3E50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.values-subtitle {
    color: #666;
    font-size: 1.2rem !important;
    line-height: 1.5;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 0 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover {
    transform: translateX(-5px);
}

.value-item:hover .value-number {
    background: #3A6485;
    transform: scale(1.1);
}

.value-number {
    width: 28px;
    height: 28px;
    background: #4A7BA7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-content h3 {
    font-size: 1.4rem !important;
    color: #2C3E50;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   OUR SERVICES SECTION
   ======================================== */
.our-services {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #4A7BA7;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(74, 123, 167, 0.3);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f7fa;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-content {
    padding: 1.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Responsive Design untuk Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .our-services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.5rem 1.2rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
        min-height: auto;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients-section {
    background-color: #fff;
    padding: 5rem 0;
}

.clients-section .section-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 4rem;
    font-weight: 700;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    width: 100%;
    max-width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0.3rem;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.client-logo:hover img {
    filter: brightness(1.05);
}

/* Footer */
footer {
    background: #34495E;
    color: white;
    padding: 0;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #4A7BA7;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-social a:hover {
    background: #4A7BA7;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu */
    .hamburger {
        display: flex !important;
    }

    /* Hide nav menu by default, show when active */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px 30px;
        gap: 1.5rem;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1rem;
    }

    .language-dropdown {
        position: relative;
        top: 0;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Hero Image Mobile */
    .hero-image {
        max-width: 100%;
        padding: 10px 0;
    }
    
    .image-grid {
        gap: 10px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .grid-item {
        aspect-ratio: 1;
        border-radius: 12px;
    }
    
    .grid-item img {
        border-radius: 12px;
    }
    
    .arrow-decoration {
        display: none;
    }
    
    .x-decoration {
        width: 40px;
        height: 40px;
        font-size: 22px;
        bottom: -8px;
        right: -8px;
    }
    
    .grid-item .badge {
        display: none;
    }
    
    .item-2::after {
        width: 40px;
        height: 40px;
    }

    /* Core Values Mobile */
    .core-values {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .value-card {
        min-width: 100%;
        border-radius: 12px;
    }

    .value-card-top {
        min-height: 100px;
        padding: 1.5rem;
    }

    .value-card-bottom {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .value-card p {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }

    .value-card p small {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    /* Why Choose Mobile */
    .why-choose {
        padding: 3rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-card {
        grid-column: auto !important;
        padding: 0;
    }
    
    /* Remove connection lines on mobile */
    .why-card::after,
    .why-card::before {
        display: none !important;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .why-card h3 {
        min-height: auto;
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Our Values Mobile */
    .our-values {
        padding: 3rem 0;
    }

    .our-values .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .values-header {
        text-align: center;
        max-width: 100%;
    }
    
    .values-title {
        font-size: 1.75rem;
        margin-bottom: 0.6rem;
    }

    .values-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .values-list {
        gap: 0.8rem;
        width: 100%;
    }

    .value-item {
        gap: 1rem;
        padding: 0.8rem 0;
        border-radius: 0;
    }

    .value-item:hover {
        transform: none;
    }

    .value-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .value-content h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Clients Section Mobile */
    .clients-section {
        padding: 3rem 0;
    }

    .clients-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .client-logo {
        max-width: 150px;
        height: 60px;
    }
    
    /* Footer Mobile */
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .footer-brand {
        width: 100%;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-right {
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding: 1.2rem 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 16px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .values-grid {
        flex-wrap: wrap;
    }
    
    .value-card {
        min-width: calc(50% - 0.75rem);
    }
    
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 0;
    }
    
    .why-card {
        padding: 0 0.5rem;
    }
    
    .why-card:nth-child(1),
    .why-card:nth-child(2),
    .why-card:nth-child(3),
    .why-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .why-card:nth-child(5) {
        grid-column: 1 / 3;
    }
    
    .why-card:nth-child(6) {
        grid-column: 2 / 4;
    }
    
    .why-card:nth-child(7) {
        grid-column: 3 / 5;
    }

    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}