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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --black: #000000;
    --dark-1: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --gray-dark: #333333;
    --gray-mid: #666666;
    --gray-light: #999999;
    --gray-lighter: #cccccc;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 60px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 60px;
    background: rgba(0, 0, 0, 0.95);
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: invert(1) brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.nav-logo img:hover {
    filter: invert(1) brightness(1.5) drop-shadow(0 0 16px rgba(255, 255, 255, 0.45));
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-lighter);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--white);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 80px;
    background: var(--dark-1);
    position: relative;
    background-image: url('images-1/20200710_142907.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

/* Hero Title — Letter-by-letter entrance animation */
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 0.25em;
    overflow: visible;
}

.hero-word {
    display: inline-flex;
    overflow: visible;
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) rotateX(90deg) scale(0.3);
    animation: heroLetterIn 0.7s cubic-bezier(0.16, 1.11, 0.36, 1.2) forwards;
    will-change: transform, opacity;
}

@keyframes heroLetterIn {
    0% {
        opacity: 0;
        transform: translateY(80px) rotateX(90deg) scale(0.3);
        filter: blur(8px);
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) rotateX(-5deg) scale(1.05);
        filter: blur(0px);
    }

    80% {
        transform: translateY(3px) rotateX(2deg) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0px);
    }
}

/* Shimmer sweep across the title */
.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.15) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.15) 55%,
            transparent 60%);
    background-size: 200% 100%;
    background-position: 200% 0;
    animation: heroShimmer 1.8s ease 1.2s forwards;
    mix-blend-mode: overlay;
}

@keyframes heroShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Breadcrumb bounce-in */
.hero-breadcrumb-anim {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: breadcrumbIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes breadcrumbIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero .breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.hero .breadcrumb a:hover {
    color: var(--white);
}

.hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 650px;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.03);
}

/* Floating badge on split image */
.split-image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: badgeFadeIn 0.8s ease 0.5s both;
}

.split-image-badge .badge-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.split-image-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-transform: uppercase;
}

@keyframes badgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background: var(--dark-2);
}

.split-content .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.split-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.split-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-lighter);
    margin-bottom: 32px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.checklist-item .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-item .check-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--black);
    stroke-width: 3;
    fill: none;
}

.split-content .logo-watermark {
    margin-top: 40px;
    opacity: 0.25;
    max-width: 120px;
    filter: invert(1) brightness(1.1);
}

/* ===== MARQUEE / TICKER ===== */
.marquee-section {
    background: var(--dark-3);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
}

.marquee-content span {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.marquee-content .star {
    font-size: 1.5rem;
    color: var(--gray-mid);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== GALLERY GRID ===== */
.gallery-section {
    padding: 100px 60px;
    background: var(--dark-1);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-section .section-header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.gallery-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 4px;
}

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

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item .overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== REASONS / FEATURES GRID (used on about page) ===== */
.reasons-section {
    padding: 100px 60px;
    background: var(--dark-2);
}

.reasons-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-section .section-header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.reasons-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 32px;
    border-radius: 4px;
    transition: var(--transition);
}

.reason-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.reason-card .icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.reason-card .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    stroke-width: 1.5;
    fill: none;
}

.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.reason-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-light);
}

/* ===== WHY CHOOSE US V2 ===== */
.why-us-v2 {
    padding: 120px 60px;
    background: var(--dark-3);
}

.why-us-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.why-us-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.tag-icon {
    font-size: 1.2rem;
    animation: spinStar 4s linear infinite;
    display: inline-block;
}

.why-us-content {
    display: flex;
    flex-direction: column;
}

.why-us-label {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.why-us-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.why-us-content h2 em {
    font-style: italic;
    color: var(--gray-lighter);
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.why-feat {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.why-feat:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(6px);
}

.why-feat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    min-width: 40px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.why-feat-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.why-feat-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-light);
}

.why-us-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    align-self: flex-start;
}

.why-us-cta:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-3);
    overflow: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 60px;
}

.testimonials-section .section-header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.testimonials-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 420px;
    background: var(--dark-4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 40px 32px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-lighter);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 4px;
}

/* Dots navigation */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-mid);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonials-dots .dot.active {
    background: var(--white);
}

