* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    list-style: none;
    box-sizing: border-box;
    transition: 0.2s linear;
    outline: none;
    border: none;
    text-transform: none;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --hover-gray: #333333;
    --discord-purple: #5865F2;
    /* --discord-purple-light: #7289DA; */
    --discord-purple-dark: #4752C4;
    --success-green: #4CAF50;
    --error-red: #f44336;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 7%;
    z-index: 1000;
    background: var(--primary-white);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.logo img {
    height: 75px;
    width: 80px;
}

header .logo span {
    color: white;
}

.logos {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -1px;
}

.logos span {
    color: var(--primary-black);
    border-bottom: 3px solid var(--primary-black);
}

header .navbar a {
    position: relative;
    font-size: 1.6rem;
    color: black;
    padding: 0 1rem;
    transition: color 0.3s ease;
}

header .navbar>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 80%;
    /* panjang garis (sesuaikan 40–60%) */
    height: 2px;
    background-color: var(--primary-black);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    /* mulai dari tengah (0) */
    transform-origin: center;
    /* titik animasi di tengah */
    transition: transform 0.4s ease;
}

header .navbar a:hover {
    color: #000;
}

header .navbar a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

header .navbar a.active {
    color: #000;
}

header .navbar a.active::after {
    transform: translateX(-50%) scaleX(1);
}

header .icons a {
    font-size: 2.5rem;
    margin-left: 1.5rem;
    color: #333;
    transition: 0.4s;
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    padding: 0.5rem 1.5rem;
    color: #333;
    border-radius: 0.5rem;
    border: .1rem solid rgba(0, 0, 0, .3);
    display: none;
}

section {
    padding: 5rem 5%;
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Gradient Mesh Background */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 116, 139, 0.03) 0%, transparent 50%); */
    z-index: 0;
}

/* Animated Grid Lines */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image:
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px); */
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.10;
    animation: floatIcon 20s ease-in-out infinite;
}

.floating-icon.gradient {
    background: linear-gradient(135deg, #2C2F33, #4E5058, #B9BBBE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    filter: drop-shadow(0 4px 8px rgba(79, 86, 96, 0.15));
}

.floating-icon:nth-child(1) {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 8%;
    font-size: 2.8rem;
    animation-delay: 2.5s;
    animation-duration: 24s;
}

.floating-icon:nth-child(3) {
    top: 25%;
    left: 12%;
    font-size: 4rem;
    animation-delay: 1.2s;
    animation-duration: 22s;
}

.floating-icon:nth-child(4) {
    bottom: 15%;
    left: 8%;
    font-size: 3.2rem;
    animation-delay: 3.5s;
    animation-duration: 21s;
}

.floating-icon:nth-child(5) {
    top: 40%;
    right: 25%;
    font-size: 2.4rem;
    animation-delay: 1.8s;
    animation-duration: 23s;
}

.floating-icon:nth-child(6) {
    bottom: 30%;
    left: 20%;
    font-size: 3rem;
    animation-delay: 2.8s;
    animation-duration: 25s;
}

.floating-icon:nth-child(7) {
    top: 15%;
    left: 40%;
    font-size: 2.2rem;
    animation-delay: 0.8s;
    animation-duration: 19s;
}

.floating-icon:nth-child(8) {
    bottom: 20%;
    right: 32%;
    font-size: 2.6rem;
    animation-delay: 4s;
    animation-duration: 26s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.12;
    }

    25% {
        transform: translate(25px, -35px) rotate(12deg) scale(1.05);
        opacity: 0.15;
    }

    50% {
        transform: translate(-20px, -60px) rotate(-10deg) scale(0.95);
        opacity: 0.18;
    }

    75% {
        transform: translate(30px, -40px) rotate(15deg) scale(1.08);
        opacity: 0.14;
    }

    90% {
        opacity: 0.1;
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04), transparent 70%);
    top: -150px;
    right: -150px;
    animation: pulse 10s ease-in-out infinite;
}

.glow-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(50, 50, 50, 0.03), transparent 70%);
    bottom: -120px;
    left: -120px;
    animation: pulse 12s ease-in-out infinite;
    animation-delay: 2s;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 80, 80, 0.025), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 14s ease-in-out infinite;
    animation-delay: 4s;
}


@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 850px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-black);
    border-radius: 50px;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background: var(--primary-black);
    border: 1.5px solid var(--primary-black);
    color: var(--primary-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--primary-white);
    background: var(--primary-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-white);
    border: 1.5px solid var(--discord-purple);
    color: var(--discord-purple);
    transition: 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--discord-purple-dark);
    color: var(--primary-white);
    border-color: var(--discord-purple-dark);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.services {
    padding: 10rem 5%;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-black);
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.8rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.service-card {
    background: var(--primary-white);
    padding: 4rem 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    /* background: var(--primary-black); */
    background-color: var(--discord-purple);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 3rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about {
    padding: 10rem 5%;
    background: var(--primary-white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-text p {
    font-size: 1.7rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 1rem; */
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    /* background: var(--light-gray); */
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-black);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    background: linear-gradient(135deg, var(--accent-gray) 0%, var(--primary-black) 100%);
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 8rem;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
    animation: float 6s ease-in-out infinite reverse;
}

.about-image i {
    z-index: 2;
    animation: pulse-code 3s ease-in-out infinite;
}

@keyframes pulse-code {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cta-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url("../assets/img/CTA_Contact.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInDown 1s ease;
}

.cta-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease;
}

.cta-btn-wrapper {
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-btn {
    display: inline-block;
    background: var(--discord-purple-dark);
    border: 1.5px solid var(--discord-purple);
    color: var(--primary-white);
    transition: 0.3s ease;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.6rem;
    /* font-weight: 600; */
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--discord-purple-dark);
    color: var(--primary-white);
    border-color: var(--discord-purple-dark);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    transform: scale(1.05);
}

/* .btn-secondary {
    background: var(--primary-white);
    border: 1.5px solid var(--discord-purple);
    color: var(--discord-purple);
    transition: 0.3s ease;
}
/* Service Page Styles */

/* Hero Section - Service */
#service.hero {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--primary-white);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

#service.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

#service.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridSlide 20s linear infinite;
    z-index: 0;
    transform: rotate(-12deg);
}

.service-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.service-floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    color: rgba(255, 255, 255, 1);
    animation: floatServiceIcon 18s ease-in-out infinite;
    filter: blur(0.2px);
}

.service-floating-icon:nth-child(1) {
    top: 15%;
    right: 12%;
    animation-delay: 0s;
    font-size: 3rem;
}

.service-floating-icon:nth-child(2) {
    top: 65%;
    right: 10%;
    font-size: 2.2rem;
    animation-delay: 2s;
}

.service-floating-icon:nth-child(3) {
    top: 30%;
    left: 10%;
    font-size: 3.5rem;
    animation-delay: 1s;
}

.service-floating-icon:nth-child(4) {
    bottom: 20%;
    left: 15%;
    font-size: 2.8rem;
    animation-delay: 3s;
}

.service-floating-icon:nth-child(5) {
    top: 45%;
    right: 30%;
    font-size: 2rem;
    animation-delay: 1.5s;
}

@keyframes floatServiceIcon {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    25% {
        transform: translate(20px, -25px) rotate(8deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(-15px, -45px) rotate(-6deg);
        opacity: 0.25;
    }

    75% {
        transform: translate(22px, -30px) rotate(10deg);
        opacity: 0.18;
    }

    90% {
        opacity: 0.1;
    }
}

.service-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.service-glow-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    top: -100px;
    left: -100px;
    animation: servicePulse 8s ease-in-out infinite;
}

.service-glow-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.06), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: servicePulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes servicePulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

#service .hero-content {
    max-width: 850px;
    z-index: 2;
    position: relative;
    text-align: center;
}

#service .hero-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#service .hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerDark 3s infinite;
}

#service .hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both, textShine 8s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.4);
}

#service .hero p {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Services Section */
.main-services {
    padding: 10rem 5%;
    background: var(--primary-white);
    position: relative;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 5rem auto 0;
}

.main-service-card {
    background: var(--primary-white);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid var(--border-gray);
    transition: all 0.4s ease;
    position: relative;
    animation: slideUpService 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.main-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-black);
}

.main-service-card.featured {
    border-color: var(--primary-black);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #FFC50F;
    color: var(--primary-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-service-card.featured .service-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.service-number {
    font-size: 7rem;
    font-weight: 900;
    margin-top: 15px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.main-service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-icon-main {
    width: 80px;
    height: 80px;
    background: var(--primary-black);
    color: var(--primary-white);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 3.5rem;
    transition: all 0.4s ease;
}

.main-service-card.featured .service-icon-main {
    background: var(--discord-purple);
    color: var(--primary-white);
}

.main-service-card:hover .service-icon-main {
    transform: scale(1.1) rotate(5deg);
}

.service-card-body {
    padding: 3rem;
}

.service-card-body h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.service-card-body p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #444;
    border-bottom: 1px solid var(--border-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--primary-black);
    font-size: 1.6rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--primary-white);
    border: 1.5px solid var(--discord-purple);
    color: var(--discord-purple);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: var(--discord-purple-dark);
    color: var(--primary-white);
    border-color: var(--discord-purple-dark);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    transform: translateX(5px);
}

@keyframes slideUpService {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.process-section {
    padding: 10rem 5%;
    background: #f8f9fa;
}

.process-timeline {
    max-width: 1200px;
    margin: 5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-gray);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-white);
    border: 3px solid var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: var(--primary-black);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    background: var(--discord-purple);
    color: var(--primary-white);
    border: 3px solid var(--discord-purple);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.step-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #666;
}

