@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Extralight-BF642a31569349e.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Light-BF642a315696edf.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Semilight-BF642a315616ae1.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Regular-BF642a315662a17.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Semibold-BF642a3156c2d40.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Bold-BF642a3156ce54d.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Extrabold-BF642a3156b7f92.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Akhand';
    src: url('../font/Akhand-Black-BF642a3156b3c3d.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --bg-color: #0d0d0d;
    --text-white: #ffffff;
    --text-gray: #888888;
    --accent-red: #ff3300;
    --accent-red-hover: #cc2900;
    /* Vermilion */
    --font-sans: 'Akhand', sans-serif;
    --font-display: 'Akhand', sans-serif;
    --text-ff: 'Inter', sans-serif;
}

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

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Global Heading Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

h4 {
    font-size: clamp(1.4rem, 2.4vw, 2.4rem);
}

h5 {
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
}

h6 {
    font-size: clamp(0.95rem, 1.3vw, 1.35rem);
}

.main-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Lenis recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

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

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

/* Navbar */
header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
}

.navbar {
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Default Transparent State */
    border-radius: 16px;
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Add pseudo-element for the glass effect to avoid backdrop-filter bug */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}

/* Scrolled State: High-End Glassmorphism */
header.scrolled {
    position: fixed;
}

.navbar.scrolled {
    padding: 1rem;
}

.navbar.scrolled::before {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    /* Tricks the red logo cleanly to #ffffff pure white */
    /* filter: brightness(0) invert(1); */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
}

/* Liquid hover effect on links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active,
.nav-links a.active::after {
    color: var(--accent-red);
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active::after {
    background-color: var(--accent-red);
}

.cta-btn {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

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

/* Hamburger Menu Toggle */
.hamburger {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Prevent progress line from causing horizontal scroll */
}