/* ===== CONTACT / CTA SECTION ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background: var(--dark-2);
    position: relative;
}

.contact-left {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--dark-1);
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images-1/Steel metallic epoxy 2.jpg') center/cover;
    opacity: 0.15;
    pointer-events: none;
}

.contact-left .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.contact-left .contact-image {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
    max-height: 300px;
}

.contact-left .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-right {
    background: var(--dark-2);
    color: var(--white);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right iframe {
    width: 100% !important;
    min-height: 974px;
    border: none;
    display: block;
}

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

.form-group {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px 16px 20px 44px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
}

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

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group .form-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--gray-mid);
    stroke-width: 1.5;
    fill: none;
}

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

.form-row .form-group:first-child {
    border-right: 1px solid #e0e0e0;
}

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

.submit-btn {
    margin-top: 30px;
    padding: 18px 40px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--dark-3);
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 80px 60px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images-1/Metallic 2.jpg') center/cover;
    opacity: 0.04;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
    filter: invert(1) brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: invert(1) brightness(1.5) drop-shadow(0 0 16px rgba(255, 255, 255, 0.45));
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-lighter);
    margin-bottom: 10px;
    font-weight: 400;
}

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

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-lighter);
    font-size: 0.9rem;
}

.footer-col .contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-light);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    border-color: var(--white);
}

.footer-social a:hover svg {
    stroke: var(--black);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-lighter);
    stroke-width: 1.5;
    fill: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--gray-mid);
}

.footer-bottom a {
    color: var(--gray-light);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 60px;
    background: var(--dark-2);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-lighter);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature .feat-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    stroke-width: 1.5;
    fill: none;
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 600;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 20px;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== SERVICES ALTERNATING ===== */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even)>* {
    direction: ltr;
}

.service-block .service-image {
    position: relative;
    overflow: hidden;
}

.service-block .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.03);
}

.service-block .service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
    background: var(--dark-2);
}

.service-block:nth-child(even) .service-info {
    background: var(--dark-3);
}

.service-block .service-info .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.service-block .service-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-block .service-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-lighter);
    margin-bottom: 24px;
}

/* ===== FULL GALLERY PAGE ===== */
.gallery-page-grid {
    padding: 80px 60px 120px;
    background: var(--dark-1);
}

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    aspect-ratio: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 80px 60px 120px;
    background: var(--dark-1);
}

.contact-page-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-side h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-side p {
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-details .detail-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details .detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    stroke-width: 1.5;
    fill: none;
}

.contact-details .detail-text h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.contact-details .detail-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--white);
}

.contact-details .detail-text a {
    color: var(--white);
}

.contact-details .detail-text a:hover {
    opacity: 0.8;
}

.contact-form-full {
    background: var(--dark-2);
    color: var(--white);
    padding: 0;
    border-radius: 4px;
    min-height: 800px;
}

.contact-form-full iframe {
    width: 100% !important;
    min-height: 974px;
    border: none;
    display: block;
}

.contact-form-full .form-group input,
.contact-form-full .form-group textarea,
.contact-form-full .form-group select {
    color: var(--black);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    stroke-width: 2.5;
    fill: none;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.mobile-nav a:hover {
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 30px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta.desktop-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .split-section,
    .service-block {
        grid-template-columns: 1fr;
    }

    .split-section.reverse,
    .service-block:nth-child(even) {
        direction: ltr;
    }

    .split-image {
        min-height: 350px;
    }

    .split-image-badge {
        bottom: 20px;
        right: 20px;
        padding: 14px 18px;
    }

    .split-image-badge .badge-number {
        font-size: 1.8rem;
    }

    .split-image-badge .badge-text {
        font-size: 0.65rem;
    }

    .split-content,
    .service-block .service-info {
        padding: 50px 30px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .why-us-v2-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        aspect-ratio: 16/9;
    }

    .gallery-masonry {
        columns: 2;
    }

    .about-content,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-section,
    .why-us-v2,
    .reasons-section,
    .gallery-page-grid,
    .contact-page {
        padding: 60px 30px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 30px 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 130px 20px 60px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .gallery-masonry {
        columns: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group:first-child {
        border-right: none;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .contact-right {
        padding: 40px 20px;
    }

    .contact-form-full {
        padding: 30px 20px;
    }
}

/* ===== BEFORE / AFTER V2 — INTERACTIVE SLIDER ===== */
.ba-showcase-v2 {
    padding: 100px 60px;
    background: var(--dark-1);
}

.ba-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.ba-v2-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.ba-v2-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ba-v2-header h2 em {
    font-style: italic;
    color: var(--gray-lighter);
}

.ba-v2-header p {
    font-size: 0.95rem;
    color: var(--gray-light);
}

.ba-v2-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: ew-resize;
    user-select: none;
}

.ba-v2-before,
.ba-v2-after {
    position: absolute;
    inset: 0;
}

.ba-v2-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-v2-after {
    z-index: 1;
}

.ba-v2-before img,
.ba-v2-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-v2-tag {
    position: absolute;
    bottom: 24px;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
}

.before-tag {
    left: 24px;
    background: rgba(255, 50, 50, 0.85);
    color: var(--white);
}

.after-tag {
    right: 24px;
    background: rgba(34, 197, 94, 0.85);
    color: var(--white);
}

.ba-v2-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: handlePulse 2s ease infinite;
}

@keyframes handlePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
    }
}

