/* ========================================
   BERLIAN TEKNIK INDUSTRI - STYLES
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --deep-olive: #1B2A1B;
    --sage: #5C7A5C;
    --olive-green: #6B8F5E;
    --warm-gold: #C8A951;
    --cream: #F5F0E8;
    --near-black: #0F1A0F;
    --white: #FFFFFF;
    --overlay-dark: rgba(15, 26, 15, 0.92);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;

    --section-py: 120px;
    --container: 1200px;
    --container-lg: 1400px;
    --gap-lg: 80px;
    --gap-md: 48px;
    --gap-sm: 24px;

    --shadow-card: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 24px 60px rgba(0,0,0,0.14);
    --shadow-float: 0 8px 32px rgba(0,0,0,0.25);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--near-black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
    background: rgba(27, 42, 27, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background: rgba(27, 42, 27, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

.logo-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 5px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--warm-gold);
    letter-spacing: 6px;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-backdrop.active {
    display: block;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1B2A1B 0%, #0F1A0F 100%);
}

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

.grid-layer {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 6px;
    padding: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-item {
    overflow: hidden;
    border-radius: 8px;
    --revealed: 0;
    opacity: 0;
}

.grid-item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
.grid-item:nth-child(2) { grid-area: 1 / 3 / 2 / 5; }
.grid-item:nth-child(3) { grid-area: 2 / 3 / 4 / 5; }
.grid-item:nth-child(4) { grid-area: 1 / 5 / 3 / 7; }
.grid-item:nth-child(5) { grid-area: 3 / 1 / 5 / 3; }
.grid-item:nth-child(6) { grid-area: 3 / 5 / 4 / 7; }

.layer-2 .grid-item:nth-child(1) { grid-area: 1 / 7 / 2 / 9; }
.layer-2 .grid-item:nth-child(2) { grid-area: 2 / 7 / 4 / 9; }
.layer-2 .grid-item:nth-child(3) { grid-area: 1 / 9 / 3 / 11; }
.layer-2 .grid-item:nth-child(4) { grid-area: 3 / 7 / 5 / 9; }
.layer-2 .grid-item:nth-child(5) { grid-area: 4 / 9 / 6 / 11; }
.layer-2 .grid-item:nth-child(6) { grid-area: 3 / 9 / 4 / 11; }

.grid-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 15, 0.88) 0%,
        rgba(15, 26, 15, 0.75) 40%,
        rgba(15, 26, 15, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--warm-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

/* Title animation - CSS fallback when JS fails */
.title-line {
    opacity: 0;
    transform: translateY(40px);
    animation: titleLineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.6s; }
.title-line:nth-child(2) { animation-delay: 0.8s; }
.title-line:nth-child(3) { animation-delay: 1.0s; }

@keyframes titleLineReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--sage);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-phone {
    margin-top: 8px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--warm-gold);
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--white);
    transform: scale(1.02);
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.hero-gold-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, var(--warm-gold) 0%, transparent 100%);
    z-index: 2;
    opacity: 0.6;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--olive-green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 143, 94, 0.35);
}

.btn-primary:hover {
    background: #5a7d50;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 143, 94, 0.45);
}

.btn-plts {
    background: var(--olive-green);
    color: var(--white);
    width: 100%;
}

.btn-plts:hover {
    background: #5a7d50;
    transform: translateY(-2px);
}

.btn-lift {
    background: var(--warm-gold);
    color: var(--near-black);
    width: 100%;
}

.btn-lift:hover {
    background: #b89842;
    transform: translateY(-2px);
}

.btn-cooling {
    background: var(--deep-olive);
    color: var(--white);
    width: 100%;
}

.btn-cooling:hover {
    background: var(--near-black);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--warm-gold);
    color: var(--near-black);
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
}

.btn-submit:hover {
    background: #b89842;
    transform: translateY(-2px);
}

/* ---- Floating Contact ---- */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-float);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.floating-wa {
    background: #25D366;
}

.floating-wa:hover {
    background: #1fad53;
}

.floating-phone {
    background: var(--olive-green);
}

.floating-phone:hover {
    background: #5a7d50;
}

.wa-icon {
    width: 20px;
    height: 20px;
}

.floating-icon {
    width: 18px;
    height: 18px;
}

/* ---- Sections General ---- */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: var(--deep-olive);
}

.section-white {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--gap-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--sage);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Services Section ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 36px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon-wrap .service-icon {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.icon-plts { background: var(--olive-green); }
.icon-lift { background: var(--warm-gold); }
.icon-cooling { background: var(--deep-olive); }

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 12px;
}

.service-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sage);
}

.tag-separator {
    opacity: 0.5;
}