/* Additional Services */
.additional-services {
    padding: 10rem 5%;
    background: var(--primary-white);
}

.additional-grid {
    max-width: 1200px;
    margin: 5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.additional-card {
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: scaleIn 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.additional-card:hover {
    background: var(--primary-white);
    /* border-color: var(--primary-black); */
    /* transform: translateY(-10px); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.additional-icon {
    width: 70px;
    height: 70px;
    background: var(--discord-purple);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2.8rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.additional-card:hover .additional-icon {
    animation: wiggleScale 0.6s ease;
}

@keyframes wiggleScale {
    0% {
        transform: scale(1) rotate(0);
    }

    20% {
        transform: scale(1.1) rotate(4deg);
    }

    40% {
        transform: scale(1.1) rotate(-4deg);
    }

    60% {
        transform: scale(1.1) rotate(3deg);
    }

    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.additional-card h4 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.additional-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Technology Section */
.technology-section {
    padding: 10rem 5%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.technology-section .section-header h2 {
    color: var(--primary-white);
}

.technology-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.technology-section .section-badge {
    border-color: var(--primary-white);
    color: var(--primary-white);
}

.tech-categories {
    max-width: 1200px;
    margin: 5rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 2.2rem;
    color: var(--primary-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-tag:hover {
    background: var(--discord-purple);
    color: var(--primary-white);
    transform: translateY(-3px);
}

/* About Us Page */
#about.hero {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--primary-white);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

#about.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    z-index: 0;
}

#about.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridSlide 20s linear infinite;
    z-index: 0;
    transform: rotate(-12deg);
}

@keyframes gridSlide {
    0% {
        transform: translate(0, 0) rotate(-12deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(-12deg);
    }
}

.about-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.about-floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    color: rgba(255, 255, 255, 1);
    animation: floatContactIcon 18s ease-in-out infinite;
    filter: blur(0.2px);
}

.about-floating-icon:nth-child(1) {
    top: 15%;
    right: 12%;
    animation-delay: 0s;
    font-size: 3rem;
}

.about-floating-icon:nth-child(2) {
    top: 65%;
    right: 10%;
    font-size: 2.2rem;
    animation-delay: 2s;
}

.about-floating-icon:nth-child(3) {
    top: 30%;
    left: 10%;
    font-size: 3.5rem;
    animation-delay: 1s;
}

.about-floating-icon:nth-child(4) {
    bottom: 20%;
    left: 15%;
    font-size: 2.8rem;
    animation-delay: 3s;
}

.about-floating-icon:nth-child(5) {
    top: 45%;
    right: 30%;
    font-size: 2rem;
    animation-delay: 1.5s;
}

@keyframes floatContactIcon {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    25% {
        transform: translate(20px, -25px) rotate(8deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(-15px, -45px) rotate(-6deg);
        opacity: 0.25;
    }

    75% {
        transform: translate(22px, -30px) rotate(10deg);
        opacity: 0.18;
    }

    90% {
        opacity: 0.1;
    }
}

.about-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.about-glow-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    top: -100px;
    left: -100px;
    animation: aboutPulse 8s ease-in-out infinite;
}

.about-glow-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.05), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: aboutPulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes aboutPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

#about .hero-content {
    max-width: 850px;
    z-index: 2;
    position: relative;
    text-align: center;
}

#about .hero-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#about .hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerDark 3s infinite;
}

@keyframes shimmerDark {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

#about .hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--primary-white);
}

#about .hero p {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.company-overview {
    padding: 8rem 5%;
    background: var(--primary-white);
    position: relative;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.overview-text {
    animation: slideInLeft 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overview-text h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-black);
    line-height: 1.2;
}

.overview-text .highlight {
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.overview-text p {
    font-size: 1.7rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 2rem;
}

.overview-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* animation: slideInRight 1s;
    animation-timeline: view();
    animation-range: entry 0% cover 30%; */
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.projects-logo-grid {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-logo-grid h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 2.5rem;
}

.projects-logo-grid p {
    text-align: center;
    margin-bottom: 2rem;
    padding-right: 20px;
    padding-left: 20px;
    color: #666;
    font-size: 1.5rem;
    text-transform: none;
}

.logo-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.logo-item {
    background: transparent;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    min-height: 100px;
}

.logo-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); */
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%);
    animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
} */

.values-section {
    padding: 8rem 5%;
    background: #f8f9fa;
}

.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    animation: fadeInUp 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.values-header .section-badge {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.values-header h2 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: none;
}

.values-header p {
    font-size: 1.7rem;
    color: #666;
    line-height: 1.8;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    background: var(--primary-white);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardPopUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cardPopUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--discord-purple), var(--discord-purple-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-black);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--discord-purple);
    color: var(--primary-white);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.value-card p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.team-section {
    padding: 8rem 5%;
    background: var(--primary-white);
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    animation: fadeInUp 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

.team-header h2 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.7rem;
    color: #666;
    line-height: 1.8;
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.team-member {
    text-align: center;
    animation: memberSlideUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes memberSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    justify-content: center;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-photo i {
    font-size: 4rem;
    color: white;
}

.team-member h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-size: 1.4rem;
    color: #666;
    font-weight: 600;
}

.member-photo::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-photo::before {
    opacity: 1;
}


.timeline-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.timeline-header {
    text-align: center;
    margin-bottom: 6rem;
}

.timeline-header h2 {
    color: var(--primary-white);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.timeline-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-white);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 15px;
    border: 1px solid var(--border-gray);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-white);
    border-radius: 50%;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.business-units-section {
    padding: 10rem 5%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.business-units-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.business-units-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.business-units-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-intro {
    text-align: center;
    margin-bottom: 7rem;
    position: relative;
    animation: fadeInDown 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
}

.section-intro::before {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    letter-spacing: 10px;
}

.section-intro h2 {
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #1a1a1a 20%,
            #1a1a1a 80%,
            transparent 100%);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {

    0%,
    100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.section-intro p {
    font-size: 1.8rem;
    color: #666;
    font-weight: 500;
    margin-top: 3rem;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.unit-card {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: cardSlideUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.unit-card:first-child,
.unit-card:nth-child(2),
.unit-card:nth-child(3) {
    min-height: 500px;
    grid-row: auto;
}

.unit-card .unit-logo {
    width: 100px;
    height: 100px;
}

.unit-card h3 {
    font-size: 3rem;
}

.unit-card .unit-tagline {
    font-size: 1.8rem;
}

.unit-card .unit-description {
    font-size: 1.5rem;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.unit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.unit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 30px 0 0;
    transition: all 0.5s ease;
}

.unit-card:nth-child(1)::before {
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.05) 50%);
}

.unit-card:nth-child(1):hover::before {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.08) 50%);
}

.unit-card:nth-child(2)::before {
    background: linear-gradient(135deg, transparent 50%, rgba(139, 90, 43, 0.08) 50%);
}

.unit-card:nth-child(2):hover::before {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, transparent 50%, rgba(139, 90, 43, 0.12) 50%);
}

.unit-card:nth-child(3)::before {
    background: linear-gradient(135deg, transparent 50%, rgba(30, 144, 255, 0.08) 50%);
}

.unit-card:nth-child(3):hover::before {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, transparent 50%, rgba(30, 144, 255, 0.12) 50%);
}

.unit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.unit-card:nth-child(1)::after {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.02) 0%,
            transparent 50%,
            rgba(100, 100, 100, 0.02) 100%);
}

.unit-card:nth-child(2)::after {
    background: linear-gradient(135deg,
            rgba(139, 90, 43, 0.03) 0%,
            transparent 50%,
            rgba(160, 82, 45, 0.03) 100%);
}

.unit-card:nth-child(3)::after {
    background: linear-gradient(135deg,
            rgba(30, 144, 255, 0.03) 0%,
            transparent 50%,
            rgba(65, 105, 225, 0.03) 100%);
}

.unit-card:hover::after {
    opacity: 1;
}

.unit-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

.unit-card:nth-child(1):hover {
    border-color: #2a2a2a;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px #2a2a2a;
}

.unit-card:nth-child(2):hover {
    border-color: #8B5A2B;
    box-shadow:
        0 25px 60px rgba(139, 90, 43, 0.25),
        0 0 0 1px #8B5A2B;
}

.unit-card:nth-child(3):hover {
    border-color: #1E90FF;
    box-shadow:
        0 25px 60px rgba(30, 144, 255, 0.25),
        0 0 0 1px #1E90FF;
}

.unit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.unit-logo {
    width: 130px;
    height: 130px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    overflow: hidden;
}

.unit-card:nth-child(1) .unit-logo {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #000000;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.unit-card:nth-child(2) .unit-logo {
    background: linear-gradient(135deg, #A0522D 0%, #8B5A2B 100%);
    border: 3px solid #6B4423;
    box-shadow:
        0 10px 30px rgba(139, 90, 43, 0.3),
        inset 0 -2px 10px rgba(107, 68, 35, 0.4);
}

.unit-card:nth-child(3) .unit-logo {
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    border: 3px solid #0066CC;
    box-shadow:
        0 10px 30px rgba(30, 144, 255, 0.3),
        inset 0 -2px 10px rgba(0, 102, 204, 0.4);
}

.unit-logo img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: brightness(0) invert(1);
}

.unit-card:nth-child(2) .unit-logo img {
    filter: brightness(0) invert(1) sepia(1) saturate(0) brightness(1.8);
}

.unit-card:nth-child(3) .unit-logo img {
    filter: brightness(1) invert(0);
}

.unit-card:hover .unit-logo {
    transform: scale(1.1) rotate(5deg);
}

