* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ─── STICKY NAV ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 50px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo img {
    height: 40px;
}

.nav-brand {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a87a;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #fff;
}

.nav-cta {
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 24px 28px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 12px;
    color: #c8a87a;
    font-weight: 600;
}

.mobile-menu a:hover { color: #fff; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
    z-index: 1;
}

.header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 72px;
    right: 60px;
    max-width: 600px;
    text-align: right;
    color: #fff;
    z-index: 3;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.18;
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 22px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-mobile-cta {
    display: none;
    margin-top: 26px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.55;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    animation: bounce 1.6s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(6px); }
}

/* ─── SHARED SECTION ────────────────────────────────────────── */
section {
    padding: 110px 60px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a08060;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.section-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    max-width: 580px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.28);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 50px;
    background: linear-gradient(135deg, #a08060, #c8a87a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(160,128,96,0.35);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(160,128,96,0.5);
    background: linear-gradient(135deg, #b09070, #d8b88a);
}

/* ─── IMAGE PLACEHOLDER ─────────────────────────────────────── */
.img-placeholder {
    background: #161616;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160,128,96,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.img-placeholder svg {
    width: 36px;
    height: 36px;
    opacity: 0.2;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
    background: #0f0f0f;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 22px;
    background: rgba(255,255,255,0.025);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.about-stat:hover {
    border-color: rgba(160,128,96,0.35);
    background: rgba(160,128,96,0.05);
}

.about-stat-number {
    font-size: 34px;
    font-weight: 700;
    color: #c8a87a;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ─── GALLERY STRIP ─────────────────────────────────────────── */
.gallery-strip {
    background: #0a0a0a;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    height: 360px;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-strip img:hover { opacity: 0.85; }

/* ─── WHY US ─────────────────────────────────────────────────── */
.why {
    background: #0a0a0a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 34px 26px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #a08060, #c8a87a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    background: rgba(160,128,96,0.06);
    border-color: rgba(160,128,96,0.28);
    transform: translateY(-6px);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(160,128,96,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.why-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.why-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.48);
    line-height: 1.65;
}

/* ─── WHY CAROUSEL DOTS ─────────────────────────────────────── */
.why-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.why-dot.active {
    background: #c8a87a;
    width: 22px;
    border-radius: 4px;
}

/* ─── WORK SHOWCASE ─────────────────────────────────────────── */
.work-showcase {
    background: #0f0f0f;
    padding: 80px 60px;
}

.work-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 6px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.04);
}

.work-item .work-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    border-radius: 0 0 12px 12px;
}

.work-item:hover .work-label {
    opacity: 1;
    transform: translateY(0);
}

.work-item:nth-child(1) { grid-column: span 5; grid-row: 1; }
.work-item:nth-child(2) { grid-column: span 4; grid-row: 1; }
.work-item:nth-child(3) { grid-column: span 3; grid-row: 1; }
.work-item:nth-child(4) { grid-column: span 3; grid-row: 2; }
.work-item:nth-child(5) { grid-column: span 5; grid-row: 2; }
.work-item:nth-child(6) { grid-column: span 4; grid-row: 2; }

/* ─── PACKAGES ───────────────────────────────────────────────── */
.packages {
    background: #0a0a0a;
}

.packages-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pkg-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pkg-card:hover {
    border-color: rgba(160,128,96,0.32);
    background: rgba(160,128,96,0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.pkg-card.popular {
    border-color: rgba(160,128,96,0.45);
    background: rgba(160,128,96,0.07);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #a08060, #c8a87a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
}

.pkg-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a08060;
    margin-bottom: 10px;
}

.pkg-price {
    font-size: 33px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.pkg-price span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

.pkg-timeline {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
}

.pkg-features li::before {
    content: '✓';
    color: #c8a87a;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pkg-cta {
    margin-top: 28px;
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
}

.pkg-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pkg-card.popular .pkg-cta {
    background: linear-gradient(135deg, #a08060, #c8a87a);
    border-color: transparent;
}

.pkg-card.popular .pkg-cta:hover {
    background: #fff;
    color: #000;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how {
    background: #0f0f0f;
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 0;
}

.how-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 40px;
    position: relative;
}

.how-step:last-child {
    padding-bottom: 0;
}

.how-step::after {
    content: '';
    position: absolute;
    left: 34px;
    top: 70px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(160,128,96,0.4), rgba(160,128,96,0.0));
}

.how-step:last-child::after {
    display: none;
}

.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(160,128,96,0.45);
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #c8a87a;
    letter-spacing: 1px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    padding-top: 14px;
}

.step-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.48);
    line-height: 1.72;
}

.how-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 270px 185px;
    gap: 8px;
}

.how-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.how-images img:hover {
    transform: scale(1.02);
}

.how-images img:nth-child(1) {
    grid-column: span 2;
    border-radius: 16px;
}

.how-images img:nth-child(2),
.how-images img:nth-child(3) {
    border-radius: 16px;
}

/* ─── DELIVERABLES ───────────────────────────────────────────── */
.deliverables {
    background: #0a0a0a;
}

.deliverables-header {
    margin-bottom: 50px;
}

.deliverables-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.deliver-box {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 38px;
}

.deliver-box-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a08060;
    margin-bottom: 22px;
}

.deliver-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deliver-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

.deliver-list li .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(160,128,96,0.17);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: #c8a87a;
    margin-top: 1px;
}

.info-list li .icon {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
}

.info-list li {
    color: rgba(255,255,255,0.48);
}

/* ─── MOOD BOARD STRIP ──────────────────────────────────────── */
.mood-strip {
    padding: 0;
    background: #0a0a0a;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    height: 360px;
}