.service-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--olive-green);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--deep-olive);
    gap: 10px;
}

.link-icon {
    width: 16px;
    height: 16px;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    color: var(--warm-gold);
    margin-bottom: 16px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--warm-gold);
    line-height: 1;
    margin-top: -10px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---- Gallery Section ---- */
.gallery-masonry {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 15, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    gap: 8px;
}

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

.gallery-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.gallery-caption {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0 16px;
}

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

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

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- Testimonials Section ---- */
.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    min-height: 360px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 48px 40px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-card.prev {
    transform: translateX(-60px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--warm-gold);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, var(--olive-green), #4a6b42); }
.avatar-2 { background: linear-gradient(135deg, var(--warm-gold), #a8883a); }
.avatar-3 { background: linear-gradient(135deg, var(--deep-olive), #243324); }
.avatar-4 { background: linear-gradient(135deg, #7a9b6a, #5a7a50); }
.avatar-5 { background: linear-gradient(135deg, #b8942e, #967a24); }

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
}

.author-info span {
    font-size: 14px;
    color: var(--sage);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: var(--warm-gold);
    fill: var(--warm-gold);
}

.testimonial-rating .star-half {
    fill: url(#halfStar);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-olive);
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: var(--deep-olive);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav svg {
    width: 20px;
    height: 20px;
}

.testimonial-prev { left: -60px; }
.testimonial-next { right: -60px; }

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0c8b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--warm-gold);
    width: 32px;
    border-radius: 5px;
}

.testimonial-dot:hover {
    background: var(--warm-gold);
}

/* ---- Pricing Section ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
    border: 2px solid var(--warm-gold);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 20px;
}

.badge-plts { background: var(--olive-green); }
.badge-lift { background: var(--warm-gold); color: var(--near-black); }
.badge-cooling { background: var(--deep-olive); }

.pricing-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--sage);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--near-black);
    vertical-align: top;
}

.price-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--near-black);
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--sage);
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-check {
    width: 18px;
    height: 18px;
    color: var(--olive-green);
    flex-shrink: 0;
}

/* ---- Contact Section ---- */
.section-contact {
    background: linear-gradient(135deg, #1B2A1B, #0F1A0F);
    padding: var(--section-py) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--sage);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 169, 81, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gold);
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-text strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.info-text span {
    color: var(--sage);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 32px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--warm-gold);
    background: rgba(255,255,255,0.12);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.contact-form select option {
    background: var(--deep-olive);
    color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Footer ---- */
.footer {
    background: #0A110A;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.footer-brand-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--warm-gold);
    letter-spacing: 5px;
}

.footer-tagline {
    color: var(--sage);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--warm-gold);
    padding-left: 4px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--warm-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--warm-gold);
}

.footer-legal span {
    color: rgba(255,255,255,0.2);
}

/* ---- Scroll Reveal Base ---- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.featured {
        order: -1;
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 80px;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .hero {
        overflow: hidden;
    }

    .hero-grid {
        display: block;
        opacity: 0.35;
    }

    .grid-layer {
        gap: 3px;
        padding: 8px;
    }

    .grid-item:nth-child(1) { grid-area: 1 / 1 / 3 / 5; }
    .grid-item:nth-child(2) { grid-area: 1 / 5 / 2 / 9; }
    .grid-item:nth-child(3) { grid-area: 2 / 5 / 4 / 9; }
    .grid-item:nth-child(4) { grid-area: 1 / 9 / 3 / 11; }
    .grid-item:nth-child(5) { grid-area: 3 / 1 / 5 / 5; }
    .grid-item:nth-child(6) { grid-area: 3 / 5 / 4 / 9; }

    .layer-2 .grid-item:nth-child(1) { display: none; }
    .layer-2 .grid-item:nth-child(2) { grid-area: 4 / 9 / 6 / 11; }
    .layer-2 .grid-item:nth-child(3) { display: none; }
    .layer-2 .grid-item:nth-child(4) { grid-area: 3 / 9 / 5 / 11; }
    .layer-2 .grid-item:nth-child(5) { display: none; }
    .layer-2 .grid-item:nth-child(6) { grid-area: 5 / 5 / 7 / 9; }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--deep-olive);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 24px 40px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-radius: 0;
        font-size: 18px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .phone-link {
        font-size: 22px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        order: 0;
        grid-column: auto;
        max-width: none;
        transform: none;
        width: 100%;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-suffix {
        font-size: 32px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .floating-contact {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .floating-btn {
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .testimonial-card {
        padding: 36px 28px 32px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-nav {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .grid-layer {
        gap: 4px;
        padding: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
    .gallery-masonry {
        columns: 1;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card {
        padding: 36px 24px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }
}
