/* CSS Variables - Natural Tones */
:root {
    --primary-green: #2D5A3D;
    --dark-green: #1B4332;
    --light-green: #52B788;
    --earth-brown: #8B7355;
    --warm-sand: #D4A373;
    --cream: #FAEDCD;
    --natural-white: #F5F5F0;
    --charcoal: #2C3E2D;
    --pure-white: #FFFFFF;
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--natural-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: rgba(45, 90, 61, 0.03);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--natural-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-leaf {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-green);
    border-radius: 50% 0 50% 50%;
    animation: rotateLeaf 1.5s infinite ease-in-out;
    margin: 0 auto 1rem;
    position: relative;
}

.loader-leaf::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 4px;
    background: var(--primary-green);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.loader p {
    color: var(--primary-green);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes rotateLeaf {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Header & Navigation - STICKY PERMANENT */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--warm-sand);
    box-shadow: var(--shadow-md);
    background: var(--pure-white);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: var(--transition);
    white-space: nowrap;
    /* Jangan wrap */
}

header.scrolled .logo-text {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    /* Kecilkan dari 0.95rem */
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    white-space: nowrap;
    /* Jangan wrap */
}

header.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-sand);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button - HIDDEN */
.mobile-menu-btn {
    display: none !important;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
    border-radius: 2px;
}

header.scrolled .hamburger-line {
    background: var(--primary-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.9), rgba(27, 67, 50, 0.85)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg " viewBox="0 0 100 100"><path d="M20,50 Q40,20 60,50 T100,50" fill="none" stroke="%2352B788" stroke-opacity="0.1" stroke-width="2"/></svg>');
    background-size: cover, 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 163, 115, 0.1), transparent 70%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-sand);
    color: var(--pure-white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
    background: var(--earth-brown);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--pure-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--pure-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--warm-sand);
    border-radius: 2px;
}

.section-title p {
    color: var(--earth-brown);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--pure-white);
    opacity: 0.9;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--warm-sand);
    color: var(--pure-white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.about-content strong {
    color: var(--primary-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    /* 2 kolom */
    gap: 3rem;    /* jarak antar item */
    max-width: 700px;    /* supaya tidak terlalu melebar */
    margin: 2.5rem auto;    /* center horizontal */
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--earth-brown);
    margin-top: 0.5rem;
    font-weight: 500;
}
.stats-container {
    display: flex;
    justify-content: center;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--pure-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-green);
}

.service-card.featured {
    border: 2px solid var(--warm-sand);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--warm-sand);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--cream), var(--warm-sand));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--light-green);
    font-size: 0.8rem;
}

/* License Section */
.license-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.license-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.license-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.license-card.silver:hover {
    border-color: var(--silver);
}

.license-card.gold:hover {
    border-color: var(--gold);
}

.license-card.platinum:hover {
    border-color: var(--platinum);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.license-card.featured {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.license-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.license-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, var(--natural-white), var(--pure-white));
}

.license-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.license-card.silver .license-icon {
    color: #8E8E8E;
}

.license-card.gold .license-icon {
    color: var(--gold);
}

.license-card.platinum .license-icon {
    color: #7B8794;
    background: linear-gradient(135deg, #E5E4E2, #B0B0B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.license-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--light-green);
    color: var(--pure-white);
}

.license-card.silver .license-badge {
    background: #8E8E8E;
}

.license-card.gold .license-badge {
    background: var(--gold);
    color: var(--charcoal);
}

.license-card.platinum .license-badge {
    background: linear-gradient(135deg, #E5E4E2, #B0B0B0);
    color: var(--charcoal);
}

.license-body {
    padding: 2rem;
}

.license-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.license-features {
    list-style: none;
    padding: 0;
}

.license-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.license-features li:last-child {
    border-bottom: none;
}

.license-features i {
    color: var(--light-green);
    margin-top: 0.25rem;
}

.license-footer {
    padding: 1rem 2rem;
    background: var(--natural-white);
    border-top: 1px solid #eee;
}

.cert-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--earth-brown);
    display: block;
    text-align: center;
}

.license-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(82, 183, 136, 0.1);
    border-left: 4px solid var(--light-green);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--charcoal);
}

.license-note i {
    color: var(--light-green);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(45, 90, 61, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--warm-sand);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--dark-green);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.position {
    color: var(--warm-sand);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.expertise {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.contact-info>p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--dark-green);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-text span {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* WhatsApp Banner */
.contact-cta {
    position: sticky;
    top: 100px;
}

.whatsapp-banner {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.whatsapp-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.whatsapp-icon-wrap {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.whatsapp-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.whatsapp-banner>p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.whatsapp-number {
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #25D366;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.whatsapp-banner small {
    display: block;
    opacity: 0.8;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--pure-white);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.3fr 0.6fr 1.1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--warm-sand);
    transform: translateY(-3px) rotate(360deg);
}

.footer-section h4 {
    color: var(--warm-sand);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--warm-sand);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-list i {
    color: var(--warm-sand);
    margin-top: 0.25rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--warm-sand);
}

.separator {
    margin: 0 0.5rem;
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="zoom-in"] {
    transform: scale(0.8);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays */
[data-delay="100"] {
    transition-delay: 100ms;
}

[data-delay="200"] {
    transition-delay: 200ms;
}

[data-delay="300"] {
    transition-delay: 300ms;
}

[data-delay="400"] {
    transition-delay: 400ms;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-cta {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE HEADER - HORIZONTAL SCROLL MENU */
@media (max-width: 768px) {

    /* Header stack: logo atas, menu bawah */
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 16px 6px;
        gap: 4px;
    }

    /* Logo lebih kecil */
    .logo-img {
        width: 32px;
        height: 32px;
        border-width: 2px;
    }

    .logo-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    /* Nav scroll horizontal */
    nav {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    /* Reset nav-links dari slide menu */
    .nav-links {
        position: static;
        right: auto;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 4px 0;
        box-shadow: none;
        gap: 18px;
        align-items: center;
    }

    .nav-links.active {
        right: auto;
    }

    /* Menu item horizontal */
    .nav-links li {
        flex-shrink: 0;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 0;
        border-bottom: none;
        white-space: nowrap;
    }

    .nav-links a::after {
        display: none;
    }

    /* Hide mobile toggle */
    .mobile-menu-btn {
        display: none !important;
    }

    /* Style lain yang sudah ada */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .license-card.featured {
        transform: none;
    }

    .license-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 1rem;
        min-width: 100px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    /* Gambar About Us */
    .about-img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .whatsapp-banner {
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .loader {
        display: none;
    }
}

