/* ====================================================
   DIDIK BUILDERS — Premium CSS Design System
   ==================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --bg-deep:       #08090b;
    --bg-dark:       #0d0f14;
    --bg-card:       #141720;
    --bg-card-hover: #1a1e2a;
    --bg-glass:      rgba(20, 23, 32, 0.7);
    
    --gold:          #c9a84c;
    --gold-light:    #e4c56a;
    --gold-glow:     rgba(201, 168, 76, 0.25);
    --gold-subtle:   rgba(201, 168, 76, 0.08);
    
    --white:         #ffffff;
    --text-primary:  #eceef2;
    --text-secondary:#a0a6b5;
    --text-muted:    #636878;
    --border:        rgba(255, 255, 255, 0.06);
    --border-hover:  rgba(201, 168, 76, 0.3);

    /* Typography */
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-gap: 7rem;
    --container:   1200px;
    
    /* Easing */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-med:       0.45s var(--ease-out);
    --t-fast:      0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
input, textarea, select {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: transparent;
    border: none;
    outline: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-trail {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

body:hover .cursor,
body:hover .cursor-trail { opacity: 1; }

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-inner img {
    height: 70px;
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: var(--section-gap) 0; }

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

.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.badge-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.8;
}

.section-header { margin-bottom: 4rem; }
.section-header.text-center .section-sub { margin: 0 auto; }
.section-header.text-center .badge-label { display: flex; justify-content: center; }
.section-header.text-center .badge-label::before { display: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--t-med);
    cursor: pointer;
    white-space: nowrap;
}

.btn i { transition: transform 0.3s var(--ease-spring); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0d0f14;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav {
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid var(--border-hover);
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--gold);
    color: #0d0f14;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-large { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 1.5rem 0;
    transition: var(--t-med);
}

.navbar.scrolled {
    background: rgba(8, 9, 11, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.logo img { height: 42px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--t-fast);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s var(--ease-spring);
}

.nav-link:hover::after,
.nav-link.active::after { width: 20px; }

.btn-nav { margin-left: 0.5rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--t-fast);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--bg-card);
    z-index: 750;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease-out);
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-inner {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--t-fast);
}

.mobile-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    padding-left: 1.5rem;
}

.mobile-cta { margin-top: auto; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 9, 11, 0.55) 0%,
        rgba(8, 9, 11, 0.7) 50%,
        rgba(8, 9, 11, 0.95) 100%
    );
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin-top: -4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i { width: 14px; height: 14px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    -webkit-text-stroke: 1px var(--gold);
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(8, 9, 11, 0.7);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.8rem 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    vertical-align: top;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 55%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--bg-deep);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-accent:hover img { transform: scale(1.04); }

.about-badge-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.about-badge-float i {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.about-badge-float strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.about-badge-float span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    position: relative;
    overflow: hidden;
}

.services-bg-accent {
    position: absolute;
    top: 10%;
    right: -20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--t-med);
    animation-delay: var(--delay);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border-hover);
}

.service-card:hover::before { opacity: 1; }

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-number { color: var(--gold-subtle); }

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--t-fast);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold);
    color: #0d0f14;
}

.service-icon-wrap i { width: 22px; height: 22px; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.service-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--t-fast);
}

.service-card:hover .service-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: rotate(45deg);
}

.service-arrow i { width: 16px; height: 16px; }

/* CTA Card */
.service-card-cta {
    background: linear-gradient(135deg, var(--gold-subtle) 0%, rgba(201,168,76,0.03) 100%);
    border-color: var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-cta:hover {
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.05) 100%);
}

.cta-card-content {
    text-align: center;
}

.cta-card-content i {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 1.25rem;
}

.cta-card-content h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--bg-dark); }

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-desc {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.filter-btn {
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: var(--t-fast);
}

.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }

.filter-btn.active {
    background: var(--gold);
    color: #0d0f14;
    border-color: var(--gold);
}

/* ===== GROUPED GALLERY ===== */

/* Category section header */
.gallery-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    margin-top: 3.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.gallery-section-header:first-of-type { margin-top: 0; }

.gallery-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.gallery-section-icon i { width: 22px; height: 22px; }

.gallery-group-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: var(--font-display);
}