.ba-v2-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.ba-stat .stat-num {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.ba-stat .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== GALLERY V2 — ARTISTIC BENTO GRID ===== */
.gallery-v2 {
    padding: 120px 60px;
    background: var(--dark-2);
}

.gallery-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-v2-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gray-light);
    margin-bottom: 12px;
    display: block;
}

.gallery-v2-left h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.funky-accent {
    color: var(--gray-mid);
    font-size: 0.6em;
    animation: spinStar 4s linear infinite;
    display: inline-block;
}

@keyframes spinStar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gallery-v2-right {
    max-width: 340px;
    text-align: right;
}

.gallery-v2-right p {
    font-size: 0.95rem;
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gallery-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
}

.gallery-v2-cta:hover {
    background: var(--white);
    color: var(--black);
}

.gallery-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto;
}

.gv2-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.gv2-item.gv2-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gv2-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gv2-item:hover img {
    transform: scale(1.06);
}

.gv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gv2-cat {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.gv2-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* ===== SCROLLING PHOTO STRIP ===== */
.photo-strip {
    overflow: hidden;
    background: var(--black);
    padding: 4px 0;
}

.photo-strip-track {
    display: flex;
    gap: 4px;
    animation: strip-scroll 40s linear infinite;
    width: max-content;
}

.photo-strip-track:hover {
    animation-play-state: paused;
}

.photo-strip-slide {
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.photo-strip-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-strip-slide:hover img {
    transform: scale(1.08);
}

@keyframes strip-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .ba-showcase-v2 {
        padding: 60px 30px;
    }

    .ba-v2-slider {
        aspect-ratio: 4/3;
    }

    .ba-v2-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .gallery-v2 {
        padding: 80px 30px;
    }

    .gallery-v2-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gallery-v2-right {
        text-align: left;
    }

    .gallery-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gv2-item.gv2-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .photo-strip-slide {
        width: 260px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .ba-v2-stats {
        gap: 20px;
    }

    .ba-stat .stat-num {
        font-size: 1.5rem;
    }

    .gallery-v2-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gv2-item.gv2-featured {
        grid-column: span 1;
    }

    .photo-strip-slide {
        width: 200px;
        height: 140px;
    }
}

/* ===== SCROLL ANIMATION CLASSES ===== */

/* Parallax image wrapper */
.parallax-wrap {
    overflow: hidden;
}

.parallax-img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Reveal text - slide up from below with clip */
.reveal-text {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.revealed {
    transform: translateY(0);
    opacity: 1;
}

/* Section headers with reveal-text need overflow hidden on parent */
.section-header {
    overflow: hidden;
}

.section-header .reveal-text:nth-child(2) {
    transition-delay: 0.15s;
}

/* Scroll-zoom elements — scale up from slightly smaller */
.scroll-zoom {
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-zoom.zoomed-in {
    transform: scale(1);
    opacity: 1;
}

/* Staggered hidden/visible for cards */
.stagger-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Split section clip reveal */
.split-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Split image reveal with clip-path */
.split-hidden .split-image,
.split-hidden .service-image {
    clip-path: inset(10% 10% 10% 10%);
    transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-visible .split-image,
.split-visible .service-image {
    clip-path: inset(0 0 0 0);
}

/* Split content text slide */
.split-hidden .split-content,
.split-hidden .service-info {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.split-visible .split-content,
.split-visible .service-info {
    opacity: 1;
    transform: translateX(0);
}