.hero-text {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.massive-text {
    font-family: var(--font-display);
    font-size: clamp(10rem, 18vw, 18rem);
    line-height: 0.70;
    text-transform: uppercase;
    margin: 0;
}

.massive-text .highlight {
    color: var(--accent-red);
}

/* Hover Interactivity for Hero Text */
.massive-text .reveal-text {
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.massive-text:has([data-word="white"]:hover) [data-word="white"] {
    color: var(--text-white);
}

.massive-text:has([data-word="white"]:hover) [data-word="space"] {
    color: var(--accent-red);
}

.massive-text:has([data-word="space"]:hover) [data-word="white"] {
    color: var(--accent-red);
}

.massive-text:has([data-word="space"]:hover) [data-word="space"] {
    color: var(--text-white);
}

.line {
    overflow: hidden;
    padding-bottom: 0.4em;
    /* Expanded to ensure large fonts are never cut off */
    margin-bottom: -0.4em;
    padding-top: 0.1em;
    margin-top: -0.1em;
}

.reveal-text {
    display: block;
    transform: translateY(180%);
}

.hero-subtitle {
    margin-bottom: 0;
    /* Tweaked to ensure larger font stays flush with the bottom line */
    transform: translateY(-2rem);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    /* Made significantly larger */
    font-weight: 200;
    line-height: 3rem;
    /* Explicitly ultra-thin weight */
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Added slight extra tracking to balance the ultra-thin weight */
    cursor: default;
}

/* Subtitle Line Tracker styles */
.designs-container {
    position: relative;
    display: inline-block;
}

.designs-container p {
    margin: 0;
}

.hero-line-track {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    /* Will be set dynamically in script.js to end at main edge */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent-red);
    /* Faster transition to compliment GSAP scrub lag, while keeping hover elegant */
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-subtitle:hover .hero-line-fill {
    width: 100% !important;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
}

.stat-item h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Masonry Portfolio */
.portfolio-section {
    padding: 0 0 6.25rem 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-white);
}

.filter-btn.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.portfolio-grid {
    column-count: 4;
    column-gap: 1.5rem;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Caption Section */
.caption-section {
    padding: 6.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.caption-typography {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.caption-line {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.caption-reveal {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.caption-reveal.gray,
.caption-reveal .gray {
    color: #4a4a4a;
}

.caption-reveal.highlight,
.caption-reveal .highlight {
    color: var(--accent-red);
}

.caption-reveal .white {
    color: var(--text-white);
}

.caption-reveal.small {
    font-size: 50%;
}

.caption-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    max-width: 660px;
    margin-left: auto;
    opacity: 0;
}

.caption-bottom p {
    color: var(--text-white);
    font-size: 1rem;
    text-align: right;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    margin-bottom: 6.25rem;
}

.services-section h2 {
    margin-bottom: 2rem;
}

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

/* --- Card base --- */
.service-card {
    position: relative;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    min-height: 350px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

/* --- Blurred gradient hover layer --- */
.service-card::before {
    content: '';
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(ellipse at top left,
            rgba(255, 51, 0, 0.4) 0%,
            rgba(255, 51, 0, 0.15) 30%,
            transparent 50%),
        radial-gradient(ellipse at bottom right,
            rgba(13, 13, 13, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            transparent 50%);
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 51, 0, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* --- Content sits above the gradient layer --- */
.service-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: calc(350px - 4rem);
    /* card min-height minus vertical padding (2rem + 2rem) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Bottom content group */
.service-card-inner .service-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Card Icon */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--accent-red);
    margin-bottom: 2rem;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-red);
}

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

/* Card heading */
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 1rem;
}

/* Card body text */
.service-card p {
    margin: 0;
    color: var(--text-white);
    font-family: var(--text-ff);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 3.125rem;
    overflow: hidden;
    margin-bottom: 6.25rem;
}

.testimonial-header h3 {
    margin-bottom: 2rem;
}

.testimonials {
    flex: 1.2;
    max-width: 60%;
    text-align: center;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(20px);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-quote {
    font-family: var(--text-ff);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-white);
    margin: 0 0 2.5rem;
    position: relative;
    text-align: center;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

.client-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.client-role {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

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

.dot.active {
    background: var(--accent-red);
    transform: scale(1.5);
}

/* Right Side Image */
.testimonial-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    aspect-ratio: 4/5;
}

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

.testimonial-image-wrapper:hover .testimonial-img {
    filter: grayscale(0.3);
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
    opacity: 0.5;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 5rem 0;
    margin-top: 6.25rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-red);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-family: var(--text-ff);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-family: var(--text-ff);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-family: var(--text-ff);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-communications h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-communications p {
    margin-bottom: 0.75rem;
}

.footer-communications a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-family: var(--text-ff);
    transition: color 0.3s ease;
}

.footer-communications a:hover {
    color: var(--accent-red);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a i {
    color: var(--text-gray);
}

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

.footer-social a:hover {
    color: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--text-ff);
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* -------------------------------------------
INNER STYLES
------------------------------------------- */
.inner-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.inner-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.inner-massive-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(128, 128, 128, 0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

/* -------------------------------------------
WORKS PAGE STYLES
------------------------------------------- */
.branding-content {
    overflow: hidden;
}

.branding-intro {
    max-width: 800px;
    margin-bottom: 4rem;
}

.branding-caption {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.branding-caption .highlight {
    color: var(--accent-red);
}

.branding-description {
    font-family: var(--text-ff);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.75;
    color: var(--text-gray);
    max-width: 650px;
}

.branding-services {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.branding-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.branding-service.service-left {
    padding-right: 5vw;
}

.branding-service.service-right {
    padding-left: 5vw;
    direction: rtl;
}

.branding-service.service-right > * {
    direction: ltr;
}

.branding-service-image {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 8px;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.branding-service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.branding-service-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 45%, transparent 50%);
    transform: rotate(45deg);
    z-index: 3;
    pointer-events: none;
}

.image-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 45%, transparent 60%);
    transform: translateX(-100%);
    z-index: 4;
    pointer-events: none;
    transition: transform 0.8s ease;
}

.branding-service:hover .image-shine {
    transform: translateX(100%);
}

.branding-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.branding-service.service-left .branding-service-image {
    transform: perspective(1200px) rotateY(5deg);
}

.branding-service.service-right .branding-service-image {
    transform: perspective(1200px) rotateY(-5deg);
}

.branding-service.service-left:hover .branding-service-image {
    transform: perspective(1200px) rotateY(0deg) translateX(-10px);
}

.branding-service.service-right:hover .branding-service-image {
    transform: perspective(1200px) rotateY(0deg) translateX(10px);
}

.branding-service-content {
    position: relative;
    padding: 2rem;
}

.service-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: -2rem;
    left: 0;
    line-height: 1;
    z-index: 0;
}

.branding-service-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.branding-service-content h3 .highlight {
    color: var(--accent-red);
}

.service-tagline {
    font-family: var(--text-ff);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-detail {
    font-family: var(--text-ff);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 51, 0, 0.4);
}

.inner-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--text-white);
}
.inner-massive-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(128, 128, 128, 0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

/* -------------------------------------------
WORKS PAGE STYLES
------------------------------------------- */
.works-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.works-hero .massive-text {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    margin: 0;
    transform: translateY(100%);
}

.works-hero .massive-text {
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    width: 100%;
}

.works-title-reveal {
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.works-title-reveal .massive-text {
    transform: translateY(100%);
    transition: transform 0s;
}

/* Inner Portfolio Section Styles */
.masonry-grid {
    column-count: 4;
    column-gap: 1.25rem;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.masonry-item:hover .overlay {
    transform: translateY(0);
}

.masonry-item .overlay h3 {
    font-family: 'Akhand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.masonry-item .overlay p {
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.8;
    text-transform: uppercase;
}

/* -------------------------------------------
ABOUT US PAGE STYLES
------------------------------------------- */
/* .about-section {
    padding: 6rem 4rem;
} */

.about-hero {
    max-width: 900px;
    margin-bottom: 5rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-title .highlight {
    color: var(--accent-red);
}

.about-intro-text {
    font-family: var(--text-ff);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-gray);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s ease;
}

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

.story-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-family: var(--text-ff);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.about-differentiator {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 6rem;
}

.diff-content {
    flex: 1;
}

.diff-content h3 {
    display: none;
}

.diff-content p {
    font-family: var(--text-ff);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
}

.diff-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-stat:first-of-type {
    border-left: none;
    padding-left: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-family: var(--text-ff);
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.vm-card {
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.5s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-vision {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 51, 0, 0.2);
}

.vm-mission {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.vm-card p {
    font-family: var(--text-ff);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 51, 0, 0.05);
    border-radius: 16px;
}

.about-cta p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-white);
    text-transform: uppercase;
}

/* -------------------------------------------
ABOUT US FAQ SECTION
------------------------------------------- */
.about-faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-white);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question .question-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.faq-icon {
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .question-text {
    color: var(--accent-red);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    font-family: var(--text-ff);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    padding: 1rem 0 1.5rem 1rem;
    border-left: 2px solid rgba(255, 51, 0, 0.3);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.masonry-item.tall img {
    height: 500px;
    object-fit: cover;
}

.masonry-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* -------------------------------------------
CONTACT PAGE STYLES
------------------------------------------- */
.contact-intro {
    max-width: 700px;
    margin-bottom: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-title .highlight {
    color: var(--accent-red);
}

.contact-subtitle {
    font-family: var(--text-ff);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 51, 0, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 0, 0.1);
    border-radius: 10px;
    color: var(--accent-red);
    font-size: 1.2rem;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    font-family: var(--text-ff);
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.contact-details a:hover {
    color: var(--accent-red);
}

.contact-form-wrapper {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-white);
    font-family: var(--text-ff);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-red);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.g-recaptcha {
    margin-bottom: 1.5rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.contact-map {
    margin-top: 2rem;
}

.contact-map h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    display: block;
}

/* -------------------------------------------
WORK DETAIL PAGE STYLES
------------------------------------------- */
.work-detail-hero-full {
    position: relative;
    width: 100%;
    height: 95vh;
    padding-top: 140px;
    padding-bottom: 1rem;
    overflow: hidden;
}

.work-detail-hero-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(30%);
    transition: filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-detail-hero-full:hover img {
    filter: grayscale(0%);
}

.work-detail-hero-full .image-overlay-gradient {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slider-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(30%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider:hover .hero-slide {
    filter: grayscale(0%);
}

/* Thumbnails - Bottom Right */
.hero-thumbnails {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
    max-width: calc(100% - 40px);
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: none;
}

.hero-thumbnails::-webkit-scrollbar {
    display: none;
}

.hero-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-thumb.active {
    border-color: #e63946;
    opacity: 1;
}

.hero-thumb:hover {
    opacity: 1;
    border-color: rgba(230, 57, 70, 0.5);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-detail-section {
    padding: 4rem 0 6.25rem;
}


.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.1) 0%, transparent 30%, transparent 70%, rgba(13, 13, 13, 0.3) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.work-detail-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.work-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

.section-label {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.overview-text {
    font-family: var(--text-ff);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.overview-text:last-child {
    margin-bottom: 0;
}

.live-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent-red);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.live-project-link:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.live-project-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* .live-project-link:hover i {
    transform: translate(2px, -2px);
} */

.detail-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.detail-card:hover {
    border-color: rgba(255, 51, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.detail-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 51, 0, 0.08);
    border: 1px solid rgba(255, 51, 0, 0.25);
    border-radius: 50px;
    font-family: var(--text-ff);
    font-size: 0.85rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: rgba(255, 51, 0, 0.2);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.meta-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.meta-value {
    font-family: var(--text-ff);
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.4;
}

.work-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4rem;
}

.back-to-works,
.next-project {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-to-works:hover,
.next-project:hover {
    color: var(--text-white);
    border-color: var(--accent-red);
    background: rgba(255, 51, 0, 0.08);
    transform: translateY(-3px);
}

.back-to-works i,
.next-project i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.back-to-works:hover i {
    transform: translateX(-4px);
}

.next-project:hover i {
    transform: translateX(4px);
}