.mood-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.mood-strip img:hover { opacity: 0.85; }

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-section {
    background: linear-gradient(135deg, #111 0%, #1a1208 50%, #111 100%);
    border-top: 1px solid rgba(160,128,96,0.13);
    border-bottom: 1px solid rgba(160,128,96,0.13);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    margin-top: 36px;
}

.contact-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 6px;
}

.contact-info a {
    color: #c8a87a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.contact-info a:hover { color: #d8b88a; }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-link:hover {
    background: rgba(160,128,96,0.14);
    border-color: rgba(160,128,96,0.4);
    color: #c8a87a;
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(160,128,96,0.16);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.form-group label .req {
    color: #c8a87a;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(160,128,96,0.5);
    background: rgba(160,128,96,0.04);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: rgba(220,80,80,0.55);
}

.field-error {
    font-size: 11.5px;
    color: #e07070;
    min-height: 15px;
    line-height: 1.4;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 11px 16px;
    margin-bottom: 10px;
}

.captcha-question {
    flex: 1;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.captcha-refresh {
    background: none;
    border: none;
    color: rgba(255,255,255,0.28);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color 0.2s;
}

.captcha-refresh:hover { color: #c8a87a; }

.form-submit {
    padding: 15px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #a08060, #c8a87a);
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(160,128,96,0.3);
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(160,128,96,0.45);
    background: linear-gradient(135deg, #b09070, #d8b88a);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(80,160,100,0.1);
    border: 1px solid rgba(80,160,100,0.28);
    color: #7cd9a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-success.visible { display: block; }

.form-error-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(220,80,80,0.08);
    border: 1px solid rgba(220,80,80,0.28);
    color: #e07070;
    font-size: 13px;
}

.form-error-msg.visible { display: block; }

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-wrap {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-wrap img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: block;
}

.lightbox.active .lightbox-wrap img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: #fff;
    color: #000;
}

.lightbox-loader {
    position: absolute;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.08);
    border-top-color: #c8a87a;
    border-radius: 50%;
    animation: lb-spin 0.75s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox.loading .lightbox-loader { opacity: 1; }

#lightboxImg {
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.lightbox.loading #lightboxImg { opacity: 0; }

@keyframes lb-spin {
    to { transform: rotate(360deg); }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
    background: #080808;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 34px;
    opacity: 0.82;
}

.footer-logo span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}

.footer-link {
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-link:hover { color: #c8a87a; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.08s; }
.fade-up-d2 { transition-delay: 0.16s; }
.fade-up-d3 { transition-delay: 0.24s; }
.fade-up-d4 { transition-delay: 0.32s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .work-item:nth-child(1) { grid-column: span 6; grid-row: auto; }
    .work-item:nth-child(2) { grid-column: span 6; grid-row: auto; }
    .work-item:nth-child(3) { grid-column: span 4; grid-row: auto; }
    .work-item:nth-child(4) { grid-column: span 4; grid-row: auto; }
    .work-item:nth-child(5) { grid-column: span 4; grid-row: auto; }
    .work-item:nth-child(6) { display: none; }
}

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .how-inner { grid-template-columns: 1fr; }
    .how-images { display: none; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 300px; }
    .gallery-strip img:nth-child(4),
    .gallery-strip img:nth-child(5) { display: none; }
    .mood-strip { grid-template-columns: repeat(3, 1fr); }
    .mood-strip img:nth-child(4),
    .mood-strip img:nth-child(5) { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .deliverables-boxes { grid-template-columns: 1fr; }
    .work-grid { grid-template-rows: 220px 220px; }
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
}

@media (max-width: 768px) {
    section { padding: 70px 24px; }
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15px; }

    .hero-content {
        bottom: 32px;
        right: 22px;
        left: 22px;
        text-align: center;
    }

    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .hero-mobile-cta { display: block; }
    .hero-mobile-cta .btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }
    .scroll-indicator { display: none; }

    .gallery-strip { grid-template-columns: 1fr 1fr; height: 260px; }
    .gallery-strip img:nth-child(3),
    .gallery-strip img:nth-child(4),
    .gallery-strip img:nth-child(5) { display: none; }

    .work-showcase { padding: 70px 24px; }
    .work-showcase-header { flex-direction: column; align-items: center; text-align: center; }
    .work-showcase-header .section-sub { text-align: center !important; max-width: 100%; }

    .work-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
        gap: 6px;
    }

    .work-item:nth-child(1) { grid-column: span 2; grid-row: auto; }
    .work-item:nth-child(2) { grid-column: span 1; grid-row: auto; }
    .work-item:nth-child(3) { grid-column: span 1; grid-row: auto; }
    .work-item:nth-child(4) { grid-column: span 1; grid-row: auto; }
    .work-item:nth-child(5) { grid-column: span 1; grid-row: auto; }
    .work-item:nth-child(6) { display: none; }

    .why .fade-up { opacity: 1; transform: none; transition: none; }

    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding-right: 56px;
        margin-top: 36px;
    }
    .why-grid::-webkit-scrollbar { display: none; }
    .why-card {
        flex: 0 0 calc(100% - 56px);
        scroll-snap-align: start;
    }
    .why-dots { display: flex; }
    .packages-grid { grid-template-columns: 1fr; }
    .packages-intro { flex-direction: column; align-items: flex-start; }

    .mood-strip {
        grid-template-columns: 1fr 1fr;
        height: 260px;
    }
    .mood-strip img:nth-child(3),
    .mood-strip img:nth-child(4),
    .mood-strip img:nth-child(5) { display: none; }

    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-stat { padding: 20px 14px; }
    .about-stat-number { font-size: 26px; }
    .about-stat-label { font-size: 12px; }
}