.unit-card:nth-child(1):hover .unit-logo {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        inset 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.unit-card:nth-child(2):hover .unit-logo {
    box-shadow:
        0 15px 40px rgba(139, 90, 43, 0.4),
        inset 0 -2px 10px rgba(107, 68, 35, 0.5);
}

.unit-card:nth-child(3):hover .unit-logo {
    box-shadow:
        0 15px 40px rgba(30, 144, 255, 0.4),
        inset 0 -2px 10px rgba(0, 102, 204, 0.5);
}

.unit-card:hover .unit-logo img {
    transform: scale(1.05);
}

.unit-logo::before {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* IT Division Badge */
.unit-card:nth-child(1) .unit-logo::before {
    border: 3px solid #1a1a1a;
    color: #1a1a1a;
}

/* Property Division Badge */
.unit-card:nth-child(2) .unit-logo::before {
    border: 3px solid #8B5A2B;
    color: #8B5A2B;
}

/* Media Division Badge */
.unit-card:nth-child(3) .unit-logo::before {
    border: 3px solid #1E90FF;
    color: #1E90FF;
}

.unit-card h3 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* IT Division Title */
.unit-card:nth-child(1) h3 {
    color: #1a1a1a;
}

/* Property Division Title */
.unit-card:nth-child(2) h3 {
    color: #6B4423;
}

/* Media Division Title */
.unit-card:nth-child(3) h3 {
    color: #0066CC;
}

.unit-card:hover h3 {
    transform: translateX(5px);
}

.unit-tagline {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* IT Division Tagline */
.unit-card:nth-child(1) .unit-tagline {
    color: #4a4a4a;
}

.unit-card:nth-child(1):hover .unit-tagline {
    color: #2a2a2a;
}

/* Property Division Tagline */
.unit-card:nth-child(2) .unit-tagline {
    color: #8B5A2B;
}

.unit-card:nth-child(2):hover .unit-tagline {
    color: #6B4423;
}

/* Media Division Tagline */
.unit-card:nth-child(3) .unit-tagline {
    color: #1E90FF;
}

.unit-card:nth-child(3):hover .unit-tagline {
    color: #0066CC;
}

.unit-card:hover .unit-tagline {
    transform: translateX(5px);
}

.unit-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    position: relative;
    z-index: 2;
    flex: 1;
}

.unit-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

/* IT Division Border */
.unit-card:nth-child(1) .unit-links {
    border-top: 2px solid #e8e8e8;
}

/* Property Division Border */
.unit-card:nth-child(2) .unit-links {
    border-top: 2px solid rgba(139, 90, 43, 0.15);
}

/* Media Division Border */
.unit-card:nth-child(3) .unit-links {
    border-top: 2px solid rgba(30, 144, 255, 0.15);
}

.unit-link {
    width: 52px;
    height: 52px;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.unit-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.unit-link:hover::before {
    width: 120px;
    height: 120px;
}

.unit-link i {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.unit-link:hover {
    transform: translateY(-8px) scale(1.12);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.unit-link:hover i {
    transform: scale(1.2) rotate(-10deg);
    color: #ffffff;
}

.unit-link:has(.fa-globe)::before {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.unit-link:has(.fa-globe):hover {
    border-color: #4285F4;
}

.unit-link:has(.fa-instagram)::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.unit-link:has(.fa-instagram):hover {
    border-color: #E1306C;
}

.unit-link:has(.fa-whatsapp)::before {
    background: #25D366;
}

.unit-link:has(.fa-whatsapp):hover {
    border-color: #25D366;
}

.unit-link:has(.fa-envelope)::before {
    background: linear-gradient(135deg, #EA4335 0%, #FBBC05 100%);
}

.unit-link:has(.fa-envelope):hover {
    border-color: #EA4335;
}

.unit-link:has(.fa-tiktok)::before {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
}

.unit-link:has(.fa-tiktok):hover {
    border-color: #000000;
}

.faq-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    /* background: linear-gradient(135deg, white 0%, #2a2a2a 100%); */
    background: var(--primary-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: faqSlideUp 0.6s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes faqSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-question {
    padding: 1.5rem 2rem;
    color: var(--primary-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.3rem;
}

.faq-question span {
    text-transform: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.5rem 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.3rem;
    text-transform: none;
}

/* Contact Page */
#contact.hero {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--primary-white);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

#contact.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    z-index: 0;
}

#contact.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridSlide 20s linear infinite;
    z-index: 0;
    transform: rotate(-12deg);
}

@keyframes gridSlide {
    0% {
        transform: translate(0, 0) rotate(-12deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(-12deg);
    }
}

.contact-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.contact-floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    color: rgba(255, 255, 255, 1);
    animation: floatContactIcon 18s ease-in-out infinite;
    filter: blur(0.2px);
}

.contact-floating-icon:nth-child(1) {
    top: 15%;
    right: 12%;
    animation-delay: 0s;
    font-size: 3rem;
}

.contact-floating-icon:nth-child(2) {
    top: 65%;
    right: 10%;
    font-size: 2.2rem;
    animation-delay: 2s;
}

.contact-floating-icon:nth-child(3) {
    top: 30%;
    left: 10%;
    font-size: 3.5rem;
    animation-delay: 1s;
}

.contact-floating-icon:nth-child(4) {
    bottom: 20%;
    left: 15%;
    font-size: 2.8rem;
    animation-delay: 3s;
}

.contact-floating-icon:nth-child(5) {
    top: 45%;
    right: 30%;
    font-size: 2rem;
    animation-delay: 1.5s;
}

@keyframes floatContactIcon {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    25% {
        transform: translate(20px, -25px) rotate(8deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(-15px, -45px) rotate(-6deg);
        opacity: 0.25;
    }

    75% {
        transform: translate(22px, -30px) rotate(10deg);
        opacity: 0.18;
    }

    90% {
        opacity: 0.1;
    }
}

#contact .hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    text-align: center;
}

#contact .hero-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#contact .hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerDark 3s infinite;
}

@keyframes shimmerDark {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

#contact .hero h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: fadeInUp 1s ease 0.2s both, textGlow 6s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

@keyframes textGlow {

    0%,
    100% {
        background-position: 0% center;
        filter: brightness(1);
    }

    50% {
        background-position: 100% center;
        filter: brightness(1.2);
    }
}

#contact .hero p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.85;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

#contact .btn-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

#contact .btn {
    padding: 1.6rem 3.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

#contact .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* background: rgba(0, 0, 0, 0.2); */
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#contact .btn:hover::before {
    width: 350px;
    height: 350px;
}

#contact .btn-primary {
    background: var(--discord-purple-dark);
    border: 1.5px solid var(--discord-purple);
    color: var(--primary-white);
    /* box-shadow:
        0 5px 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(0, 0, 0, 0.1); */
}

#contact .btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--discord-purple-dark);
    color: var(--primary-white);
    border-color: var(--discord-purple-dark);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

#contact .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#contact .btn-secondary:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--primary-white);
    color: var(--primary-black);
    box-shadow:
        0 10px 25px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

#contact .btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

#contact .btn-primary:hover i {
    transform: translateY(3px);
}

#contact .btn-secondary:hover i {
    transform: rotate(15deg) scale(1.1);
}

.contact-section {
    padding: 10rem 5%;
    background: var(--light-gray);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-card {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 700;
}

.info-card h3 i {
    font-size: 2.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--discord-purple);
    border: 1.5px solid var(--discord-purple-dark);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1) rotate(10deg);
    background: var(--discord-purple);
    border: 1.5px solid var(--discord-purple-dark);
}

.info-item div h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
}

.info-item div p,
.info-item div a {
    font-size: 1.4rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item div a:hover {
    color: var(--primary-black);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: var(--discord-purple);
    border: 1.5px solid var(--discord-purple-dark);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--discord-purple);
    border: 1.5px solid var(--discord-purple-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: var(--primary-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 800;
}

.contact-form>p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
}

.alert {
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert.show {
    display: flex;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 2rem;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    color: var(--primary-black);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-black);
    background: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.error-message {
    display: none;
    color: #f44336;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    font-weight: 500;
    animation: shake 0.3s ease;
}

.error-message.show {
    display: block;
}

.error-message i {
    margin-right: 0.5rem;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #f44336 !important;
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #4CAF50 !important;
}

.submit-btn {
    width: 100%;
    padding: 1.8rem;
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--primary-white);
    border: 1.5px solid var(--discord-purple);
    color: var(--discord-purple);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}


.submit-btn:hover:not(:disabled) {
    background: var(--discord-purple-dark);
    color: var(--primary-white);
    border-color: var(--discord-purple-dark);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn i {
    font-size: 2rem;
}

.map-section {
    height: 500px;
    background: var(--primary-white);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* Footer */
footer {
    background: var(--accent-gray);
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
    font-size: 1.25rem;
}

.footer-section a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.phone-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2a2a2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-phone 2s infinite;
}

.phone-float:hover {
    background: #2a2a2a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.1);
}

.phone-float i {
    animation: shake 1s ease-in-out infinite;
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }
}

.phone-float::before {
    content: 'Hubungi Kami via Telepon';
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    /* font-family: 'Poppins', sans-serif; */
}

.phone-float::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.phone-float:hover::before,
.phone-float:hover::after {
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #25D366;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 3.8rem;
    animation: shake 1s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }

}

.whatsapp-float::before {
    content: 'Hubungi Kami Melalui Whatsapp!';
    position: absolute;
    right: 81.5px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 70px;
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
}

/* Tablet Landscape - 991px */
@media (max-width: 991px) {
    html {
        font-size: 55%;
        overflow-x: hidden;
    }

    body {
        max-width: 100vw;
    }

    header {
        padding: 1rem 5%;
    }


    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        border-top: 0.1rem solid rgba(0, 0, 0, .1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s ease;
    }

    header #toggler:checked~.navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        color: var(--border-gray);
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    header .navbar>a::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 80%;
        /* panjang garis (sesuaikan 40–60%) */
        height: 0px;
        background: black;
        border-radius: 2px;
        transform: translateX(-50%) scaleX(0);
        /* mulai dari tengah (0) */
        transform-origin: center;
        /* titik animasi di tengah */
        transition: transform 0.3s ease;
    }

    header .navbar a:hover {
        color: #000;
    }

    header .navbar a:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    header .navbar a.active {
        color: #000;
    }

    header .navbar a.active::after {
        transform: translateX(-50%) scaleX(1);
    }

    header .fa-bars {
        display: block;
    }

    .hero {
        min-height: 550px;
        padding: 8rem 5% 5rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.6rem;
    }

    .btn-group {
        flex-direction: row;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .projects-logo-grid {
        background: #fff;
        width: 100%;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    #service .hero {
        min-height: 500px;
        padding: 0 4%;
    }

    #service .hero h1 {
        font-size: 4.5rem;
    }

    .main-services {
        padding: 8rem 4%;
    }

    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-section {
        padding: 8rem 4%;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .additional-services {
        padding: 8rem 4%;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .technology-section {
        padding: 8rem 4%;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-floating-icon {
        font-size: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        height: 200px;
    }

    /* Company Overview */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .logo-container {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Values Section */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-dot {
        left: 30px;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0rem
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-units-section {
        padding: 8rem 4%;
    }

    .section-intro h2 {
        font-size: 4.5rem;
    }

    .section-intro p {
        font-size: 1.7rem;
    }

    .units-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .unit-card:nth-child(1) {
        grid-column: 1 / -1;
    }

    .unit-card {
        padding: 3.5rem 3rem;
        min-height: 450px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 450px;
    }

    .unit-card .unit-logo {
        width: 100px;
        height: 100px;
    }

    .unit-logo {
        width: 110px;
        height: 110px;
    }

    .unit-card h3 {
        font-size: 2.8rem;
    }

    .unit-card .unit-tagline {
        font-size: 2.2rem;
    }

    .unit-card .unit-description {
        font-size: 2.1rem;
    }

    .unit-link {
        width: 50px;
        height: 50px;
        font-size: 1.9rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    html {
        font-size: 52%;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    #about .hero h1,
    #contact .hero h1 {
        font-size: 4.5rem;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(35px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-35px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-35px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(35px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .about-text h2,
    .overview-text h2 {
        font-size: 3.2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 3rem 2.5rem;
    }

    #service .hero {
        min-height: 450px;
    }

    #service .hero h1 {
        font-size: 4rem;
    }

    #service .hero p {
        font-size: 1.6rem;
    }

    #service .hero-badge {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }

    .main-services {
        padding: 6rem 4%;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .main-service-card {
        margin-bottom: 0;
    }

    .service-card-header {
        padding: 3rem 2rem;
    }

    .service-number {
        font-size: 5rem;
    }

    .service-icon-main {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .service-card-body {
        padding: 2.5rem 2rem;
    }

    .service-card-body h3 {
        font-size: 2.2rem;
    }

    .service-card-body p {
        font-size: 1.4rem;
    }

    .service-features li {
        font-size: 1.3rem;
        padding: 0.8rem 0;
    }

    .service-link {
        padding: 1.3rem 2.5rem;
        font-size: 1.4rem;
    }

    .process-section {
        padding: 6rem 4%;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }

    .step-content h3 {
        font-size: 1.8rem;
    }

    .step-content p {
        font-size: 1.4rem;
    }

    .additional-services {
        padding: 6rem 4%;
    }

    .additional-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .additional-card {
        padding: 2.5rem;
    }

    .additional-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .additional-card h4 {
        font-size: 1.8rem;
    }

    .additional-card p {
        font-size: 1.3rem;
    }

    .technology-section {
        padding: 6rem 4%;
    }

    .tech-category {
        padding: 2.5rem;
    }

    .tech-category h3 {
        font-size: 2rem;
    }

    .tech-tag {
        font-size: 1.3rem;
        padding: 0.9rem 1.8rem;
    }

    .service-floating-icon,
    .service-glow-orb {
        display: none;
    }

    /* Stats Grid */
    .stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-header h2 {
        font-size: 3.5rem;
    }

    /* Team */
    .team-header h2 {
        font-size: 3.5rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
    }

    .member-photo img {
        width: 75%;
        height: 75%;
    }

    /* Timeline */
    .timeline-header h2 {
        font-size: 3.5rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 3.2rem;
    }

    .cta-content p {
        font-size: 1.5rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 3rem 2.5rem;
    }

    .contact-form h3 {
        font-size: 2.5rem;
    }

    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 55px;
        height: 55px;
        font-size: 2.5rem;
    }

    .whatsapp-float::before,
    .phone-float::before {
        font-size: 1.2rem;
        padding: 6px 12px;
    }

    .business-units-section {
        padding: 7rem 3%;
    }

    .section-intro {
        margin-bottom: 5rem;
    }

    .section-intro h2 {
        font-size: 4rem;
    }

    .section-intro h2::after {
        height: 3px;
    }

    .section-intro p {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }

    .units-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 5rem;
    }

    .unit-card:nth-child(1) {
        grid-column: auto;
    }

    .unit-card {
        padding: 3.5rem 2.5rem;
        min-height: 420px;
        border-radius: 25px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 420px;
    }

    .unit-card::before {
        width: 100px;
        height: 100px;
    }

    .unit-card:hover::before {
        width: 150px;
        height: 150px;
    }

    .unit-card .unit-logo {
        width: 90px;
        height: 90px;
    }

    .unit-logo {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        margin-bottom: 2rem;
    }

    .unit-card h3 {
        font-size: 2.6rem;
        margin-bottom: 1rem;
    }

    .unit-card .unit-tagline {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }

    .unit-card .unit-description {
        font-size: 2rem;
    }

    .unit-links {
        padding-top: 1.8rem;
        gap: 1rem;
    }

    .unit-link {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
        border-radius: 12px;
    }
}

/* Mobile Landscape - 576px */
@media (max-width: 576px) {
    html {
        font-size: 50%;
    }

    header {
        padding: 1rem 3%;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(25px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-25px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-25px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(25px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .logo img {
        height: 60px;
        width: 65px;
    }

    .logos {
        font-size: 2rem;
    }

    section {
        padding: 4rem 3%;
    }

    .hero {
        min-height: 450px;
        padding: 7rem 3% 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-badge {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    #about .hero h1,
    #contact .hero h1 {
        font-size: 3.8rem;
    }

    .btn {
        padding: 1.3rem 2.5rem;
        font-size: 1.4rem;
    }

    /* Section Headers */
    .section-header h2,
    .values-header h2,
    .team-header h2,
    .timeline-header h2 {
        font-size: 3rem;
    }

    .section-badge,
    .timeline-badge {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
    }

    /* Services */
    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    #service .hero {
        min-height: 400px;
        padding: 0 3%;
    }

    #service .hero h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    #service .hero p {
        font-size: 1.5rem;
    }

    #service .hero-badge {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
        letter-spacing: 2px;
    }

    .main-services {
        padding: 5rem 3%;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header p {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
    }

    .main-services-grid {
        gap: 2.5rem;
    }

    .featured-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        top: 10px;
        right: 15px;
    }

    .service-card-header {
        padding: 2.5rem 2rem;
    }

    .service-number {
        font-size: 4.5rem;
    }

    .service-icon-main {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
        border-radius: 15px;
    }

    .service-card-body {
        padding: 2rem 1.8rem;
    }

    .service-card-body h3 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .service-card-body p {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin-bottom: 2rem;
    }

    .service-features li {
        font-size: 1.25rem;
        padding: 0.7rem 0;
        gap: 0.8rem;
    }

    .service-features i {
        font-size: 1.4rem;
    }

    .service-link {
        padding: 1.2rem 2.2rem;
        font-size: 1.35rem;
        gap: 0.8rem;
    }

    .process-section {
        padding: 5rem 3%;
    }

    .process-timeline {
        gap: 2.5rem;
        margin-top: 4rem;
    }

    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .step-content p {
        font-size: 1.35rem;
    }

    .additional-services {
        padding: 5rem 3%;
    }

    .additional-grid {
        gap: 2rem;
        margin-top: 4rem;
    }

    .additional-card {
        padding: 2.2rem;
    }

    .additional-icon {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .additional-card h4 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .additional-card p {
        font-size: 1.3rem;
    }

    .technology-section {
        padding: 5rem 3%;
    }

    .tech-categories {
        gap: 2rem;
        margin-top: 4rem;
    }

    .tech-category {
        padding: 2.2rem;
    }

    .tech-category h3 {
        font-size: 1.9rem;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .tech-tags {
        gap: 0.8rem;
    }

    .tech-tag {
        font-size: 1.25rem;
        padding: 0.8rem 1.6rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* About Image */
    .about-image {
        height: 350px;
        font-size: 6rem;
    }

    /* Overview */
    .overview-text h2 {
        font-size: 2.8rem;
    }

    .logo-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .projects-logo-grid h3 {
        font-size: 2.5rem;
    }

    .projects-logo-grid p {
        text-align: center;
        margin-bottom: 2rem;
        padding-right: 50px;
        padding-left: 50px;
        font-size: 1.6rem;
    }

    /* Values */
    .value-card {
        padding: 3rem 2rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .member-photo {
        width: 160px;
        height: 160px;
    }

    .member-photo img {
        width: 75%;
        height: 75%;
    }

    .team-member h4 {
        font-size: 1.8rem;
    }

    /* Timeline */
    .timeline-section {
        padding: 6rem 3%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.5rem;
    }

    .timeline-dot {
        left: 20px;
        width: 15px;
        height: 15px;
    }

    /* FAQ */
    .faq-section {
        padding: 5rem 3%;
    }

    .faq-header h2 {
        font-size: 2.8rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.2rem;
    }

    .faq-answer p {
        padding: 1.2rem 1.5rem;
        font-size: 1.2rem;
    }

    /* CTA */
    .cta-section {
        height: 60vh;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }

    /* Contact */
    .info-card {
        padding: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.8rem;
    }

    .info-item {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .info-item div h4 {
        font-size: 1.6rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }

    .contact-form h3 {
        font-size: 2.2rem;
    }

    .form-group label {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.3rem 1.5rem;
        font-size: 1.4rem;
    }

    .submit-btn {
        padding: 1.6rem;
        font-size: 1.6rem;
    }

    /* Map */
    .map-section {
        height: 400px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-section h3 {
        font-size: 1.6rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1.2rem;
    }

    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        font-size: 2.2rem;
        right: 20px;
    }

    .phone-float {
        bottom: 90px;
    }

    .whatsapp-float::before,
    .phone-float::before {
        display: none;
    }

    .whatsapp-float::after,
    .phone-float::after {
        display: none;
    }

    .business-units-section {
        padding: 6rem 5%;
    }

    .business-units-section::after {
        background-size: 40px 40px;
    }

    .section-intro {
        margin-bottom: 4.5rem;
    }

    .section-intro::before {
        font-size: 2.5rem;
        top: -25px;
    }

    .section-intro h2 {
        font-size: 3.5rem;
    }

    .section-intro h2::after {
        bottom: -12px;
    }

    .section-intro p {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .units-grid {
        gap: 2rem;
        margin-top: 4.5rem;
    }

    .unit-card {
        padding: 3rem 2rem;
        min-height: 400px;
        border-radius: 22px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 400px;
    }

    .unit-card::before {
        width: 90px;
        height: 90px;
        border-radius: 0 22px 0 0;
    }

    .unit-card:hover::before {
        width: 130px;
        height: 130px;
    }

    .unit-card .unit-logo {
        width: 95px;
        height: 95px;
    }

    .unit-logo {
        width: 90px;
        height: 90px;
        border-radius: 18px;
        margin-bottom: 1.8rem;
        padding: 1.2rem;
    }

    .unit-logo::before {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }

    .unit-card h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .unit-card .unit-tagline {
        font-size: 2.4rem;
        margin-bottom: 1.3rem;
    }

    .unit-card .unit-description {
        font-size: 2rem;
        line-height: 1.7;
    }

    .unit-links {
        padding-top: 1.5rem;
        gap: 0.9rem;
    }

    .unit-link {
        width: 46px;
        height: 46px;
        font-size: 2rem;
        border-radius: 11px;
    }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
    html {
        font-size: 47%;
    }

    * {
        transition: 0.15s linear;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(15px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-15px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-15px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(15px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    header {
        padding: 1rem 4%;
    }

    .logo img {
        height: 55px;
        width: 60px;
    }

    .logos {
        font-size: 1.9rem;
    }

    section {
        padding: 3.5rem 4%;
    }

    /* Hero Section */
    .hero {
        min-height: 380px;
        padding: 6rem 4% 3rem;
    }

    .hero h1 {
        font-size: 3.2rem;
        letter-spacing: -1px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 1.5rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    #about .hero h1,
    #contact .hero h1 {
        font-size: 3.5rem;
        line-height: 1.15;
    }

    #about .hero p,
    #contact .hero p {
        font-size: 1.6rem;
    }

    .hero-badge {
        padding: 0.7rem 1.3rem;
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .btn-group {
        gap: 1.5rem;
        flex-direction: row;
    }

    .btn {
        padding: 1.2rem 2.2rem;
        font-size: 1.35rem;
        gap: 0.8rem;
        justify-content: center;
    }

    .floating-icon {
        font-size: 2.2rem;
    }

    /* Section Headers */
    .section-header,
    .values-header,
    .team-header,
    .timeline-header,
    .faq-header {
        margin-bottom: 3rem;
    }

    .section-header h2,
    .values-header h2,
    .team-header h2,
    .timeline-header h2,
    .faq-header h2 {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .section-header p,
    .values-header p,
    .team-header p,
    .faq-header p {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .section-badge,
    .timeline-badge {
        font-size: 1.05rem;
        padding: 0.65rem 1.4rem;
        margin-bottom: 1.5rem;
    }

    /* Services */
    .services {
        padding: 5rem 4%;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        padding: 2.2rem 1.8rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.85rem;
        margin-bottom: 1.2rem;
    }

    .service-card p {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    #service .hero {
        min-height: 380px;
        padding: 0 2.5%;
    }

    #service .hero h1 {
        font-size: 3.2rem;
    }

    #service .hero p {
        font-size: 1.45rem;
        margin-bottom: 2rem;
    }

    #service .hero-badge {
        font-size: 0.95rem;
        padding: 0.75rem 1.6rem;
        letter-spacing: 1.5px;
    }

    .main-services {
        padding: 4.5rem 2.5%;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.7rem;
    }

    .section-header p {
        font-size: 1.35rem;
    }

    .section-badge {
        font-size: 1rem;
        padding: 0.65rem 1.4rem;
    }

    .main-services-grid {
        gap: 2.2rem;
    }

    .main-service-card {
        border-radius: 20px;
    }

    .featured-badge {
        font-size: 0.95rem;
        padding: 0.55rem 1.1rem;
        top: 7px;
        right: 12px;
    }

    .service-card-header {
        padding: 2.2rem 1.8rem;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-icon-main {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        border-radius: 12px;
    }

    .service-card-body {
        padding: 1.8rem 1.6rem;
    }

    .service-card-body h3 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .service-card-body p {
        font-size: 1.3rem;
        margin-bottom: 1.4rem;
        line-height: 1.7;
    }

    .service-features {
        margin-bottom: 1.8rem;
    }

    .service-features li {
        font-size: 1.2rem;
        padding: 0.65rem 0;
        gap: 0.7rem;
    }

    .service-features i {
        font-size: 1.3rem;
    }

    .service-link {
        padding: 1.15rem 2rem;
        font-size: 1.3rem;
        gap: 0.7rem;
    }

    .process-section {
        padding: 4.5rem 2.5%;
    }

    .process-timeline {
        gap: 2.2rem;
        margin-top: 3.5rem;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2.7rem;
        border-width: 2.5px;
        margin-bottom: 1.3rem;
    }

    .step-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
    }

    .step-content p {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .additional-services {
        padding: 4.5rem 2.5%;
    }

    .additional-grid {
        gap: 1.8rem;
        margin-top: 3.5rem;
    }

    .additional-card {
        padding: 2rem;
        border-radius: 15px;
    }

    .additional-icon {
        width: 52px;
        height: 52px;
        font-size: 2rem;
        border-radius: 10px;
        margin-bottom: 1.3rem;
    }

    .additional-card h4 {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
    }

    .additional-card p {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .technology-section {
        padding: 4.5rem 2.5%;
    }

    .tech-categories {
        gap: 1.8rem;
        margin-top: 3.5rem;
    }

    .tech-category {
        padding: 2rem;
        border-radius: 15px;
    }

    .tech-category h3 {
        font-size: 1.8rem;
        gap: 1rem;
        margin-bottom: 1.3rem;
    }

    .tech-tags {
        gap: 0.7rem;
    }

    .tech-tag {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }

    /* Disable hover animations on mobile */
    .main-service-card:hover {
        transform: none;
    }

    .additional-card:hover {
        transform: none;
    }

    .service-link:hover {
        transform: none;
    }

    .tech-tag:hover {
        transform: none;
    }

    /* About */
    .about {
        padding: 5rem 4%;
    }

    .about-content {
        gap: 3rem;
    }

    .about-text h2,
    .overview-text h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .about-text .highlight,
    .overview-text .highlight {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }

    .about-text p,
    .overview-text p {
        font-size: 1.5rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }

    .about-image {
        height: 280px;
        font-size: 5rem;
        border-radius: 15px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 1.25rem;
    }

    /* Company Overview */
    .company-overview {
        padding: 5rem 4%;
    }

    .overview-content {
        gap: 3rem;
    }

    .projects-logo-grid {
        padding: 1.8rem;
        border-radius: 12px;
    }

    .projects-logo-grid h3 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .projects-logo-grid p {
        margin-bottom: 1.5rem;
        padding-right: 61px;
        padding-left: 61px;
        font-size: 1.5rem;
    }

    .logo-container {
        gap: 1.2rem;
    }

    .logo-item {
        padding: 1.2rem;
        min-height: 85px;
        border-radius: 8px;
    }

    .logo-item img {
        max-height: 65px;
    }

    /* Values */
    .values-section {
        padding: 5rem 4%;
    }

    .values-grid {
        gap: 2rem;
    }

    .value-card {
        padding: 2.5rem 1.8rem;
        border-radius: 18px;
    }

    .value-icon {
        width: 65px;
        height: 65px;
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.95rem;
        margin-bottom: 1.2rem;
    }

    .value-card p {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    /* Team */
    .team-section {
        padding: 5rem 4%;
    }

    .team-grid {
        gap: 2.5rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 1.2rem;
    }

    .member-photo img {
        width: 75%;
        height: 75%;
    }

    .team-member h4 {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .team-member .role {
        font-size: 1.3rem;
    }

    /* Timeline */
    .timeline-section {
        padding: 5rem 4%;
    }

    .timeline {
        padding: 0 1rem;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-content {
        width: calc(100% - 55px);
        margin-left: 55px !important;
        padding: 1.3rem 1.5rem;
        border-radius: 12px;
    }

    .timeline-dot {
        left: 18px;
        width: 14px;
        height: 14px;
    }

    .timeline-year {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .timeline-content p {
        font-size: 1.35rem;
        line-height: 1.7;
    }

    /* FAQ */
    .faq-section {
        padding: 4rem 4%;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-header p {
        font-size: 1.55rem;
    }

    .faq-item {
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }

    .faq-question {
        padding: 1.3rem 1.6rem;
        font-size: 1.2rem;
    }

    .faq-answer p {
        padding: 1.3rem 1.6rem 1.5rem;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    /* CTA */
    .cta-section {
        height: 55vh;
        min-height: 350px;
    }

    .cta-content {
        padding: 0 4%;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .cta-content p {
        font-size: 1.45rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .cta-btn {
        padding: 1.15rem 2.5rem;
        font-size: 1.45rem;
    }

    /* Contact */
    .contact-section {
        padding: 5rem 4%;
    }

    .contact-container {
        gap: 3rem;
    }

    .info-card {
        padding: 2.2rem;
        border-radius: 15px;
    }

    .info-card h3 {
        font-size: 1.7rem;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .info-card h3 i {
        font-size: 1.9rem;
    }

    .info-item {
        gap: 1.3rem;
        padding: 1.4rem 0;
    }

    .info-item i {
        width: 42px;
        height: 42px;
        font-size: 1.65rem;
    }

    .info-item div h4 {
        font-size: 1.55rem;
        margin-bottom: 0.7rem;
    }

    .info-item div p,
    .info-item div a {
        font-size: 1.35rem;
    }

    .social-links {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }

    .social-links a {
        width: 47px;
        height: 47px;
        font-size: 1.85rem;
    }

    .contact-form {
        padding: 2.2rem 1.8rem;
        border-radius: 15px;
    }

    .contact-form h3 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-form>p {
        font-size: 1.45rem;
        margin-bottom: 2.5rem;
    }

    .alert {
        padding: 1.3rem 1.6rem;
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        font-size: 1.35rem;
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.25rem 1.5rem;
        font-size: 1.35rem;
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 140px;
    }

    .error-message {
        font-size: 1.25rem;
        margin-top: 0.4rem;
    }

    .submit-btn {
        padding: 1.55rem;
        font-size: 1.55rem;
        border-radius: 40px;
    }

    .submit-btn i {
        font-size: 1.8rem;
    }

    /* Map */
    .map-section {
        height: 320px;
    }

    /* Footer */
    footer {
        padding: 2.5rem 4%;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-section h3 {
        font-size: 1.55rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1.25rem;
        line-height: 1.9;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .footer-bottom {
        padding-top: 1.8rem;
        font-size: 1.2rem;
    }

    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        font-size: 2.1rem;
        right: 18px;
    }

    .phone-float {
        bottom: 85px;
    }

    .business-units-section {
        padding: 5rem 4%;
    }

    .section-intro {
        margin-bottom: 4rem;
    }

    .section-intro::before {
        font-size: 2.2rem;
        top: -22px;
        letter-spacing: 8px;
    }

    .section-intro h2 {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }

    .section-intro h2::after {
        height: 3px;
        bottom: -10px;
    }

    .section-intro p {
        font-size: 1.4rem;
        margin-top: 2.2rem;
    }

    .units-grid {
        gap: 1.8rem;
        margin-top: 4rem;
    }

    .unit-card {
        padding: 2.5rem 1.8rem;
        min-height: 380px;
        border-radius: 20px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 380px;
    }

    .unit-card::before {
        width: 80px;
        height: 80px;
        border-radius: 0 20px 0 0;
    }

    .unit-card:hover::before {
        width: 120px;
        height: 120px;
    }

    .unit-card .unit-logo {
        width: 80px;
        height: 80px;
    }

    .unit-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-width: 2.5px;
    }

    .unit-logo::before {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
        border-width: 2.5px;
        top: -6px;
        right: -6px;
    }

    .unit-card h3 {
        font-size: 2.6rem;
        margin-bottom: 0.8rem;
    }

    .unit-card .unit-tagline {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .unit-card .unit-description {
        font-size: 2.1rem;
        line-height: 1.65;
    }

    .unit-links {
        padding-top: 1.3rem;
        gap: 0.8rem;
    }

    .unit-link {
        width: 44px;
        height: 44px;
        font-size: 2rem;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .unit-link:hover::before {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile - 360px */
@media (max-width: 360px) {
    html {
        font-size: 43%;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    header {
        padding: 0.9rem 3.5%;
    }

    .logo img {
        height: 48px;
        width: 53px;
    }

    .logos {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 3.5%;
    }

    /* Hero */
    .hero {
        min-height: 350px;
        padding: 5.5rem 3.5% 2.5rem;
    }

    .hero h1 {
        font-size: 2.9rem;
    }

    .hero p {
        font-size: 1.65rem;
    }

    #about .hero h1,
    #contact .hero h1 {
        font-size: 3.2rem;
    }

    .hero-badge {
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 1.15rem 2rem;
        font-size: 1.3rem;
    }

    /* Section Headers */
    .section-header h2,
    .values-header h2,
    .team-header h2,
    .timeline-header h2,
    .faq-header h2 {
        font-size: 2.4rem;
    }

    .section-header p {
        font-size: 1.45rem;
    }

    .section-badge,
    .timeline-badge {
        font-size: 2rem;
        padding: 0.6rem 1.5rem;
    }

    /* Services */
    .services {
        padding: 4.5rem 3.5%;
    }

    .services-grid {
        gap: 1.8rem;
    }

    .service-card {
        padding: 2rem 1.6rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 2.1rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .service-card p {
        font-size: 1.5rem;
    }

    #service .hero {
        min-height: 350px;
        padding: 0 3.5%;
    }

    #service .hero h1 {
        font-size: 3rem;
    }

    #service .hero p {
        font-size: 1.4rem;
    }

    #service .hero-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        letter-spacing: 1px;
    }

    .main-services {
        padding: 4rem 3.5%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.3rem;
    }

    .section-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.3rem;
    }

    .main-services-grid {
        gap: 2rem;
    }

    .featured-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .service-card-header {
        padding: 2rem 1.6rem;
    }

    .service-number {
        font-size: 3.5rem;
    }

    .service-icon-main {
        width: 48px;
        height: 48px;
        font-size: 1.9rem;
    }

    .service-card-body {
        padding: 1.6rem 1.4rem;
    }

    .service-card-body h3 {
        font-size: 1.8rem;
    }

    .service-card-body p {
        font-size: 1.25rem;
        margin-bottom: 1.3rem;
    }

    .service-features {
        margin-bottom: 1.6rem;
    }

    .service-features li {
        font-size: 1.15rem;
        padding: 0.6rem 0;
    }

    .service-features i {
        font-size: 1.25rem;
    }

    .service-link {
        padding: 1.1rem 1.9rem;
        font-size: 1.25rem;
    }

    .process-section {
        padding: 4rem 3.5%;
    }

    .process-timeline {
        gap: 2rem;
        margin-top: 3rem;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
        border-width: 2px;
        margin-bottom: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.55rem;
    }

    .step-content p {
        font-size: 1.25rem;
    }

    .additional-services {
        padding: 4rem 3.5%;
    }

    .additional-grid {
        gap: 1.6rem;
        margin-top: 3rem;
    }

    .additional-card {
        padding: 1.8rem;
    }

    .additional-icon {
        width: 50px;
        height: 50px;
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .additional-card h4 {
        font-size: 1.55rem;
    }

    .additional-card p {
        font-size: 1.2rem;
    }

    .technology-section {
        padding: 4rem 3.5%;
    }

    .tech-categories {
        gap: 1.6rem;
        margin-top: 3rem;
    }

    .tech-category {
        padding: 1.8rem;
    }

    .tech-category h3 {
        font-size: 1.7rem;
        gap: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .tech-tags {
        gap: 0.65rem;
    }

    .tech-tag {
        font-size: 1.15rem;
        padding: 0.7rem 1.4rem;
    }

    /* About */
    .about {
        padding: 4.5rem 3.5%;
    }

    .about-text h2,
    .overview-text h2 {
        font-size: 2.3rem;
    }

    .about-text p,
    .overview-text p {
        font-size: 1.6rem;
    }

    .about-image {
        height: 260px;
        font-size: 4.5rem;
    }

    /* Stats */
    .stats-grid {
        gap: 1rem;
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
        padding: 1.4rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }

    /* Company Overview */
    .company-overview {
        padding: 4.5rem 3.5%;
    }

    .projects-logo-grid {
        padding: 1.6rem;
    }

    .projects-logo-grid h3 {
        font-size: 2rem;
    }

    .projects-logo-grid p {
        margin-bottom: 2rem;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 1.5rem;
    }

    .logo-item {
        padding: 1.1rem;
        min-height: 80px;
    }

    .logo-item img {
        max-height: 60px;
    }

    /* Values */
    .values-section {
        padding: 4.5rem 3.5%;
    }

    .values-grid {
        gap: 1.8rem;
    }

    .value-card {
        padding: 2.3rem 1.6rem;
    }

    .value-icon {
        width: 62px;
        height: 62px;
        font-size: 2.1rem;
    }

    .value-card h3 {
        font-size: 1.85rem;
    }

    .value-card p {
        font-size: 1.35rem;
    }

    /* Team */
    .team-section {
        padding: 4.5rem 3.5%;
    }

    .team-grid {
        gap: 2.2rem;
    }

    .member-photo {
        width: 135px;
        height: 135px;
    }

    .member-photo img {
        width: 65%;
        height: 65%;
    }

    .team-member h4 {
        font-size: 1.7rem;
    }

    .team-member .role {
        font-size: 1.25rem;
    }

    /* Timeline */
    .timeline-section {
        padding: 4.5rem 3.5%;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 1.2rem 1.4rem;
    }

    .timeline-dot {
        left: 16px;
        width: 13px;
        height: 13px;
    }

    .timeline-year {
        font-size: 1.35rem;
    }

    .timeline-content p {
        font-size: 1.3rem;
    }

    /* FAQ */
    .faq-section {
        padding: 3.5rem 3.5%;
    }

    .faq-header h2 {
        font-size: 2.3rem;
    }

    .faq-header p {
        font-size: 1.5rem;
    }

    .faq-item {
        margin-bottom: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.15rem;
    }

    .faq-answer p {
        padding: 1.2rem 1.5rem 1.4rem;
        font-size: 1.15rem;
    }

    /* CTA */
    .cta-section {
        height: 50vh;
        min-height: 320px;
    }

    .cta-content h2 {
        font-size: 2.3rem;
    }

    .cta-content p {
        font-size: 1.4rem;
    }

    .cta-btn {
        padding: 1.1rem 2.3rem;
        font-size: 1.4rem;
    }

    /* Contact */
    .contact-section {
        padding: 4.5rem 3.5%;
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    .contact-container {
        width: 100%;
        max-width: 100%;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card h3 {
        font-size: 1.65rem;
    }

    .info-item {
        /* Disable hover animation on mobile */
        transform: none !important;
    }

    .info-item:hover {
        transform: none !important;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .info-item div h4 {
        font-size: 1.5rem;
    }

    .info-item div p,
    .info-item div a {
        font-size: 1.3rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2rem 1.6rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form h3 {
        font-size: 2.1rem;
    }

    .contact-form>p {
        font-size: 1.4rem;
    }

    .form-group {
        width: 100%;
        margin-bottom: 2rem;
    }

    .form-group label {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.2rem 1.4rem;
        font-size: 1.3rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Disable transform animation on focus untuk mobile */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }

    .form-group textarea {
        min-height: 130px;
    }

    .submit-btn {
        padding: 1.5rem;
        font-size: 1.5rem;
        width: 100%;
    }

    /* Disable hover transform untuk button */
    .submit-btn:hover:not(:disabled) {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    }

    /* Map */
    .map-section {
        height: 290px;
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 2.3rem 3.5%;
    }

    .footer-section h3 {
        font-size: 1.5rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1.2rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 1.55rem;
    }

    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 47px;
        height: 47px;
        font-size: 2rem;
        right: 15px;
    }

    .phone-float {
        bottom: 80px;
    }

    /* Disable hover untuk floating buttons */
    .whatsapp-float:hover,
    .phone-float:hover {
        transform: none !important;
    }

    .business-units-section {
        padding: 4.5rem 3%;
    }

    .business-units-section::after {
        background-size: 35px 35px;
    }

    .section-intro {
        margin-bottom: 3.5rem;
    }

    .section-intro::before {
        font-size: 2rem;
        top: -20px;
        letter-spacing: 6px;
    }

    .section-intro h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 1.2rem;
    }

    .section-intro h2::after {
        height: 2.5px;
        bottom: -8px;
    }

    .section-intro p {
        font-size: 1.3rem;
        margin-top: 2rem;
        line-height: 1.6;
    }

    .units-grid {
        gap: 1.5rem;
        margin-top: 3.5rem;
    }

    .unit-card {
        padding: 2.2rem 1.5rem;
        min-height: 360px;
        border-radius: 18px;
        border-width: 1.5px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 360px;
    }

    .unit-card::before {
        width: 70px;
        height: 70px;
        border-radius: 0 18px 0 0;
    }

    .unit-card:hover::before {
        width: 110px;
        height: 110px;
    }

    .unit-card .unit-logo {
        width: 80px;
        height: 80px;
    }

    .unit-logo {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        margin-bottom: 1.3rem;
        padding: 0.9rem;
        border-width: 2px;
    }

    .unit-logo::before {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        border-width: 2px;
        top: -5px;
        right: -5px;
    }

    .unit-card h3 {
        font-size: 2.5rem;
        margin-bottom: 0.7rem;
        letter-spacing: -0.5px;
    }

    .unit-card .unit-tagline {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .unit-card .unit-description {
        font-size: 2rem;
        line-height: 1.6;
    }

    .unit-links {
        padding-top: 1.2rem;
        gap: 0.7rem;
    }

    .unit-link {
        width: 42px;
        height: 42px;
        font-size: 2rem;
        border-radius: 9px;
        border-width: 1.5px;
    }

    .unit-link:hover::before {
        width: 90px;
        height: 90px;
    }
}

/* Very Small Mobile - 250px */
@media (max-width: 250px) {
    html {
        font-size: 38%;
    }

    .overview-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        /* animation: slideInRight 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%; */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(5px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-text {
        animation: slideInLeft 1s ease-out both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-5px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes cardSlideUp {
        from {
            opacity: 0;
            transform: translateY(5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-5px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(5px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    header {
        padding: 0.8rem 3%;
        flex-wrap: nowrap;
    }

    .logo img {
        height: 42px;
        width: 47px;
    }

    .logos {
        font-size: 1.6rem;
    }

    section {
        padding: 2.5rem 3%;
    }

    /* Hero */
    .hero {
        min-height: 320px;
        padding: 5rem 3% 2rem;
    }

    .hero h1 {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    #about .hero h1,
    #contact .hero h1 {
        font-size: 2.8rem;
    }

    #about .hero p,
    #contact .hero p {
        font-size: 1.5rem;
    }

    .hero-badge {
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-bottom: 1.2rem;
    }

    .btn-group {
        gap: 1.2rem;
    }

    .btn {
        padding: 1.1rem 1.8rem;
        font-size: 1.25rem;
        gap: 0.6rem;
    }

    .floating-icon {
        font-size: 2rem;
    }

    /* Section Headers */
    .section-header,
    .values-header,
    .team-header,
    .timeline-header,
    .faq-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2,
    .values-header h2,
    .team-header h2,
    .timeline-header h2,
    .faq-header h2 {
        font-size: 2.1rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .section-header p,
    .values-header p,
    .team-header p,
    .faq-header p {
        font-size: 1.4rem;
        line-height: 1.65;
    }

    .section-badge,
    .timeline-badge {
        font-size: 0.95rem;
        padding: 0.55rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    /* Services */
    .services {
        padding: 4rem 3%;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.8rem 1.4rem;
        border-radius: 15px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1.3rem;
        line-height: 1.65;
    }

    #service .hero {
        min-height: 300px;
        padding: 0 3%;
    }

    #service .hero h1 {
        font-size: 2.7rem;
        line-height: 1.15;
    }

    #service .hero p {
        font-size: 1.35rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    #service .hero-badge {
        font-size: 0.85rem;
        padding: 0.65rem 1.3rem;
        letter-spacing: 0.5px;
        margin-bottom: 1.2rem;
    }

    .main-services {
        padding: 3.5rem 3%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 1.25rem;
        line-height: 1.65;
    }

    .section-badge {
        font-size: 0.9rem;
        padding: 0.55rem 1.2rem;
        margin-bottom: 1rem;
    }

    .main-services-grid {
        gap: 1.8rem;
    }

    .main-service-card {
        border-radius: 15px;
        border-width: 1.5px;
    }

    .main-service-card.featured {
        border-width: 2px;
    }

    .featured-badge {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
        top: 5px;
        right: 10px;
    }

    .service-card-header {
        padding: 1.8rem 1.4rem;
    }

    .service-number {
        font-size: 3.2rem;
    }

    .service-icon-main {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        border-radius: 10px;
    }

    .service-card-body {
        padding: 1.5rem 1.3rem;
    }

    .service-card-body h3 {
        font-size: 1.7rem;
        margin-bottom: 0.9rem;
    }

    .service-card-body p {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.65;
    }

    .service-features {
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 1.1rem;
        padding: 0.55rem 0;
        gap: 0.6rem;
    }

    .service-features i {
        font-size: 1.2rem;
    }

    .service-link {
        padding: 1rem 1.8rem;
        font-size: 1.2rem;
        gap: 0.6rem;
        border-radius: 35px;
    }

    .process-section {
        padding: 3.5rem 3%;
    }

    .process-timeline {
        gap: 1.8rem;
        margin-top: 2.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2.3rem;
        border-width: 2px;
        margin-bottom: 1rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .step-content p {
        font-size: 1.2rem;
        line-height: 1.65;
    }

    .additional-services {
        padding: 3.5rem 3%;
    }

    .additional-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .additional-card {
        padding: 1.6rem;
        border-radius: 12px;
    }

    .additional-icon {
        width: 47px;
        height: 47px;
        font-size: 1.8rem;
        border-radius: 9px;
        margin-bottom: 1.1rem;
    }

    .additional-card h4 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .additional-card p {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .technology-section {
        padding: 3.5rem 3%;
    }

    .tech-categories {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .tech-category {
        padding: 1.6rem;
        border-radius: 12px;
    }

    .tech-category h3 {
        font-size: 1.6rem;
        gap: 0.8rem;
        margin-bottom: 1.1rem;
    }

    .tech-tags {
        gap: 0.6rem;
    }

    .tech-tag {
        font-size: 1.1rem;
        padding: 0.65rem 1.3rem;
        border-radius: 35px;
    }

    /* Disable all animations and hover effects */
    .main-service-card:hover,
    .additional-card:hover,
    .tech-category:hover,
    .process-step:hover .step-icon,
    .service-link:hover,
    .tech-tag:hover {
        transform: none !important;
    }

    .main-service-card:hover .service-icon-main,
    .additional-card:hover .additional-icon {
        transform: none !important;
    }

    /* About */
    .about {
        padding: 4rem 3%;
    }

    .about-content {
        gap: 2.5rem;
    }

    .about-text h2,
    .overview-text h2 {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }

    .about-text .highlight,
    .overview-text .highlight {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }

    .about-text p,
    .overview-text p {
        font-size: 1.4rem;
        line-height: 1.7;
        margin-bottom: 1.3rem;
    }

    .about-image {
        height: 230px;
        font-size: 4rem;
        border-radius: 12px;
    }

    /* Stats */
    .stats-grid {
        gap: 1.2rem;
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 1.3rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.6rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 1.15rem;
    }

    /* Company Overview */
    .company-overview {
        padding: 4rem 3%;
    }

    .overview-content {
        gap: 2.5rem;
    }

    .projects-logo-grid {
        padding: 1.4rem;
        border-radius: 10px;
    }

    .projects-logo-grid h3 {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }

    .projects-logo-grid p {
        margin-bottom: 2rem;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 1.5rem;
    }

    .logo-container {
        gap: 1rem;
    }

    .logo-item {
        padding: 1rem;
        min-height: 75px;
        border-radius: 8px;
    }

    .logo-item img {
        max-height: 55px;
    }

    /* Values */
    .values-section {
        padding: 4rem 3%;
    }

    .values-grid {
        gap: 1.5rem;
    }

    .value-card {
        padding: 2.1rem 1.4rem;
        border-radius: 15px;
    }

    .value-icon {
        width: 58px;
        height: 58px;
        font-size: 1.9rem;
        margin-bottom: 1.3rem;
    }

    .value-card h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .value-card p {
        font-size: 1.3rem;
        line-height: 1.65;
    }

    /* Team */
    .team-section {
        padding: 4rem 3%;
    }

    .team-grid {
        gap: 2rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .member-photo img {
        width: 55%;
        height: 55%;
    }

    .team-member h4 {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }

    .team-member .role {
        font-size: 1.2rem;
    }

    /* Timeline */
    .timeline-section {
        padding: 4rem 3%;
    }

    .timeline {
        padding: 0 0.5rem;
    }

    .timeline::before {
        left: 14px;
        width: 1.5px;
    }

    .timeline-item {
        margin-bottom: 3rem;
    }

    .timeline-content {
        width: calc(100% - 45px);
        margin-left: 45px !important;
        padding: 1.1rem 1.3rem;
        border-radius: 10px;
    }

    .timeline-dot {
        left: 14px;
        width: 12px;
        height: 12px;
    }

    .timeline-year {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .timeline-content p {
        font-size: 1.25rem;
        line-height: 1.65;
    }

    /* FAQ */
    .faq-section {
        padding: 3rem 3%;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-header h2 {
        font-size: 2.1rem;
    }

    .faq-header p {
        font-size: 1.45rem;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .faq-question {
        padding: 1.1rem 1.4rem;
        font-size: 1.1rem;
    }

    .faq-question i {
        font-size: 1.4rem;
    }

    .faq-answer p {
        padding: 1.1rem 1.4rem 1.3rem;
        font-size: 1.1rem;
        line-height: 1.65;
    }

    /* CTA */
    .cta-section {
        height: 45vh;
        min-height: 290px;
    }

    .cta-content {
        padding: 0 3%;
    }

    .cta-content h2 {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.35rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .cta-btn {
        padding: 1.05rem 2.1rem;
        font-size: 1.35rem;
        border-radius: 40px;
    }

    /* Contact */
    .contact-section {
        padding: 4rem 3%;
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    .contact-container {
        gap: 2.5rem;
        width: 100%;
        max-width: 100%;
    }

    .info-card {
        padding: 1.8rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Disable hover animations */
    .info-card:hover {
        transform: none !important;
    }

    .info-card h3 {
        font-size: 1.6rem;
        gap: 1rem;
        margin-bottom: 1.3rem;
    }

    .info-card h3 i {
        font-size: 1.7rem;
    }

    .info-item {
        gap: 1.1rem;
        padding: 1.2rem 0;
    }

    .info-item:hover {
        transform: none !important;
    }

    .info-item i {
        width: 37px;
        height: 37px;
        font-size: 1.5rem;
    }

    .info-item:hover i {
        transform: none !important;
    }

    .info-item div h4 {
        font-size: 1.45rem;
        margin-bottom: 0.6rem;
    }

    .info-item div p,
    .info-item div a {
        font-size: 1.25rem;
    }

    .social-links {
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 41px;
        height: 41px;
        font-size: 1.65rem;
    }

    .social-links a:hover {
        transform: none !important;
    }

    .contact-form {
        padding: 1.8rem 1.4rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form h3 {
        font-size: 2rem;
        margin-bottom: 0.7rem;
    }

    .contact-form>p {
        font-size: 1.35rem;
        margin-bottom: 2.2rem;
        line-height: 1.6;
    }

    .alert {
        padding: 1.2rem 1.4rem;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }

    .alert i {
        font-size: 1.7rem;
    }

    .form-group {
        margin-bottom: 1.8rem;
        width: 100%;
    }

    .form-group label {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.15rem 1.3rem;
        font-size: 1.25rem;
        border-radius: 8px;
        border-width: 1.5px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Disable transform animation on focus */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .error-message {
        font-size: 1.15rem;
        margin-top: 0.4rem;
    }

    .submit-btn {
        padding: 1.45rem;
        font-size: 1.45rem;
        border-radius: 35px;
        gap: 0.8rem;
        width: 100%;
    }

    /* Disable hover untuk button */
    .submit-btn:hover:not(:disabled) {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    }

    .submit-btn i {
        font-size: 1.7rem;
    }

    /* Map */
    .map-section {
        height: 250px;
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 2rem 3%;
    }

    .footer-content {
        gap: 2.2rem;
    }

    .footer-section h3 {
        font-size: 1.45rem;
        margin-bottom: 0.9rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .footer-social {
        gap: 0.9rem;
        margin-top: 0.9rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 1.5rem;
    }

    .footer-social a:hover {
        transform: none !important;
    }

    .footer-bottom {
        padding-top: 1.6rem;
        font-size: 1.1rem;
    }

    /* Floating Buttons */
    .whatsapp-float,
    .phone-float {
        width: 44px;
        height: 44px;
        font-size: 1.9rem;
        right: 12px;
    }

    .phone-float {
        bottom: 75px;
    }

    .whatsapp-float:hover,
    .phone-float:hover {
        transform: none !important;
    }

    /* Navigation */
    header .navbar a {
        padding: 1.3rem;
        margin: 0.8rem;
        font-size: 1.8rem;
    }

    header .fa-bars {
        font-size: 2.6rem;
        padding: 0.4rem 1.2rem;
    }

    .business-units-section {
        padding: 4rem 2%;
    }

    .business-units-section::after {
        background-size: 30px 30px;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .section-intro::before {
        display: none;
    }

    .section-intro h2 {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
    }

    .section-intro h2::after {
        height: 2px;
        bottom: -6px;
    }

    .section-intro p {
        font-size: 1.2rem;
        margin-top: 1.8rem;
        line-height: 1.5;
    }

    .units-grid {
        gap: 1.2rem;
        margin-top: 3rem;
    }

    .unit-card {
        padding: 2rem 1.2rem;
        min-height: 340px;
        border-radius: 16px;
        border-width: 1.5px;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: 340px;
    }

    .unit-card::before {
        width: 60px;
        height: 60px;
        border-radius: 0 16px 0 0;
    }

    .unit-card:hover::before {
        width: 100px;
        height: 100px;
    }

    .unit-card .unit-logo {
        width: 78px;
        height: 78px;
    }

    .unit-logo {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 0.7rem;
        border-width: 2px;
    }

    .unit-logo::before {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
        border-width: 2px;
        top: -4px;
        right: -4px;
    }

    .unit-card h3 {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0;
    }

    .unit-card .unit-tagline {
        font-size: 2rem;
        margin-bottom: 0.9rem;
    }

    .unit-card .unit-description {
        font-size: 1.9rem;
        line-height: 1.5;
    }

    .unit-links {
        padding-top: 1rem;
        gap: 0.5rem;
    }

    .unit-link {
        width: 40px;
        height: 38px;
        font-size: 2rem;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .unit-link:hover::before {
        width: 80px;
        height: 80px;
    }

    .unit-link:hover {
        transform: translateY(-5px) scale(1.08);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .business-units-section {
        padding: 5rem 3%;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .section-intro h2 {
        font-size: 3rem;
    }

    .unit-card {
        min-height: auto !important;
        padding: 2.5rem 2rem;
    }

    .unit-card:first-child,
    .unit-card:nth-child(2),
    .unit-card:nth-child(3) {
        min-height: auto !important;
    }

    .unit-logo {
        width: 70px;
        height: 70px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .unit-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .business-units-section::after {
        animation: none;
    }

    .section-intro h2::after {
        animation: none;
        transform: scaleX(1);
        opacity: 1;
    }

    .unit-card {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }

    .unit-card:hover {
        transform: translateY(-5px);
    }

    .unit-link:hover {
        transform: translateY(-3px) scale(1.05);
    }
}