/* ============================================================
   GW Interior — Main Stylesheet
   Refined luxury interior services aesthetic
   ============================================================ */

/* Import local fonts */
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peace Sans';
    src: url('font/Peace Sans Webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ─── CSS Variables ─── */
:root {
    --clr-primary: #1a6b47;
    --clr-primary-lt: #25a86e;
    --clr-accent: #f0c040;
    --clr-green: #25D366;
    --clr-green-dk: #128C7E;
    --clr-dark: #0f1a14;
    --clr-dark2: #16253a;
    --clr-surface: #ffffff;
    --clr-bg: #f4f7f5;
    --clr-bg2: #eef4f0;
    --clr-text: #1e2b24;
    --clr-muted: #6b7c72;

    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.30);
    --glass-shadow: rgba(0, 0, 0, 0.22);
    --blur: blur(20px) saturate(180%);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --transition: 0.38s cubic-bezier(0.34, 1.46, 0.64, 1);
    --ease: 0.3s ease;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.65;
    color: var(--clr-text);
    background: var(--clr-surface);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img[src$=".svg"] {
    pointer-events: none;
}

/* ─── Container ─── */
.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ─── Section Utility ─── */
.section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Section Header ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-lt));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--clr-text);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Highlight title animation */
/* h2.section-title tetap block-level, highlight effect hanya pada teks */
.section-title.highlight-title {
    display: block;
    /* pastikan h2 tetap block */
    position: relative;
    padding: 0;
    /* reset padding pada h2 */
    background: none;
    /* reset background pada h2 */
}

/* Span wrapper di dalam h2 yang mendapat efek highlight */
.highlight-title .highlight-text,
.highlight-title span.hl {
    display: inline;
    position: relative;
    padding: 0.05em 0.18em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(to right, #b8f5d4, #b8f5d4);
    background-repeat: no-repeat;
    background-position: 0% 55%;
    background-size: 0% 45%;
    transition: background-size 0.9s ease;
}

.highlight-title.animate .highlight-text,
.highlight-title.animate span.hl {
    background-size: 100% 45%;
}

/* Legacy: jika tidak pakai span wrapper, fallback ke background pada h2 itu sendiri */
.highlight-title:not(.has-span) {
    background-image: linear-gradient(to right, #b8f5d4, #b8f5d4);
    background-repeat: no-repeat;
    background-position: 0% 55%;
    background-size: 0% 45%;
    transition: background-size 0.9s ease;
    padding: 0.05em 0.18em;
}

.highlight-title.animate:not(.has-span) {
    background-size: 100% 45%;
}

.highlight-title::after {
    content: none;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s ease;
    border-radius: inherit;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.12);
}

.btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dk));
    color: white;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.banner-secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

.banner-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.primary-btn {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-lt));
    color: white;
}


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    /* Fully transparent at top — no glassmorphism */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

header.scrolled {
    /* Glassmorphism when scrolled */
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Logo Image */
.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: opacity 0.35s ease;
}

.logo-img--black {
    display: none;
    opacity: 0;
}

.logo-img--white {
    display: block;
    opacity: 1;
}

header.scrolled .logo-img--white {
    display: none;
    opacity: 0;
}

header.scrolled .logo-img--black {
    display: block;
    opacity: 1;
}

/* Legacy logo-text (fallback) */
.logo-text {
    font-family: 'Peace Sans', 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
}

header.scrolled .logo-text {
    color: var(--clr-text);
}

.logo-accent {
    color: var(--clr-green);
}

/* Nav */
nav ul {
    display: flex;
    gap: 2px;
}

nav ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    letter-spacing: 0.03em;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-green);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav ul li a:hover {
    color: var(--clr-green);
}

nav ul li a:hover::after {
    width: 60%;
}

header.scrolled nav ul li a {
    color: var(--clr-text);
}

header.scrolled nav ul li a:hover {
    color: var(--clr-primary);
}

header.scrolled nav ul li a::after {
    background: var(--clr-primary);
}