.gallery-group-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Photo grid per group */
.foto-group { margin-bottom: 1rem; }

.foto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Gallery card (foto) */
.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: var(--border-hover);
}

.gallery-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    display: block;
}

.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }

/* Caption overlay on hover */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.overlay-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.35s var(--ease-spring);
}

.gallery-card:hover .overlay-zoom { transform: translate(-50%, -50%) scale(1); }
.overlay-zoom i { width: 20px; height: 20px; }

/* Caption text below image */
.gallery-card-caption {
    padding: 0.85rem 1rem;
    background: var(--bg-card);
}

.gallery-card-caption strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.gallery-card-caption span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gallery-card-caption span i { width: 12px; height: 12px; color: var(--gold); }

/* ===== VIDEO PORTRAIT / TEGAK ===== */
.video-portrait-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
    border-color: var(--border-hover);
}

/* Portrait ratio 9:16 */
.video-card-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
}

.video-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.video-card:hover .video-card-media video { transform: scale(1.04); }

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.75rem;
    transition: background 0.35s ease;
}

.video-card:hover .video-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.vc-top {
    display: flex;
    justify-content: flex-end;
}

.video-badge-live {
    background: var(--gold);
    color: #0d0f14;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.vc-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    transition: transform 0.35s var(--ease-spring);
}

.video-card:hover .vc-center { transform: translate(-50%, -50%) scale(1); }

.play-btn-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0f14;
    box-shadow: 0 0 20px var(--gold-glow);
}

.play-btn-circle i { width: 22px; height: 22px; }

.vc-bottom { }

.vc-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.vc-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* Caption below video card */
.video-card-caption {
    padding: 0.8rem 1rem;
    background: var(--bg-card);
}

.video-card-caption strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.video-card-caption span {
    font-size: 0.72rem;
    color: var(--text-muted);
}



/* ===== WHY US ===== */
.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.whyus-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.whyus-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.whyus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--t-fast);
}

.whyus-item:hover .whyus-icon {
    background: var(--gold);
    color: #0d0f14;
}

.whyus-icon i { width: 22px; height: 22px; }

.whyus-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.whyus-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Us Gallery */
.whyus-img-grid {
    position: relative;
    height: 450px;
}

.wg-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.wg-img img { width: 100%; height: 100%; object-fit: cover; }

.wg-main {
    top: 0;
    left: 0;
    width: 65%;
    height: 75%;
    z-index: 2;
}

.wg-top {
    top: 0;
    right: 0;
    width: 32%;
    height: 46%;
    z-index: 1;
}

.wg-bot {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 46%;
    z-index: 3;
    border: 3px solid var(--bg-deep);
}

/* ===== PROCESS ===== */
.process { background: var(--bg-dark); }

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    animation-delay: var(--delay);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--gold);
    transition: var(--t-med);
}

.step-icon i { width: 28px; height: 28px; }

.process-step:hover .step-icon {
    background: var(--gold);
    color: #0d0f14;
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-arrow {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    padding-top: 2rem;
    flex-shrink: 0;
}

.process-arrow i { width: 24px; height: 24px; }

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.contact-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-icon-box i { width: 18px; height: 18px; }

.contact-list strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-list span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Form Card */
.contact-card-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}

.contact-card-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card-form > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--t-fast);
    width: 100%;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}

.footer-main { padding: 5rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo img { height: 40px; }

.footer-brand .footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--t-fast);
}

