* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0a0a0a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

body.desktop {
    cursor: none;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: #0a0a0a;
    color: #ffffff;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease;
    display: none;
}

body.desktop .cursor,
body.desktop .cursor-follower {
    display: block;
}

.cursor-follower.expand {
    width: 60px;
    height: 60px;
}

/* ==================== LOADER ==================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ==================== PRELOADING SHIMMER ==================== */
.shimmer-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.shimmer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    100% {
        left: 200%;
    }
}

.loading-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.loading-image.loaded {
    opacity: 1;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    gap: 60px;
    list-style: none;
}

.nav-menu a {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 2001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* ==================== MINIMALIST FULLSCREEN MENU - FIXED ==================== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.menu-overlay-1,
.menu-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    transform: translateY(-100%);
}

.menu-overlay-2 {
    background: #ffffff;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 80px;
    font-size: 48px;
    color: #0a0a0a;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2002;
    opacity: 0;
    line-height: 1;
    padding: 0;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2001;
}

.menu-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    border-right: 1px solid rgba(10, 10, 10, 0.1);
}

.menu-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-content a {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    padding: 10px 0;
}

.menu-content a:hover::after {
    width: 60px;
}

.menu-content a:hover {
    padding-left: 20px;
}

.menu-contact {
    opacity: 0;
    transform: translateY(30px);
}

.menu-contact h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(10, 10, 10, 0.5);
}

.menu-contact-item {
    margin-bottom: 25px;
}

.menu-contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(10, 10, 10, 0.4);
    margin-bottom: 8px;
}

.menu-contact-value {
    font-size: 16px;
    color: #0a0a0a;
    font-weight: 300;
}

.menu-contact-value a {
    text-decoration: none;
    color: #0a0a0a;
}

.menu-social {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.menu-social a {
    font-size: 16px;
    color: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease;
}

.menu-social a:hover {
    color: #0a0a0a;
    transform: translateY(-3px);
}

.menu-footer {
    opacity: 0;
    transform: translateY(20px);
}

.menu-footer p {
    font-size: 11px;
    color: rgba(10, 10, 10, 0.4);
    letter-spacing: 1px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 10;
    position: relative;
}

.hero-title {
    mix-blend-mode: difference;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 400;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100px);
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    animation: scrollPulse 2s ease infinite;
    z-index: 10;
    opacity: 0;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    position: relative;
    background: #fafafa;
}

.services-wrapper {
    height: 200vh;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.services-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.services-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.services-header {
    position: relative;
    top: auto;
    left: auto;
    z-index: 10;
    pointer-events: none;
    padding-left: 80px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    color: #0a0a0a;
    opacity: 0;
    transform: translateX(-50px);
}

.services-track {
    display: flex;
    gap: 40px;
    padding-left: 80px;
    padding-right: 100px;
    will-change: transform;
    flex-shrink: 0;
}

.service-card {
    min-width: 680px;
    width: 680px;
    height: 600px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.9);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.service-number {
    font-size: 140px;
    font-weight: 300;
    opacity: 0.05;
    position: absolute;
    top: -20px;
    right: 30px;
    line-height: 1;
    pointer-events: none;
}

.service-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0a0a0a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 20px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 2px;
    color: #0a0a0a;
    text-transform: uppercase;
    opacity: 0.8;
    animation: scrollHint 2s ease infinite;
}

@keyframes scrollHint {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 80px;
    background: #ffffff;
}

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

.stats-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.stats-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #000000 !important;
    opacity: 0;
    transform: translateY(50px);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}

.stat-number {
    font-size: 72px;
    font-weight: 300;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b6b6b;
}

/* ==================== APPROACH SECTION ==================== */
.approach-section {
    min-height: 100vh;
    padding: 120px 80px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.approach-header {
    text-align: center;
    margin-bottom: 120px;
}

.approach-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #ffffff !important;
    opacity: 0;
    transform: translateY(50px);
}

.approach-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}

.approach-step {
    position: relative;
    padding-top: 60px;
    opacity: 0;
    transform: translateY(50px);
}

.approach-number {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.approach-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important;
}

.approach-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8;
}

.approach-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.approach-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

/* ==================== GALLERY SECTION - FROM YOUR CODE ==================== */
.gallery-wrapper {
    position: relative;
}

.gallery-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    background: #fafafa;
}

.gallery-left {
    width: 40%;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.gallery-left-content {
    color: #0a0a0a;
}

.gallery-left-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-50px);
}

.gallery-left-content p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
}

.gallery-cta {
    display: inline-block;
    padding: 20px 50px;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.gallery-cta:hover {
    background: #2d2d2d;
    transform: translateY(-3px);
}

.gallery-right {
    width: 60%;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.gallery-scroll-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: rgba(10, 10, 10, 0.1);
    z-index: 10;
}

.gallery-scrollbar-thumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    background: #0a0a0a;
    border-radius: 4px;
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
}