/* Mobile toggle — hidden by default */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header.scrolled .mobile-menu-toggle {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

header.scrolled .mobile-menu-toggle span {
    background: var(--clr-text);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.carousel-container,
.carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ken Burns */
@keyframes kenburns {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.10) translateY(-5%);
    }
}

.carousel-slide.active img {
    animation: kenburns 10s ease-out forwards;
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.10) 30%,
            rgba(0, 0, 0, 0.45) 75%,
            rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

/* Carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.35s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
    border-color: #fff;
}

/* Hero content glassmorphism card */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(820px, 90%);
    text-align: center;
    color: #fff;
    z-index: 2;

    /* Premium glassmorphism */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.08) 60%,
            rgba(0, 0, 0, 0.10) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.28),
        0 2px 8px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    padding: 44px 52px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.22);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #7fffc0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

/* Title animation */
@keyframes tracking-in {
    0% {
        letter-spacing: 0.8em;
        opacity: 0;
    }

    100% {
        letter-spacing: 0.04em;
        opacity: 1;
    }
}

.tracking-in {
    animation: tracking-in 0.8s cubic-bezier(.215, .61, .355, 1) both;
}

.hero-content h1 {
    font-family: 'Peace Sans', 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.92;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Hero stats strip */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item {
    text-align: center;
    padding: 0 28px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7fffc0;
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.76rem;
    opacity: 0.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dk));
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}


/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
    padding: 110px 0;
    background: var(--clr-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 30px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-lt));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 48px rgba(26, 107, 71, 0.13), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.featured {
    background: linear-gradient(145deg, #f0fff6 0%, #e8faf0 100%);
    border-color: rgba(37, 211, 102, 0.2);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dk));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 50px;
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #e8faf0, #c8f0dc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-lt));
    color: #fff;
    transform: rotate(-5deg) scale(1.08);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-cta {
    gap: 10px;
    color: var(--clr-primary-lt);
}


/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: 'Peace Sans', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text);
}

.step-content p {
    font-size: 0.86rem;
    color: var(--clr-muted);
    line-height: 1.65;
}

.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-lt));
    margin-top: 28px;
    opacity: 0.4;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    border: 5px solid transparent;
    border-left-color: var(--clr-primary-lt);
    opacity: 0.7;
}


/* ══════════════════════════════════════════
   ADVANTAGES
══════════════════════════════════════════ */
.advantages {
    padding: 110px 0;
    background: linear-gradient(135deg, #0d3d24 0%, #1b4d35 40%, #0a4a70 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(37, 211, 102, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(4, 114, 173, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.advantages .section-title {
    color: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.advantage-item {
    padding: 36px 28px;
    border-radius: var(--radius-md);
    /* Refined glassmorphism on dark bg */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.advantage-item:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.advantage-item.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #7fffc0;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.3));
}

.advantage-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.65;
}

/* CTA Banner */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.cta-banner-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-banner-content p {
    font-size: 0.92rem;
    opacity: 0.82;
}


/* ══════════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════════ */
.vision-mission {
    padding: 110px 0;
    background: var(--clr-bg);
}

.vm-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 50px;
}

.vision-card,
.mission-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 44px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-lt));
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0472ad, #1a6b47);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8faf0, #c8f0dc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 0.97rem;
    color: var(--clr-muted);
    line-height: 1.8;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--clr-muted);
    line-height: 1.65;
}

.mission-list li i {
    color: var(--clr-primary-lt);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Values chips */
.values-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(26, 107, 71, 0.15);
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.value-chip:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.value-chip i {
    font-size: 0.9rem;
}


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
    padding: 110px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    padding: 36px 30px 28px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 107, 71, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.testimonial-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.8;
    color: var(--clr-primary-lt);
    opacity: 0.25;
    margin-bottom: 10px;
    display: block;
}

.rating {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.75;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.customer-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--clr-green), var(--clr-green-dk)) border-box;
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-info strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
}

.customer-info span {
    font-size: 0.78rem;
    color: var(--clr-muted);
}


/* ══════════════════════════════════════════
   OWNER SECTION
══════════════════════════════════════════ */
.owner-section {
    padding: 110px 0;
    background: var(--clr-bg);
}