.footer-socials a:hover {
    background: var(--gold-subtle);
    border-color: var(--border-hover);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-socials i { width: 16px; height: 16px; }

.footer-nav-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-col a,
.footer-nav-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--t-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav-col a:hover { color: var(--gold); }

.footer-contact-col i { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-contact-col span { color: var(--text-muted); line-height: 1.5; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== MODALS ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-box video,
.modal-box img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    border: 1px solid var(--border);
}

.modal-box-img img {
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--t-fast);
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.modal-close i { width: 18px; height: 18px; }

/* Modal caption bar */
.modal-caption {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.modal-caption i { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.modal-caption span { color: var(--white); }

/* Video modal wider */
.modal-box-video video {
    max-height: 80vh;
    width: auto;
    max-width: 90vw;
}


/* ===== WA FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 600;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    transition: var(--t-med);
    animation: pulseWA 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.55);
}

@keyframes pulseWA {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

.wa-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
    transition: var(--t-fast);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 600;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--t-fast);
    cursor: pointer;
}

.back-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--gold);
}

.back-top i { width: 18px; height: 18px; }

/* ===== TESTIMONIALS / PENILAIAN KLIEN ===== */
.testimonials {
    background: var(--bg-deep);
    overflow: hidden;
}

/* Rating Summary */
.testimonial-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ts-rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-right: 3rem;
    border-right: 1px solid var(--border);
}

.ts-score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.ts-stars {
    display: flex;
    gap: 2px;
}

.ts-stars .star-filled {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.ts-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Rating Bars */
.ts-bars {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.ts-bar-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ts-bar-row > span:first-child {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 30px;
    justify-content: flex-end;
}

.star-sm {
    width: 12px;
    height: 12px;
    color: var(--gold);
    fill: var(--gold);
}

.ts-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.ts-bar-fill {
    height: 100%;
    width: var(--fill);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1.2s var(--ease-out);
}

.ts-pct {
    min-width: 32px;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.tc-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s var(--ease-out);
    cursor: grab;
    padding: 1rem 0;
}

.tc-track:active {
    cursor: grabbing;
}

.tc-card {
    min-width: calc(33.333% - 1rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--t-med);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.tc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tc-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.tc-card:hover::before {
    opacity: 1;
}

/* Quote icon */
.tc-quote {
    color: var(--gold);
    opacity: 0.3;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Stars row */
.tc-rating {
    display: flex;
    gap: 2px;
}

.tc-rating i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

/* Review text */
.tc-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

/* Project tag */
.tc-project {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-subtle);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    width: fit-content;
}

.tc-project i {
    width: 12px;
    height: 12px;
}

/* Author info */
.tc-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-deep);
    flex-shrink: 0;
    text-transform: uppercase;
}

.tc-author-info {
    display: flex;
    flex-direction: column;
}

.tc-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.tc-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Carousel Controls */
.tc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tc-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-med);
}

.tc-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--gold);
    transform: scale(1.08);
}

.tc-btn i {
    width: 20px;
    height: 20px;
}

.tc-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
    transition: var(--t-fast);
    cursor: pointer;
    border: none;
    padding: 0;
}