.testimonial-container {
    max-width: 1000px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.3;
    color: #0a0a0a;
    margin-bottom: 60px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.testimonial-name {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 13px;
    color: #6b6b6b;
    letter-spacing: 1px;
}

/* ==================== GOOGLE REVIEWS SECTION ==================== */
.reviews-section {
    background: #0a0a0a;
    padding: 120px 80px;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(50px);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-score {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -1px;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars i {
    color: #f4b400;
    font-size: 18px;
}

.reviews-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-google-badge i {
    font-size: 16px;
    color: #4285f4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 25px;
}

.review-stars i {
    color: #f4b400;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-style: normal;
    max-height: 6rem;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.review-text.expanded {
    max-height: 2000px;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
}

.read-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #c9a96e;
    /* match your gold accent */
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 0;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease, gap 0.3s ease;
}

.read-more-btn::after {
    content: '↓';
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn.expanded::after {
    transform: rotate(180deg);
}

.read-more-btn:hover {
    opacity: 0.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-name {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 3px;
}

.review-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

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

.reviews-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.reviews-cta-link:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.reviews-cta-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.reviews-cta-link:hover i {
    transform: translateX(5px);
}

.reviews-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 40px;
}

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

.reviews-dot.active {
    background: #f4b400;
    width: 24px;
    border-radius: 4px;
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
    min-height: 100vh;
    background: #fafafa;
    display: flex;
    align-items: center;
    padding: 120px 80px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
}

.contact-left p {
    font-size: 18px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-detail-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b6b6b;
}

.contact-detail-value {
    font-size: 16px;
    color: #0a0a0a;
}

.contact-detail-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}


.form-group {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 25px 0 15px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    font-size: 18px;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: #0a0a0a;
}

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

.form-error {
    display: none;
    font-size: 11px;
    color: #ff0000;
    margin-top: 10px;
    letter-spacing: 1px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-bottom-color: #ff0000;
}

.form-group.error .form-error {
    display: block;
}

.submit-btn {
    width: 100%;
    height: 70px;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #2d2d2d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.submit-btn:hover::before {
    width: 300%;
    height: 300%;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    font-size: 16px;
    color: #0a0a0a;
    margin-top: 30px;
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: #0a0a0a;
    padding: 100px 80px 60px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.footer-brand h3 {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 300px;
}

.footer-columns {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }

    .services-header {
        padding-left: 60px;
        margin-bottom: 25px;
    }

    .services-header h2 {
        font-size: 48px;
    }

    .services-track {
        padding-left: 60px;
        gap: 30px;
    }

    .service-card {
        min-width: 380px;
        width: 380px;
        height: 550px;
    }

    .service-image {
        height: 280px;
    }

    .service-content {
        padding: 40px;
    }

    .scroll-indicator {
        display: block;
    }

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

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .gallery-wrapper {
        position: relative;
        height: auto !important;
    }

    .gallery-section {
        position: relative;
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 80px 0;
        background: #ffffff;
    }

    .gallery-left,
    .gallery-right {
        width: 100%;
    }

    .gallery-left {
        padding: 0 60px 60px;
    }

    .gallery-right {
        height: auto;
        max-height: none;
        overflow: visible;
        position: relative;
        padding: 0 60px 60px;
    }

    .gallery-scroll-container {
        position: relative;
        width: 100%;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }

    .gallery-image {
        position: relative;
        overflow: hidden;
        background: #fafafa;
        width: 100%;
    }

    .gallery-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        filter: grayscale(10%);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .gallery-image:hover img {
        filter: grayscale(0%);
        transform: scale(1.02);
    }

    .gallery-scrollbar {
        display: none;
    }

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

    .menu-content a {
        font-size: 40px;
    }

    .menu-close {
        top: 30px;
        right: 60px;
        font-size: 40px;
    }

    .menu-left,
    .menu-right {
        padding: 60px;
    }

    .reviews-section {
        padding: 100px 60px;
    }

    .reviews-header h2 {
        font-size: 48px;
    }

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

    .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 30px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-content-wrapper {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        padding: 40px 30px;
        border-right: none;
    }

    .menu-left {
        border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    }

    .menu-content a {
        font-size: 32px;
    }

    .menu-close {
        top: 30px;
        right: 30px;
        font-size: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .stats-section,
    .approach-section,
    .testimonial-section,
    .contact-section {
        padding: 80px 30px;
    }

    .services-section {
        overflow: visible;
    }

    .services-header {
        padding-left: 30px;
        margin-bottom: 20px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .services-track {
        padding-left: 30px;
        padding-right: 30px;
        gap: 20px;
    }

    .service-card {
        min-width: 85vw;
        width: 85vw;
        height: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description {
        font-size: 13px;
    }

    .scroll-indicator {
        display: block;
        bottom: 10px;
        font-size: 9px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .approach-header h2,
    .contact-left h2,
    .gallery-left-content h2 {
        font-size: 36px;
    }

    .approach-header p,
    .contact-left p,
    .gallery-left-content p {
        font-size: 15px;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonial-quote {
        font-size: 26px;
    }

    .gallery-section {
        padding: 60px 0;
        background: #ffffff;
    }

    .gallery-left {
        padding: 0 30px 50px;
    }

    .gallery-right {
        padding: 0 30px 40px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .gallery-image {
        width: 100%;
        background: #fafafa;
    }

    .gallery-image img {
        filter: grayscale(5%);
    }

    .footer {
        padding: 80px 30px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 60px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 50px;
    }

    .reviews-section {
        padding: 80px 30px;
    }

    .reviews-header h2 {
        font-size: 36px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-rating {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .reviews-score {
        font-size: 36px;
    }

    .reviews-count {
        width: 100%;
        text-align: center;
    }

    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0;
        padding-bottom: 10px;
        scrollbar-width: none;
        margin: 0 -30px;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: calc(100vw - 60px);
        width: calc(100vw - 60px);
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 15px;
        padding: 30px 25px;
        opacity: 1 !important;
        transform: none !important;
    }

    .review-card:first-child {
        margin-left: 30px;
    }

    .review-card:last-child {
        margin-right: 30px;
        max-width: none;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .reviews-dots {
        display: flex;
    }

    .reviews-cta-link {
        padding: 16px 40px;
        font-size: 10px;
    }
}

/* credits */
.footer-credit {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ffffff;
}

.dev-name {
    display: inline-block;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 1) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            rgba(255, 255, 255, 0.3) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nameShimmer 4s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

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

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