.owner-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.owner-image {
    flex: 1;
}

.owner-img-wrap {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
    max-width: 340px;
    margin: 0 auto;
}

.owner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info {
    flex: 1.4;
}

.owner-info .section-tag {
    margin-bottom: 14px;
}

.owner-info h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.position {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 24px;
    display: block;
}

.owner-info p {
    font-size: 0.95rem;
    color: var(--clr-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.owner-info em {
    display: block;
    font-style: italic;
    color: var(--clr-primary);
    font-size: 1rem;
    padding-left: 16px;
    border-left: 3px solid var(--clr-primary-lt);
}


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
    padding: 110px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    border-radius: var(--radius-md);
    padding: 36px 24px 28px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.contact-card.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card.instagram {
    background: linear-gradient(135deg, #405de6, #c13584, #fd1d1d);
}

.contact-card.tiktok {
    background: linear-gradient(135deg, #111, #333);
}

.contact-card.info-card {
    background: linear-gradient(135deg, var(--clr-primary), #0472ad);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.contact-card-action {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.75;
    letter-spacing: 0.04em;
    margin-top: auto;
    padding-top: 14px;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--clr-bg);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    font-size: 0.88rem;
    color: var(--clr-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-note i {
    color: var(--clr-primary);
    margin-top: 2px;
    flex-shrink: 0;
}


/* ══════════════════════════════════════════
   FOOTER — Glassmorphism
══════════════════════════════════════════ */
footer {
    position: relative;
    background: linear-gradient(160deg, #071410 0%, #0d1f16 45%, #0e1e2a 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 28px;
    overflow: hidden;
}

/* Ambient glow blobs behind footer glass panels */
footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(26, 107, 71, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37, 168, 110, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Glassmorphism panels for each footer column — REMOVED, now plain */
.footer-brand,
.footer-links,
.footer-contact-info {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0;
    padding: 28px 24px;
    box-shadow: none;
    transition: none;
}

.footer-brand:hover,
.footer-links:hover,
.footer-contact-info:hover {
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.2));
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.75;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.social-links a:hover {
    background: var(--clr-green);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact-info h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #7fffc0;
    padding-left: 4px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
}

.footer-contact-info i {
    color: #7fffc0;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.4));
}

.copyright {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    margin-top: 48px;
    padding: 36px 28px;
    background: linear-gradient(135deg, var(--clr-bg), var(--clr-bg2));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-cta p {
    font-size: 1rem;
    color: var(--clr-muted);
    margin-bottom: 18px;
}


/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-layout {
        grid-template-columns: 1fr;
    }

    .owner-content {
        gap: 40px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .process-connector::after {
        right: auto;
        top: auto;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: var(--clr-primary-lt);
        border-left-color: transparent;
    }

    .process-step {
        width: 100%;
        max-width: 500px;
    }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        transform-origin: top center;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.28s ease, opacity 0.28s ease;
        overflow: hidden;
    }

    nav.open {
        transform: scaleY(1);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        padding: 10px 20px 20px;
        gap: 2px;
    }

    nav ul li a {
        color: var(--clr-text) !important;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
    }

    nav ul li a:hover {
        background: var(--clr-bg);
    }

    /* Hero */
    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero-content {
        bottom: 60px;
        padding: 28px 24px;
        border-radius: var(--radius-md);
        width: 100%;
        left: 0;
        right: 0;
        transform: translate(0, -50%);
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hide hero stats on mobile */
    .hero-stats,
    .stat-divider {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact-info {
        padding: 22px 20px;
    }

    /* Owner */
    .owner-content {
        flex-direction: column;
        gap: 32px;
    }

    .owner-img-wrap {
        max-width: 240px;
    }

    .owner-info {
        text-align: center;
    }

    .owner-info em {
        text-align: left;
    }

    /* Section titles */
    .section-title {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* CTA banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
    }

    .cta-banner-btn {
        width: 100%;
        justify-content: center;
    }

    /* VM */
    .vision-card,
    .mission-card {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 22px 18px;
    }
}