.tc-dot.active {
    opacity: 1;
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

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

/* ── Tablet Landscape ── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .foto-grid { grid-template-columns: repeat(3, 1fr); }
    .video-portrait-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .tc-card { min-width: calc(50% - 0.75rem); }
}

/* ── Tablet Portrait ── */
@media (max-width: 900px) {
    :root { --section-gap: 5rem; }

    .about-grid,
    .whyus-grid,
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }

    .about-image-stack { height: 380px; }
    .whyus-img-grid { height: 320px; }
    .about-visual { order: -1; }

    .nav-links,
    .btn-nav { display: none; }
    .hamburger { display: flex; }

    .hero-stats { display: none; }

    .foto-grid { grid-template-columns: repeat(2, 1fr); }
    .video-portrait-grid { grid-template-columns: repeat(3, 1fr); }

    /* Testimonials */
    .testimonial-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .ts-rating-big {
        flex-direction: row;
        padding-right: 0;
        border-right: none;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
    }
    .ts-score { font-size: 3rem; }
    .ts-stars { align-self: center; }
    .ts-count { white-space: normal; text-align: left; }

    /* About features */
    .about-features { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

    /* Process steps */
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── Mobile Large ── */
@media (max-width: 768px) {
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }

    .services-grid { grid-template-columns: 1fr; }
    .portfolio-header { flex-direction: column; align-items: flex-start; }

    .process-steps { gap: 1.5rem; }
    .process-arrow { display: none; }
    .process-step { min-width: 140px; flex: 1 1 40%; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .contact-actions { flex-direction: column; }
    .contact-actions .btn { justify-content: center; }

    .foto-grid { grid-template-columns: repeat(2, 1fr); }
    .video-portrait-grid { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials — 1 card per view */
    .tc-card {
        min-width: 100%;
        padding: 1.75rem;
    }
    .tc-text { font-size: 0.9rem; }
    .tc-controls { margin-top: 2rem; }

    /* About badge float — reposition */
    .about-badge-float {
        top: auto;
        bottom: 10px;
        left: 10px;
        transform: none;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* About features single col on smaller tablets */
    .about-features { grid-template-columns: 1fr; gap: 0.5rem; }

    /* Whyus gallery */
    .whyus-gallery { order: -1; }

    /* Section headings smaller */
    .section-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

/* ── Mobile Small ── */
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }

    .hero-subtitle br { display: none; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .about-image-stack { height: 280px; }
    .scroll-indicator { display: none; }

    .service-card { padding: 1.5rem; }
    .service-card-top { gap: 0.75rem; }
    .service-number { font-size: 2rem; }

    .contact-card-form { padding: 1.5rem; }

    .foto-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .video-portrait-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .gallery-section-header { margin-top: 2.5rem; }

    /* Testimonials mobile */
    .testimonial-summary {
        padding: 1.25rem;
        max-width: 100%;
        gap: 1.5rem;
    }
    .ts-rating-big {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    .ts-score { font-size: 2.8rem; }
    .ts-count { text-align: center; font-size: 0.75rem; }
    .ts-stars .star-filled { width: 16px; height: 16px; }

    .tc-card { padding: 1.5rem; }
    .tc-quote { width: 24px; height: 24px; }
    .tc-text { font-size: 0.85rem; line-height: 1.7; }
    .tc-author { gap: 0.65rem; padding-top: 1rem; }
    .tc-avatar { width: 38px; height: 38px; font-size: 0.95rem; }
    .tc-name { font-size: 0.9rem; }
    .tc-role { font-size: 0.75rem; }
    .tc-project { font-size: 0.7rem; padding: 0.3rem 0.65rem; }

    .tc-controls { gap: 0.75rem; margin-top: 1.5rem; }
    .tc-btn { width: 38px; height: 38px; }
    .tc-btn i { width: 16px; height: 16px; }

    /* Process steps single column */
    .process-step {
        min-width: 100%;
        flex: 1 1 100%;
    }

    /* About badge float */
    .about-badge-float {
        padding: 0.6rem 0.85rem;
        border-radius: 8px;
    }
    .about-badge-float i { width: 22px; height: 22px; }
    .about-badge-float strong { font-size: 0.85rem; }
    .about-badge-float span { font-size: 0.7rem; }

    /* Contact list items */
    .contact-list li { flex-direction: row; gap: 1rem; }
    .contact-icon-box { flex-shrink: 0; }

    /* Hero content spacing */
    .hero-content { margin-top: -2rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }

    /* Section sub text */
    .section-sub { font-size: 0.9rem; }

    /* WhatsApp float and back-top spacing */
    .wa-float { bottom: 1.5rem; left: 1.25rem; width: 52px; height: 52px; }
    .back-top { bottom: 5rem; right: 1.25rem; }
}

/* ── Very small mobile ── */
@media (max-width: 360px) {
    .container { padding: 0 1rem; }

    .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 0.9rem; }

    .tc-card { padding: 1.25rem; }
    .tc-text { font-size: 0.82rem; }
    .tc-avatar { width: 34px; height: 34px; font-size: 0.85rem; }

    .about-image-stack { height: 240px; }

    .logo img { height: 34px; }
    .logo-main { font-size: 1rem; }
    .logo-sub { font-size: 0.55rem; }

    .section-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
    .badge-label { font-size: 0.65rem; letter-spacing: 0.1em; }
}

/* ===== MODAL MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-backdrop {
        padding: 1rem;
        align-items: center;
    }

    .modal-box {
        max-width: 95vw;
        max-height: 85vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modal-box video,
    .modal-box img {
        max-width: 92vw;
        max-height: 70vh;
        border-radius: 8px;
    }

    .modal-box-video video {
        max-height: 68vh;
    }

    .modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 950;
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.7);
        border: 1px solid rgba(255,255,255,0.25);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .modal-caption {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-box video,
    .modal-box img {
        max-height: 62vh;
        max-width: 94vw;
    }

    .modal-box-video video {
        max-height: 60vh;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ===== SECTION BACKGROUNDS ===== */
.whyus { background: var(--bg-dark); }

