/* 
    NineClick Design System
    -----------------------
    Theme: Dark Luxury Cinematic
*/

:root {
    /* Colors */
    --bg-primary: #03151E;
    --bg-secondary: #051F2B;
    --bg-card: #072939;
    --accent-primary: #16AC80;
    --accent-secondary: #46BF5C;
    --accent-tertiary: #9CD445;
    --text-white: #FFFFFF;
    --text-gray-light: #B3B3B3;
    --text-gray-muted: #808080;

    /* Glassmorphism */
    --glass-bg: rgba(3, 21, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: 15px;

    /* Spacing & Sizing */
    --header-height: 80px;
    --container-max: 1280px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Mouse Follow Gradient */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 100px;
    }
}

/* Cinematic Grain */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Custom Cursor Styles */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-radius 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-dot::after {
    content: "\f245";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0px;
    color: white;
    transition: font-size 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(22, 172, 128, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Cursor Hover States */
.cursor-active .cursor-dot {
    width: 25px;
    height: 25px;
}

.cursor-active .cursor-dot::after {
    font-size: 12px;
}

.cursor-active .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(22, 172, 128, 0.1);
    border-color: var(--accent-primary);
}

.cursor-bubble {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    animation: bubbleRise 1.5s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(22, 172, 128, 0.4);
}

.cursor-bubble::after {
    content: "\f004";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@keyframes bubbleRise {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -150%) scale(1.5);
        opacity: 0;
    }
}

@media (pointer: fine) {

    body,
    html,
    * {
        cursor: none !important;
    }
}


h1,
h2,
h3,
h4,
.logo__text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header--scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    height: fit-content;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
}

/* Logo */
.logo__img {
    height: 65px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo__link:hover .logo__img {
    transform: scale(1.05);
}

.logo__text {
    font-size: 24px;
    letter-spacing: -1px;
    color: var(--text-white);
}

.logo__text span {
    color: var(--accent-primary);
}

/* Navigation */
.nav {
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

.nav__list {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
}

.nav__link {
    font-size: 15.2px;
    font-weight: 500;
    color: var(--text-gray-light);
    letter-spacing: 0.5px;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent-tertiary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-smooth);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Actions & Buttons */
.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 29px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    text-align: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.btn--outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 172, 128, 0.1);
}

.btn--primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    background-size: 200% 200%;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.6px;
    padding: 12.8px 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12.8px;
    font-weight: 700;
    animation: liquidGradient 2s ease infinite;
    transition: var(--transition-smooth);
    z-index: 1;
    border: 0px solid transparent !important;
}

/* Gradient Border Mask */
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn--primary:hover::before {
    opacity: 1;
}

@keyframes liquidGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
    background: transparent !important;
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.btn--primary:hover .btn__icon {
    transform: translateX(5px);
    color: var(--accent-primary);
}

/* Glass Shine */
.btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.btn--primary:hover::after {
    opacity: 1;
}



.btn--full {
    width: 100%;
}

/* Nav Toggle (Hamburger) - Hidden as we use Bottom Nav now */
.nav-toggle {
    display: none !important;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

/* Sidebar (Mobile Menu) - Hidden */
.sidebar {
    display: none !important;
}

/* Mobile Bottom Navigation Redesign */
.mobile-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 450px;
    z-index: 2000;
    display: block;
    padding: 0;
    pointer-events: none;
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-nav__container {
    position: relative;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: auto;
}

.mobile-nav__container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 31, 43, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    /* The smooth dip effect matching active index */
    -webkit-mask-image: radial-gradient(circle at var(--active-x, 10%) 0, transparent 36px, black 37px);
    mask-image: radial-gradient(circle at var(--active-x, 10%) 0, transparent 36px, black 37px);
    z-index: -1;
}

.mobile-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 1;
    padding-top: 5px;
}

.mobile-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav__icon i {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

.mobile-nav__link span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.mobile-nav__link.active {
    color: var(--accent-primary);
}

.mobile-nav__link.active .mobile-nav__icon {
    position: absolute;
    top: -28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid rgba(5, 31, 43, 0.5);
    box-shadow: 0 0 30px rgba(22, 172, 128, 0.4);
    z-index: 2;
    transform: none;
    overflow: hidden;
}

.mobile-nav__link.active .mobile-nav__icon::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
}

.mobile-nav__link.active .mobile-nav__icon i {
    width: 26px;
    height: 26px;
    stroke-width: 3px;
    z-index: 2;
}

.mobile-nav__link.active span {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.mobile-nav__placeholder {
    flex: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .logo__img {
        height: 50px;
    }

    .header__container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .btn--liquid {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 0px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(22, 172, 128, 0.15), transparent 40%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

/* Background Glows */
.hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: glowFloat 10s ease-infinite alternate;
}

.hero__glow--1 {
    top: 10%;
    left: -5%;
    background: var(--accent-primary);
}

.hero__glow--2 {
    bottom: 10%;
    right: -5%;
    background: var(--accent-tertiary);
    animation-delay: -5s;
}

@keyframes glowFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 30px) scale(1.2);
    }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero__container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
}

.hero__badge {
    display: inline-block;
    padding: 8px 19.2px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 12.8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(5px);
}

.hero__title {
    font-size: clamp(35px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__title span {
    display: block;
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
}

.hero__description {
    font-size: 17.6px;
    color: var(--text-gray-light);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* Hero Visual */
/* Hero Visual (Interactive Bento 3D) */
.bento-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 19.2px;
    perspective: 1500px;
    transform: rotateY(-20deg) rotateX(15deg);
    animation: bentoFloat 8s ease-in-out infinite;
}

@keyframes bentoFloat {

    0%,
    100% {
        transform: rotateY(-20deg) rotateX(15deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(20deg) translateY(-20px);
    }
}

.bento-item {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12.8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.bento-item:hover .bento-img {
    transform: scale(1.1);
    opacity: 0.6;
}

.bento-item>*:not(.bento-img) {
    position: relative;
    z-index: 2;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-primary);
    transform: translateZ(30px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-item i {
    font-size: 32px;
    color: var(--accent-primary);
}

.bento-item span {
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific Items Grid Positions */
.item-video {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
    background: linear-gradient(135deg, rgba(22, 172, 128, 0.1), transparent);
}

.item-social {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.item-strategy {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.item-results {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
    border-color: rgba(156, 212, 69, 0.3);
}

/* Results Card Styling */
.item-results .count {
    font-size: 44.8px;
    font-weight: 900;
    color: var(--accent-tertiary);
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.item-results small {
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Specific Image Opacity for Results to improve text visibility */
.item-results .bento-img {
    opacity: 0.3;
}

.item-results:hover .bento-img {
    opacity: 0.5;
}

/* Social Tags */
.social-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 16px;
    right: 16px;
}

.tag {
    font-size: 9.6px;
    padding: 3.2px 9.6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
}

/* Bento Background Glow */
.bento-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.2), transparent 70%);
    z-index: -1;
    filter: blur(40px);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.4;
        transform: scale(0.8);
    }

    to {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.glass-sphere {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.5), 10px 10px 20px rgba(22, 172, 128, 0.2);
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray-muted);
    font-size: 12.8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-gray-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-tertiary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive Font Sizes */


/* Extra Floating Reel */
.floating-reel {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 140px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 50;
    transform: rotate(-10deg);
    animation: reelFloat 6s ease-in-out infinite;
}

.floating-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes reelFloat {

    0%,
    100% {
        transform: rotate(-10deg) translateY(0);
    }

    50% {
        transform: rotate(-12deg) translateY(-20px);
    }
}



/* Clients / Trusted By Section */
.clients {
    padding: 80px 0;
    background: var(--bg-primary);
    /* Deepest dark */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clients__title {
    text-align: center;
    font-size: 14.4px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 32px;
    opacity: 0.8;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 30px 0 0;

    /* Space for hover expansion */
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.client-card {
    min-width: 180px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: var(--transition-smooth);
    filter: grayscale(1) brightness(2);
    opacity: 0.5;
}

.client-card:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    border-color: var(--accent-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.client-logo {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: invert(1);
    /* Makes black logos white */
    transition: filter 0.3s ease;
}

.client-card:hover .client-logo {
    filter: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 24px));
    }
}



/* About Preview Section */
.about {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about__img-wrapper:hover .about__img {
    transform: scale(1.05);
}

.about__glow {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 19.2px;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.about__text {
    font-size: 17.6px;
    color: var(--text-gray-light);
    line-height: 25px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.stat-plus {
    font-size: 32px;
    color: var(--accent-primary);
    font-weight: 700;
}

.stat-label {
    font-size: 14.4px;
    color: var(--text-gray-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -3px;
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-subtitle {
    color: var(--text-gray-muted);
    font-size: 17.6px;
    margin-top: 10px;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

/* Glow Border Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(22, 172, 128, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card__icon {
    background: var(--accent-primary);
    color: white;
}

.service-card__icon i {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.service-card__text {
    font-size: 15.2px;
    color: var(--text-gray-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 14.4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.service-card__btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__btn i {
    transform: translateX(5px);
}



/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.portfolio__filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* Start from left to allow scrolling */
    gap: 12px;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.portfolio__filters::-webkit-scrollbar {
    display: none;
}


.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-gray-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border-color: transparent;
    color: white;
}

/* Horizontal Slider */
.portfolio__slider-container {
    position: relative;
    width: 100%;
}

.portfolio__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px;
    /* Increased padding to allow scale and shadow */
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.portfolio__slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.portfolio-item {
    flex: 0 0 calc((100% - 72px) / 4);
    /* Shows exactly 4 cards with 24px gap */
    /* Space for scaling */
    transition: var(--transition-smooth);
}

.portfolio-item.hidden {
    display: none;
}

/* Netflix Style Card */
.portfolio-card {
    background: linear-gradient(to top, #051F2B, transparent);
    ;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    height: 100%;
}

.portfolio-card:hover {
    transform: scale(1.03);
    border-color: var(--accent-primary);
}

.portfolio-card__media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-card:hover .portfolio-card__img {
    transform: scale(1.1);
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}



.portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
}

.play-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.play-icon svg {
    width: 16px;
    height: 16px;
}

.portfolio-card:hover .play-icon {
    transform: scale(1);
    box-shadow: 0 0 30px var(--accent-primary);
}

.portfolio-card__info {
    padding: 18px;
}

.portfolio-card__category {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    font-weight: 800;
    display: inline-block;
    padding: 2px 10px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    border-radius: 50px;
    margin-bottom: 10px;
}

.portfolio-card__title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.portfolio-card__client {
    font-size: 14px;
    color: var(--text-gray-muted);
    margin-bottom: 0;
}

/* Slider Nav Buttons */
.portfolio__nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border: 1px solid var(--accent-primary);
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal__container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.video-modal.active .video-modal__container {
    transform: scale(1);
}

.video-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-modal__close:hover {
    background: #ff4d4d;
    transform: rotate(90deg);
}

.video-modal__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--text-gray-muted);
}

.modal-play-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}



/* Process Section (How We Work) */
.process {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.timeline {
    position: relative;
    /* max-width: 900px; */
    margin: 60px auto 0;
    padding: 40px 0;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), var(--accent-secondary), transparent);
    box-shadow: 0 0 15px var(--accent-primary);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border: 4px solid #03151E;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 15px var(--accent-primary);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.timeline-content {
    width: 100%;
    max-width: 100%;
    padding: 30px;
    background: rgba(3, 21, 30, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(22, 172, 128, 0.2);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

/* Floating Background Blobs */
.process-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: blobFloat 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.1) 0%, transparent 70%);
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}



.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-content:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(22, 172, 128, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(22, 172, 128, 0.1);
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(22, 172, 128, 0.2), transparent);
    border-left: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-content h3 svg {
    color: var(--accent-primary);
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px var(--accent-primary));
}

.timeline-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}


/* Why Choose Us Section */
.features {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(22, 172, 128, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
}

.feature-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray-muted);
    line-height: 1.7;
    margin: 0;
}

/* Feature Card Hover */
.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(7, 41, 57, 0.5);
    border-color: var(--accent-primary);
}

.feature-card:hover .feature-icon {
    background: var(--accent-primary);
    color: white;
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.testimonials-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
    /* Clips the other cards */
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-card {
    min-width: fit-content;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 0px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 20px;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.testimonial-rating i {
    width: 18px;
    height: 18px;
    color: var(--text-gray-muted);
}

.testimonial-rating i.fill {
    color: #FFD700;
    fill: #FFD700;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--accent-primary);
}

/* Responsive Testimonials */

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    /* background: radial-gradient(circle, rgba(22, 172, 128, 0.03) 0%, transparent 70%); */
    pointer-events: none;
    z-index: 0;
}

/* Brand Marquee */
.brand-marquee {
    margin-top: 100px;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(90deg, transparent, rgba(22, 172, 128, 0.02), transparent);
}

.brand-marquee::before,
.brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-content {
    display: flex;
    gap: 80px;
    animation: scrollMarquee 30s linear infinite;
    width: max-content;
}

.brand-item {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.brand-item:hover {
    color: var(--accent-primary);
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.achievements::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 300px;
    pointer-events: none;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.achievement-item {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.achievement-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    background: rgba(22, 172, 128, 0.05);
}

.achievement-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0;
}

.achievement-number {
    font-size: 65px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, white 30%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-suffix {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-left: 2px;
}

.achievement-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray-muted);
    font-weight: 600;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    /* background: linear-gradient(-45deg, #03151E, #051F2B, #072939, #16AC8033); */
    /* background-size: 400% 400%; */
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.cta-text {
    font-size: 18px;
    color: var(--text-gray-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btns .btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btns .btn--outline {
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-btns .btn--outline:hover {
    border-color: var(--accent-primary);
    background: rgba(22, 172, 128, 0.1);
}

/* Responsive CTA */


/* Footer Section */
.footer {
    background: var(--bg-primary);
    padding: 100px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 10px;
    display: inline-block;
}

.footer-logo__img {
    height: 90px;
    width: auto;
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-description {
    color: var(--text-gray-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-gray-muted);
    font-size: 15px;
}

.footer-contact i {
    color: var(--accent-primary);
    width: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-gray-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    background-color: var(--bg-primary);
}

.about-hero__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    z-index: 1;
    overflow: hidden;
}

.about-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 30s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.2);
    }
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(3, 21, 30, 0.4) 0%,
            rgba(3, 21, 30, 0.85) 100%),
        linear-gradient(to bottom,
            rgba(3, 21, 30, 0.2) 0%,
            rgba(3, 21, 30, 0.95) 100%);
    z-index: 2;
}

/* Glassmorphism Badge for About */
.about-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(22, 172, 128, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 172, 128, 0.3);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.about-hero__container {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.about-hero__title {
    font-size: clamp(44px, 8vw, 80px);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0px;
}

.about-hero__description {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--text-gray-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Cinematic Entrance Animation for Title */
.about-hero__title {
    animation: titleReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Scroll Down Indicator for About Hero */
.about-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.about-hero__scroll:hover {
    color: var(--accent-primary);
    transform: translateX(-50%) translateY(-5px);
}

.about-hero__scroll-line {
    width: 1.5px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.about-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    animation: scrollLineAnim 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLineAnim {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}


/* ==========================================================================
   Our Story Section
   ========================================================================== */

.our-story {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.story-block {
    margin-bottom: 120px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-primary);
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.2), transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.story-text h2 {
    margin-bottom: 25px;
}

.story-text p {
    color: var(--text-gray-light);
    margin-bottom: 20px;
    font-size: 17px;
}

/* Mission & Vision Cards */
.mission-vision {
    margin-bottom: 120px;
}

.mv-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    background: rgba(22, 172, 128, 0.02);
    border-color: var(--accent-primary);
}

.mv-card__icon {
    width: 45px;
    height: 45px;
    background: rgba(22, 172, 128, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-primary);
    transition: all 0.4s ease;
}

.mv-card__icon svg {
    width: 20px;
    height: 20px;
}

.mv-card:hover .mv-card__icon {
    background: var(--accent-primary);
    color: #fff;
}

.mv-card__title {
    font-size: 24px;
    margin-bottom: 6px;
    color: #fff;
    transition: color 0.3s ease;
}

.mv-card:hover .mv-card__title {
    color: var(--accent-primary);
}

.mv-card__text {
    color: var(--text-gray-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Growth Grid */
.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.growth-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
    text-align: left;
}

.growth-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.growth-item__year {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 0px;
    opacity: 0.8;
}

.growth-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.growth-item p {
    color: var(--text-gray-light);
    font-size: 15px;
    margin-bottom: 0;
}

.growth-item.highlighted {
    background: linear-gradient(135deg, rgba(22, 172, 128, 0.1), rgba(70, 191, 92, 0.1));
    border-color: var(--accent-primary);
}

.growth-item.highlighted .growth-item__year {
    color: var(--accent-tertiary);
}



/* ==========================================================================
   Team Section
   ========================================================================== */

.team {
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.team-grid {
    margin-top: 40px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card__image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card__image {
    transform: scale(1.1);
}

.team-card__socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(3, 21, 30, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.team-card:hover .team-card__socials {
    bottom: 0;
}

.team-social-link {
    color: #fff;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.team-social-link:hover {
    color: var(--accent-primary);
    transform: scale(1.2);
}

.team-card__content {
    padding: 20px;
    text-align: center;
}

.team-card__name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0px;
    font-family: 'Sora', sans-serif;
}

.team-card__position {
    display: block;
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card__bio {
    color: var(--text-gray-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}



/* ==========================================================================
   Office Gallery / Behind the Scenes
   ========================================================================== */

.office-gallery {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

/* Background Glow for Gallery */
.office-gallery::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 172, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-card {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 21, 30, 0.9) 0%, rgba(3, 21, 30, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.gallery-category {
    font-size: 13px;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}


/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(3, 21, 30, 0.8), rgba(3, 21, 30, 0.9)), url('../image/contact-hero-bg-v2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    animation: heroBgZoom 30s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.contact-hero__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero__subtitle {
    font-size: 18px;
    color: var(--text-gray-light);
    max-width: 700px;
    margin: 0 auto;
}


.contact-section {
    padding: 100px 0 120px;
}

/* Contact Info Cards */
.contact-info {
    height: 100%;
}

.contact-info__text {
    color: var(--text-gray-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(22, 172, 128, 0.2);
}

.contact-detail-content span {
    display: block;
    font-size: 14px;
    color: var(--text-gray-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-content p {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.contact-socials h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-smooth);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    user-select: none;
}

.dropdown-trigger:hover,
.custom-dropdown.active .dropdown-trigger {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(22, 172, 128, 0.1);
}

.dropdown-trigger i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--text-gray-muted);
}

.custom-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 12px 20px;
    color: var(--text-gray-light);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dropdown-option:hover {
    background: rgba(22, 172, 128, 0.1);
    color: var(--accent-primary);
    padding-left: 25px;
}

.dropdown-option.selected {
    background: var(--accent-primary);
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(22, 172, 128, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4d;
}

.error-msg {
    position: absolute;
    bottom: -22px;
    left: 5px;
    font-size: 12px;
    color: #ff4d4d;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group.error .error-msg {
    opacity: 1;
    transform: translateY(0);
}

/* Form Submit Button Loading State */
.btn--full {
    width: 100%;
}

.btn .loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    display: none;
    animation: spin 1s linear infinite;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .loader {
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-message.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease forwards;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(22, 172, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 40px;
    margin-bottom: 25px;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-gray-light);
    margin-bottom: 30px;
    max-width: 400px;
}

/* FAQ Accordion Styles */
.contact-faq {
    padding: 80px 0 0px;
    border-top: 1px solid var(--glass-border);
}

.accordion-wrapper {
    max-width: var(--container-max);
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Reduced gap to accommodate margin */
    align-items: start;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 15px !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: fit-content;
    margin: 5px;
    /* Added margin to prevent clipping */
}



.accordion-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(22, 172, 128, 0.3);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.accordion-header span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-smooth);
}

.accordion-header i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active {
    background: rgba(22, 172, 128, 0.05);
    border-color: var(--accent-primary);
}

.accordion-item.active .accordion-header span {
    color: var(--accent-primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Adjust based on content */
    padding-bottom: 25px;
}

.accordion-content p {
    padding: 0 25px;
    color: var(--text-gray-light);
    line-height: 1.7;
    margin: 0;
}



/* Map Section Styles */
.map-section {
    padding: 80px 0 80px;
}

.map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(1) invert(90%) contrast(90%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.map-wrapper:hover iframe {
    opacity: 1;
    filter: grayscale(0.5) invert(90%) contrast(90%);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    pointer-events: none;
}

.map-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease forwards;
}

.map-card-icon {
    width: 45px;
    height: 45px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.map-card-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.map-card-info p {
    font-size: 14px;
    color: var(--text-gray-light);
    margin: 0;
}



/* Services Page Styles */
.services-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.services-hero__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.services-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 21, 30, 0.2), rgba(3, 21, 30, 0.6), var(--bg-primary));
    z-index: -1;
}

.services-hero__container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.services-hero__content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-hero__title {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.services-hero__title span {
    display: block;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero__description {
    font-size: 19px;
    color: var(--text-gray-light);
    max-width: 700px;
}

.services-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: auto;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-gray-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.8;
}

.services-hero__scroll span {
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.services-hero__scroll-line {
    width: 2px;
    height: 80px;
    background: rgba(22, 172, 128, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.services-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), transparent);
    animation: scrollLineMove 2.5s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes scrollLineMove {
    0% {
        top: -100%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ==============================
   SERVICE DETAIL SECTIONS
   ============================== */

.service-detail {
    padding: 90px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail--alt {
    background: var(--bg-secondary);
}

/* Service Header */
.service-detail__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.service-detail__num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(64px, 10vw, 128px);
    font-weight: 800;
    color: rgba(22, 172, 128, 0.06);
    line-height: 1;
    margin-bottom: -30px;
    letter-spacing: -4px;
}

.service-detail__title {
    font-size: clamp(32px, 5vw, 51px);
    line-height: 1.15;
    color: var(--text-white);
    margin-top: 5px;
    margin-bottom: -30px;
}

.service-detail__title span {
    color: var(--accent-primary);
}



.service-detail__text {
    font-size: 16px;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail__btn {
    margin-top: 10px;
    width: fit-content;
}

.service-detail__visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 480px;
    max-height: 320px;
    margin: 0 auto;
}

.service-detail__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.service-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-detail__visual:hover .service-detail__img {
    transform: scale(1.05);
}

/* Benefits Grid */
.service-detail__benefits {
    margin-bottom: 80px;
}

.service-detail__subtitle {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail__subtitle i {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    opacity: 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card__icon i {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.benefit-card h4 {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), rgba(22, 172, 128, 0.1));
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.process-step__number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid rgba(22, 172, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover .process-step__number {
    background: var(--accent-primary);
    color: var(--text-white);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(22, 172, 128, 0.3);
}

.process-step__content {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    flex: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .process-step__content {
    border-color: rgba(22, 172, 128, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step__content h4 {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}

.process-step__content p {
    font-size: 15px;
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(ellipse at center, rgba(22, 172, 128, 0.08), transparent 70%);
}

.services-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta__title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-cta__title span {
    color: var(--accent-primary);
}

.services-cta__text {
    font-size: 17px;
    color: var(--text-gray-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-cta .btn {
    width: fit-content;
    margin: 0 auto;
}

/* ==============================
   SERVICE VIEW PAGE (sv-)
   ============================== */

/* SV Benefits & Timeline Sections */
.sv-benefits {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-timeline {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* SV Hero */
.sv-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.sv-hero__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.sv-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.sv-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 21, 30, 0.85), rgba(3, 21, 30, 0.6), rgba(3, 21, 30, 0.9));
    z-index: -1;
}

.sv-hero__container {
    position: relative;
    z-index: 10;
}

.sv-hero__content {
    max-width: 750px;
}

.sv-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray-muted);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.sv-hero__back i {
    width: 16px;
    height: 16px;
}

.sv-hero__back:hover {
    color: var(--accent-primary);
    transform: translateX(-5px);
}

.sv-hero__title {
    font-size: clamp(40px, 7vw, 64px);
    line-height: 1.1;
    background: linear-gradient(to right, #e9e9e9 10%, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.sv-hero__title span {
    color: var(--accent-primary);
}

.sv-hero__description {
    font-size: 18px;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.sv-hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.sv-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sv-hero__stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
}

.sv-hero__stat-label {
    font-size: 12px;
    color: var(--text-gray-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* SV Section Common */
.sv-section-header {
    text-align: center;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.sv-section-title {
    font-size: clamp(28px, 4vw, 44px);
    background: linear-gradient(to right, #ffffff 20%, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sv-section-title span {
    color: var(--accent-primary);
}

.sv-section-text {
    font-size: 16px;
    color: var(--text-gray-light);
    line-height: 1.7;
}

/* SV Offerings */
.sv-offerings {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-offerings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sv-offer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.sv-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    opacity: 0;
    transition: var(--transition-smooth);
}

.sv-offer-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sv-offer-card:hover::before {
    opacity: 1;
}

.sv-offer-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sv-offer-card__icon i {
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-offer-card h3 {
    font-size: 19px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.sv-offer-card>p {
    font-size: 14px;
    color: var(--text-gray-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sv-offer-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-offer-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray-light);
}

.sv-offer-card__list li i {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* SV Process */
.sv-process {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.sv-process-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
}

.sv-process-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sv-process-card__num {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: rgba(22, 172, 128, 0.15);
    margin-bottom: 10px;
    line-height: 1;
}

.sv-process-card:hover .sv-process-card__num {
    color: rgba(22, 172, 128, 1);
}

.sv-process-card h4 {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 5px;
    font-family: 'Sora', sans-serif;
}

.sv-process-card p {
    font-size: 14px;
    color: var(--text-gray-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* SV Results */
.sv-results {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.sv-result-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition-smooth);
}

.sv-result-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sv-result-card__value {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.sv-result-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sv-result-card p {
    font-size: 13px;
    color: var(--text-gray-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* SV Pricing */
.sv-pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.sv-pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.sv-pricing-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sv-pricing-card--popular {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(22, 172, 128, 0.15);
}

.sv-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 50px;
}

.sv-pricing-card__tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sv-pricing-card__price {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.sv-pricing-card__price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray-muted);
    margin-left: 4px;
}

.sv-pricing-card__desc {
    font-size: 14px;
    color: var(--text-gray-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sv-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.sv-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray-light);
}

.sv-pricing-card__features li i {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.sv-pricing-card__btn {
    width: fit-content;
    margin: 0 auto;
}

/* SV FAQ */
.sv-faq {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sv-faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sv-faq-item:hover,
.sv-faq-item.active {
    border-color: rgba(22, 172, 128, 0.3);
}

.sv-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sv-faq-item__question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.sv-faq-item__question i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sv-faq-item.active .sv-faq-item__question i {
    transform: rotate(180deg);
}

.sv-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.sv-faq-item.active .sv-faq-item__answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.sv-faq-item__answer p {
    font-size: 14px;
    color: var(--text-gray-light);
    line-height: 1.7;
    margin: 0;
}

/* SV Gallery */
.sv-gallery {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sv-gallery__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.sv-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.sv-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.sv-gallery__item:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.sv-gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.sv-gallery__item:hover .sv-gallery__overlay {
    transform: translateY(0);
    opacity: 1;
}

.sv-gallery__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    background: rgba(22, 172, 128, 0.15);
    border: 1px solid rgba(22, 172, 128, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.sv-gallery__overlay h4 {
    font-size: 16px;
    color: var(--text-white);
    font-family: 'Sora', sans-serif;
    margin: 0;
}

/* SV Gallery - Video Items */
.sv-gallery__item--video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.sv-gallery__item--video:hover video {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.sv-gallery__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(22, 172, 128, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(22, 172, 128, 0.4);
}

.sv-gallery__play-btn i {
    width: 22px;
    height: 22px;
    color: #fff;
    margin-left: 3px;
}

.sv-gallery__item--video:hover .sv-gallery__play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 50px rgba(22, 172, 128, 0.6);
}

.sv-gallery__item--video.playing .sv-gallery__play-btn {
    opacity: 0;
    pointer-events: none;
}

.sv-gallery__item--video.playing:hover .sv-gallery__play-btn {
    opacity: 1;
    pointer-events: auto;
}

.sv-gallery__item--video.playing .sv-gallery__overlay {
    opacity: 0;
}

.sv-gallery__item--video.playing:hover .sv-gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   WORK PAGE (PORTFOLIO) STYLES
   ========================================================================== */

.work-page {
    background-color: var(--bg-primary);
}

/* 1. Work Hero */
.work-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.work-hero__bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95)),
        url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.1);
    animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.work-hero .container {
    position: relative;
    z-index: 2;
}

.work-hero .hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at 50% 0%, rgba(22, 172, 128, 0.15) 0%, transparent 70%); */
    pointer-events: none;
}

.work-hero .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(22, 172, 128, 0.1);
    border: 1px solid rgba(22, 172, 128, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.work-hero .hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.work-hero .hero-title span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-hero .hero-desc {
    font-size: 17px;
    color: var(--text-gray-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 1.5. Work Gallery Section Padding */
.work-gallery {
    padding: 100px 0;
}

/* 2. Category Filters */
.work-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 60px;
    padding: 10px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    -webkit-overflow-scrolling: touch;
}

.work-filters::-webkit-scrollbar {
    display: none;
}



.work-filters .filter-btn {
    flex-shrink: 0;
    padding: 8px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-gray-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
}

.work-filters .filter-btn:hover {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border-color: transparent;
    color: white;
}

.work-filters .filter-btn.active {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border-color: transparent;
    color: white;
    font-weight: 600;
}

/* 3. Masonry Grid */
.work-masonry {
    columns: 3;
    column-gap: 24px;
    width: 100%;
}

.work-item {
    break-inside: avoid;
    margin-bottom: 24px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.work-item--vertical {
    grid-row: span 2;
}



/* 4. Work Card */
.work-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.work-item--vertical .work-card {
    aspect-ratio: 9 / 16;
}

.work-card__media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.work-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover .work-card__media img {
    transform: scale(1.1);
}

/* Hover Preview Video */
.work-card__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    z-index: 2;
    overflow: hidden;
}

.work-card__preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.work-card:hover .work-card__preview {
    opacity: 1;
    visibility: visible;
}

/* Card Overlay */
.work-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    z-index: 3;
    opacity: 1;
    /* Always show some overlay for the text/icon */
    transition: all 0.5s ease;
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    background: rgba(22, 172, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(22, 172, 128, 0.5);
}

.play-btn-circle i {
    color: #000;
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.work-card:hover .play-btn-circle {
    transform: scale(1);
    opacity: 1;
}

.work-card__hover-info {
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.work-card__hover-info .category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 8px;
    display: block;
}

.work-card__hover-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    color: var(--text-white);
    margin: 0;
}

.work-card:hover .work-card__hover-info {
    transform: translateY(0);
}

/* 5. Work Modal (Video Popup) */
.work-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-modal.active {
    opacity: 1;
    visibility: visible;
}

.work-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.work-modal__content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    z-index: 2;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-modal.active .work-modal__content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    transform: rotate(90deg);
    color: var(--accent-primary);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   WORK DETAIL PAGE STYLES
   ========================================================================== */

.work-detail-page {
    background-color: var(--bg-primary);
}

/* Project Hero */
.project-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.project-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.project-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero__bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 21, 30, 0.4), var(--bg-primary));
}

.project-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--accent-primary);
    transform: translateX(-5px);
}

.back-link i {
    width: 18px;
    height: 18px;
}

.project-category {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.project-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 40px;
}

.project-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-item .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray-muted);
}

.meta-item .value {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-white);
}

/* Project Overview */
.section-padding {
    padding: 100px 0;
}



.lead-text {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}

.overview-content p {
    color: var(--text-gray-light);
    font-size: 16px;
    margin-bottom: 8px;
}

.goal-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
}

.goal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray-light);
}

.goal-list li i {
    color: var(--accent-primary);
    width: 20px;
    height: 20px;
}

.project-sidebar-info {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: rgba(22, 172, 128, 0.3);
    transform: translateY(-5px);
}

.info-card h4 {
    font-size: 19px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-gray-light);
    margin: 0;
}

/* Video Section Enhanced */
.video-window {
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-window__header {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.video-window__header .dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.video-window__header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.video-window__header .dots span:nth-child(1) {
    background: #ff5f56;
}

.video-window__header .dots span:nth-child(2) {
    background: #ffbd2e;
}

.video-window__header .dots span:nth-child(3) {
    background: #27c93f;
}

.video-window .video-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.play-btn-main {
    width: 90px;
    height: 90px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 40px rgba(22, 172, 128, 0.6);
}

.play-btn-main i {
    width: 35px;
    height: 35px;
    color: #000;
    margin-left: 5px;
}

.video-overlay p {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-white);
}

.video-overlay:hover .play-btn-main {
    transform: scale(1.15);
    background: var(--accent-tertiary);
    box-shadow: 0 0 60px rgba(156, 212, 69, 0.8);
}

/* Bento Gallery Enhanced */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-gallery__item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.bento-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-gallery__item .item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-gallery__item .item-overlay span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bento-gallery__item:hover img {
    transform: scale(1.1);
}

.bento-gallery__item:hover .item-overlay {
    opacity: 1;
}

.bento-gallery__item:hover .item-overlay span {
    transform: translateY(0);
}

/* Bento Spans */
.bento-gallery .item-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-gallery .item-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery .item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-gallery .item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close-btn {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: rotate(90deg);
}



/* Section Dividers */
.project-video-section,
.project-gallery,
.project-overview {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-goals {
    margin-top: 20px;
}



/* media  */

/* 1680 */
@media (max-width: 1700px) {
    .portfolio-item {
        flex: 0 0 calc((100% - 72px) / 4);
    }
}

/* 1500 */
@media (max-width: 1679px) {
    .portfolio-item {
        flex: 0 0 calc((100% - 72px) / 4);
    }
}

/* 1440 */
@media (max-width: 1499px) {
    .portfolio-item {
        flex: 0 0 calc((100% - 48px) / 3);
    }
}

/* 1280 */
@media (max-width: 1439px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-item {
        flex: 0 0 calc((100% - 48px) / 3);
    }


    .gallery-item--large {
        grid-column: span 2;
    }
}

/* 1025 */
@media (max-width: 1279px) {
    .hero__title {
        font-size: 47px;
    }

    .hero__description {
        margin-bottom: 25px;
    }

    .hero__container {
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
    }

    .clients__title {
        margin-bottom: 18px;
    }

    .about__container {
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .about__text {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stats-grid {
        gap: 20px;
    }

    .work-hero .hero-title {
        font-size: clamp(36px, 7vw, 54px);
    }

    .work-hero .hero-desc {
        font-size: 16px;
    }

    .timeline-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .feature-icon svg {
        width: 21px;
        height: 21px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 19px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .achievements-grid {
        gap: 20px;
    }

    .achievement-number {
        font-size: 50px;
    }

    .achievement-item {
        padding: 20px 15px;
    }

    .achievement-suffix {
        font-size: 30px;
    }

    .about-hero__title {
        font-size: clamp(44px, 8vw, 58px);
    }

    .story-text h2 {
        margin-bottom: 15px;
    }

    .story-text p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .our-story,
    .office-gallery {
        padding: 80px 0;
    }

    .section-tag {
        padding: 5px 20px;
        font-size: 11px;
    }

    .story-block,
    .mission-vision {
        margin-bottom: 70px;
    }

    .growth-grid {
        margin-top: 40px;
    }

    .growth-item__year {
        font-size: 35px;
    }

    .growth-item h4 {
        font-size: 19px;
        margin-bottom: 2px;
    }

    .growth-item {
        padding: 20px;
    }

    .service-detail {
        padding: 80px 0;
    }

    .services-hero__title {
        font-size: clamp(40px, 8vw, 60px);
        margin-bottom: 10px;
    }

    .sv-hero__description {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* 992 */
@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero__title {
        font-size: 48px;
    }

    .bento-visual {
        transform: rotateY(0) rotateX(0) scale(0.9);
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .achievement-number {
        font-size: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .footer-col:first-child {
        grid-column: span 3;
        margin-bottom: 20px;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer {
        padding: 70px 0 30px;
    }

    .contact-form-wrapper {
        padding: 30px;
        border-radius: 20px;
    }

    .form-group input,
    .form-group textarea,
    .dropdown-trigger {
        padding: 11px 15px;
    }

    .contact-detail-content p {
        font-size: 15px;
    }

    .contact-detail-content span {
        font-size: 14px;
    }

    .contact-detail-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-detail-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 34px;
    }

    .contact-info__text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-section {
        padding: 90px 0 100px;
    }

    .work-gallery {
        padding: 80px 0;
    }

    .project-title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .project-meta {
        gap: 30px;
    }
}

/* 768 */
@media (max-width: 991px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 75px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 60px;
    }

    .hero__badge {
        margin-bottom: 25px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about__visual {
        order: 1;
    }

    .about__content {
        order: 2;
    }

    .service-card__text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .service-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card__icon {
        width: 45px;
        height: 45px;
        border-radius: 9px;
    }

    .service-card__btn {
        font-size: 13px;
    }

    .service-card__title {
        font-size: 17px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .contact-section>.container>.row {
        flex-direction: column-reverse;
    }

    .story-block--intro .row {
        flex-direction: column;
    }

    .story-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .accordion-wrapper {
        grid-template-columns: 1fr;
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-detail__header {
        margin-bottom: 40px;
    }

    .service-detail__num {
        font-size: 64px;
        margin-bottom: -15px;
    }

    .service-detail__visual {
        margin-top: 40px;
    }

    /* Service View Responsive (991px) */
    .sv-hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: center;
    }

    .sv-hero__content {
        max-width: 100%;
    }

    .sv-hero__stats {
        justify-content: center;
        gap: 30px;
    }

    .sv-benefits,
    .sv-timeline,
    .sv-offerings,
    .sv-gallery {
        padding: 80px 0;
    }

    .sv-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 24px;
    }

    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        padding-right: 0 !important;
        padding-left: 50px !important;
        justify-content: flex-start !important;
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px !important;
    }

    .timeline-dot {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .timeline {
        margin: 0px auto 0;
        padding: 20px 0;
    }

    .testimonial-quote {
        font-size: 26px;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .testimonial-rating {
        margin-bottom: 20px;
    }

    .testimonial-client {
        gap: 10px;
    }

    .client-info h4 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .achievement-number {
        font-size: 50px;
    }

    .achievements-grid {
        gap: 30px;
    }

    .achievements {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 45px;
        margin-bottom: 10px;
    }

    .cta-text {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .process {
        padding: 70px 0;
    }

    .process-step {
        gap: 10px;
    }

    .sv-hero {
        min-height: 70vh;
    }

    .sv-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-masonry {
        columns: 2;
        column-gap: 15px;
    }

    .work-item {
        margin-bottom: 15px;
    }

    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .project-hero {
        height: 70vh;
        padding-bottom: 60px;
    }

    .project-title {
        margin-bottom: 30px;
    }

    .project-meta {
        gap: 25px;
    }

    .meta-item .value {
        font-size: 15px;
    }

    .lead-text {
        font-size: 18px;
    }

    .project-sidebar-info {
        position: relative;
        top: 0;
        margin-top: -10px;
    }

    .goal-list {
        margin-bottom: 0;
    }

    .info-card {
        padding: 25px;
    }

    .video-window__header {
        padding: 12px 20px;
    }

    .play-btn-main {
        width: 70px;
        height: 70px;
    }

    .play-btn-main i {
        width: 25px;
        height: 25px;
    }

    .video-overlay p {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    /* About Page Responsive */
    .about-hero__title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .our-story {
        padding: 80px 0;
    }

    .story-block {
        margin-bottom: 80px;
    }

    .mission-vision {
        margin-bottom: 80px;
    }

    .mv-card {
        padding: 25px;
    }

    .growth-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .team {
        padding: 80px 0;
    }

    .office-gallery {
        padding: 80px 0;
    }

    .story-text {
        text-align: center;
        margin-top: 30px;
    }

    .mv-card__title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .section-tag {
        margin-bottom: 20px;
    }

    .team-grid {
        justify-content: center;
    }

    .team-card__name {
        font-size: 20px;
    }

    .team-card__position {
        font-size: 13px;
    }

    .team-card__bio {
        font-size: 14px;
        line-height: 1.4;
    }

    .team-card {
        border-radius: 20px;
    }

    .gallery-grid {
        margin-top: 40px;
    }

    /* Contact Page Responsive */
    .contact-section {
        padding: 70px 0 70px;
    }

    .contact-info {
        margin-bottom: 0px;
        text-align: center;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: left;
    }

    .contact-details {
        margin-bottom: 25px;
    }

    .contact-detail-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        justify-content: flex-start;
    }

    .contact-detail-icon {
        flex-shrink: 0;
    }

    .contact-detail-content span {
        font-size: 13px;
    }

    .contact-detail-content p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 40px;
        margin-top: 0px;
    }

    .contact-socials {
        text-align: start;
        margin-top: 20px;
    }

    .contact-socials h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .footer-bottom-links a {
        background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-decoration: none;
        transition: var(--transition-smooth);
    }

    .services-hero__title {
        font-size: 45px;
        margin-bottom: 10px;
    }

    .services-hero__description {
        font-size: 16px;
    }

    .service-detail__num {
        font-size: 100px;
        margin-bottom: -30px;
    }

    .service-detail__text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
        text-align: center;
    }

    .service-detail__btn {
        margin: 10px auto 0;
        display: block;
    }

    .service-detail__title {
        margin-bottom: -20px;
    }

    .service-detail__visual {
        margin-top: 30px;
    }

    .services-cta__title {
        margin-bottom: 10px;
    }

    .services-cta__text {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .services-cta {
        padding: 80px 0;
    }

    .work-hero {
        text-align: center;
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .work-hero .hero-desc {
        margin: 0 auto;
    }

    .work-filters {
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .work-masonry {
        column-gap: 20px;
    }

    .work-gallery {
        padding: 70px 0;
    }

    .work-hero .hero-title {
        margin-bottom: 5px;
    }

    .info-card h4 {
        margin-bottom: 5px;
    }

    .benefit-card__icon svg,
    .sv-offer-card__icon svg {
        width: 21px;
        height: 21px;
    }

    .benefit-card__icon,
    .sv-offer-card__icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .benefit-card {
        border-radius: 18px;
        padding: 25px;
    }

    .process-step__number {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .process-step__content {
        border-radius: 13px;
        padding: 20px;
    }

    .process-step__content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .process-step__content h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .process-step {
        padding: 25px 0;
    }

    .sv-offer-card {
        padding: 25px;
    }

    .sv-offer-card h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .sv-offer-card>p {
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .sv-offer-card__list li svg {
        width: 15px;
        height: 15px;
        min-width: 15px;
    }
}

/* 576 */
@media (max-width: 767px) {
    .hero__showcase {
        height: 400px;
    }

    .main-card {
        width: 280px;
        height: 380px;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 0px;
    }

    .client-logo {
        max-height: 30px;
    }

    .client-card {
        min-width: 160px;
        height: 80px;
        padding: 20px;
    }

    .marquee__track {
        gap: 20px;
    }

    .hero__btns {
        justify-content: center;
    }

    .hero__container {
        display: flex;
        flex-direction: column;
    }

    .bento-visual {
        scale: 0.8;
        transform: rotateX(10deg) rotateY(-10deg);
        margin-top: 20px;
    }

    .iphone-mockup {
        width: 220px;
        height: 450px;
    }

    .clients {
        padding: 60px 0;
    }

    .about {
        padding: 80px 0;
    }

    .section-title {
        font-size: 35px;
        margin-bottom: 0;
    }

    .section-subtitle {
        font-size: 17px;
        margin-top: 5px;
    }

    .portfolio-item {
        flex: 0 0 100%;
    }

    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        padding-right: 0;
        padding-left: 50px;
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .brand-marquee {
        margin-top: 50px;
        padding: 25px 0;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    /* Services Page Responsive */
    .services-hero {
        padding-top: 140px;
        padding-bottom: 80px;
        height: auto;
    }

    .services-hero__title {
        font-size: 38px;
    }

    .project-hero {
        height: auto;
        min-height: 500px;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .project-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .project-meta {
        gap: 20px;
    }

    .back-link {
        margin-bottom: 20px;
    }

    .bento-gallery {
        grid-template-rows: repeat(auto-fill, minmax(200px, 1fr));
    }

    .services-hero__description {
        font-size: 16px;
    }

    .services-hero__scroll {
        display: none;
    }

    .service-detail {
        padding: 50px 0;
    }

    .service-detail__title {
        font-size: 28px;
    }

    .service-detail__text {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-detail__visual {
        max-width: 100%;
        margin-top: 30px;
    }

    .services-cta {
        padding: 70px 0;
    }

    .services-cta__title {
        font-size: 32px;
    }

    .services-cta__text {
        font-size: 15px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: span 2;
        margin-bottom: 20px;
    }

    .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-links {
        margin-bottom: 0;
    }

    .footer-links li:last-child,
    .footer-contact li:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .about-hero {
        height: 65vh;
    }

    .about-hero__title {
        font-size: 38px;
    }


    .about-hero__scroll {
        left: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 10px;
    }

    /* Keep original spans for a gallery look */
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item--wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero::before {
        background-attachment: scroll;
    }

    .contact-hero__title {
        font-size: 38px;
    }

    .contact-hero__subtitle {
        font-size: 16px;
    }

    .contact-info__text {
        margin-bottom: 30px;
    }

    .contact-detail-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .contact-detail-content p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 30px;
        border-radius: 20px;
        margin-top: 20px;
    }

    .contact-faq {
        padding: 60px 0 0;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .map-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        pointer-events: none;
    }

    .map-card {
        width: 100%;
        justify-content: center;
    }

    .contact-section {
        padding: 90px 0 100px;
    }

    .work-hero {
        padding: 140px 0 80px;
    }

    .work-filters .filter-btn {
        padding: 7px 18px;
        font-size: 13px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__description {
        margin-bottom: 23px;
    }

    .hero__description {
        font-size: 16px;
    }

    .hero__container {
        gap: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .portfolio {

        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .work-modal__content {
        width: 95%;
        aspect-ratio: auto;
        height: auto;
        max-height: 80vh;
    }

    .modal-close-btn {
        top: -50px;
        right: 10px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h3 svg {
        width: 23px;
        height: 23px;
    }

    .timeline-content h3 {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .step-badge {
        margin-bottom: 15px;
    }

    .timeline-dot {
        width: 15px;
        height: 15px;
    }

    .testimonials {
        padding: 70px 0;
    }

    .testimonials-container {
        margin: 30px auto 0;
    }

    .achievement-number {
        font-size: 40px;
    }

    .achievement-label {
        font-size: 11px;
    }

    .story-block {
        margin-bottom: 60px;
    }

    .mv-card__title {
        font-size: 20px;
    }

    .mv-card__icon {
        margin-bottom: 10px;
    }

    .mission-vision {
        margin-bottom: 65px;
    }

    .growth-grid {
        margin-top: 30px;
    }

    .growth-item__year {
        font-size: 30px;
    }

    .growth-item h4 {
        font-size: 17px;
    }

    .growth-item p {
        font-size: 15px;
        line-height: 20px;
    }

    .team {
        padding: 70px 0;
    }

    .team-card__image {
        object-position: 80% 20%;
    }

    .team-card__image-wrapper {
        height: 400px;
    }

    .team-grid {
        margin-top: 25px;
    }

    .contact-detail-content p {
        font-size: 14px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .contact-detail-icon svg {
        width: 16px;
        height: 16px;
    }

    .service-detail__title {
        margin-bottom: -25px;
    }

    .btn.service-detail__btn {
        padding: 10px 29px;
        font-size: 14px;
    }

    .work-gallery {
        padding: 60px 0;
    }

    .sv-hero__stat {
        gap: 0px;
    }

    .sv-hero__stat-num {
        font-size: 28px;
    }

    .sv-hero__description {
        font-size: 16px;
        line-height: 1.4;
    }

    .sv-hero__stats {
        justify-content: center;
        gap: 20px;
    }

    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .benefit-card__icon,
    .sv-offer-card__icon {
        margin-bottom: 10px;
    }

    .sv-benefits,
    .sv-timeline,
    .sv-offerings,
    .sv-gallery {
        padding: 70px 0;
    }
}

/* 525 */
@media (max-width: 575px) {
    .hero__title {
        font-size: 36px;
    }

    .bento-visual {
        scale: 0.65;
        margin-top: -20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .growth-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 60vh;
    }

    .about-hero__title {
        font-size: 34px;
    }

    .story-image {
        height: 250px;
    }

    .our-story {
        padding: 70px 0;
    }

    .story-block {
        margin-bottom: 45px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-item {
        border-radius: 13px;
    }

    .gallery-grid {
        margin-top: 27px;
    }

    /* Contact Page Responsive */
    .contact-hero__title {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-group label {
        font-size: 13px;
    }

    .social-link {
        width: 37px;
        height: 37px;
    }

    .social-link i {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .dropdown-trigger {
        padding: 8px 10px;
    }

    .form-group {
        gap: 3px;
    }

    .contact-form .row>* {
        margin-top: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .contact-info {
        text-align: center;
    }


    .services-hero__title {
        font-size: 35px;
    }

    .services-hero__description {
        font-size: 15px;
    }

    .project-title {
        font-size: 40px;
    }

    .project-meta {
        gap: 15px;
    }

    .meta-item .value {
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .goal-list {
        margin-top: -10px;
        gap: 5px;
    }

    .goal-list svg {
        width: 17px;
        height: 17px;
    }

    .goal-list li {
        font-size: 15px;
    }

    .project-gallery .section-title.mb-5 {
        margin-bottom: 20px !important;
    }
}

/* 480 */
@media (max-width: 524px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .sv-gallery__grid {
        grid-template-columns: 1fr;
    }

    .sv-hero__title {
        font-size: 38px;
    }

    .sv-hero__description {
        font-size: 15px;
    }

    .sv-hero__stats {
        gap: 20px;
        align-items: center;
    }

    .sv-hero__stat-num {
        font-size: 28px;
    }

    .sv-section-title {
        font-size: 32px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        gap: 15px;
    }

    .process-step__number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .process-step__content {
        padding: 20px;
    }

    .work-masonry {
        columns: 1;
    }

    .stat-label {
        font-size: 10px;
        margin-top: -7px;
    }

    .number-wrapper {
        margin-top: -10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stats-grid {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-detail-item {
        justify-content: flex-start;
    }

    .services-hero__title {
        font-size: 30px;
    }

    .services-cta {
        padding: 60px 0;
    }

    .work-hero .hero-title {
        font-size: 32px;
    }

    .work-hero .hero-badge {
        padding: 6px 15px;
        font-size: 11px;
        margin-bottom: 15px;
    }

    .work-filters {
        margin-bottom: 25px;
    }

    .work-filters .filter-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    .work-masonry {
        columns: 1;
        column-gap: 0;
    }

    .work-hero .hero-desc {
        font-size: 15px;
    }

    .sv-gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }

    .project-goals h3 {
        font-size: 20px;
    }

    .overview-content p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .info-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .sv-offer-card>p {
        margin-bottom: 7px;
    }

    .sv-section-text {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* 425 */
@media (max-width: 479px) {
    .portfolio-item {
        flex: 0 0 100%;
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .achievement-suffix {
        font-size: 25px;
    }

    .achievement-label {
        font-size: 10px;
    }

    .achievement-item {
        padding: 15px;
        border-radius: 15px;
    }

    .achievements {
        padding: 70px 0;
    }

    .achievement-number {
        font-size: 33px;
    }

    .hero__title {
        font-size: 32px;
    }

    .services-hero__title {
        font-size: 30px;
    }

    .service-detail__title {
        font-size: 24px;
    }

    .services-cta__title {
        font-size: 28px;
    }

    /* Service View Responsive (479px) */
    .sv-hero__title {
        font-size: 32px;
    }

    .sv-hero__stat-num {
        font-size: 24px;
    }

    .sv-hero__stat-label {
        font-size: 11px;
    }

    .sv-section-title {
        font-size: 28px;
    }

    .sv-section-header {
        margin-bottom: 25px;
    }

    .benefit-card,
    .sv-offer-card {
        padding: 25px 20px;
    }

    .sv-gallery__overlay {
        padding: 15px;
    }

    .sv-gallery__overlay h4 {
        font-size: 14px;
    }


    .section-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }


    .hero__btns {
        gap: 15px;
        flex-wrap: nowrap;
    }

    .btn i,
    .btn svg,
    .btn .btn__icon {
        display: none;
    }

    .btn--primary,
    .btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .bento-visual {
        scale: 0.75;
        margin-top: -10px;
        height: 430px;
    }

    .hero__description {
        font-size: 15px;
        line-height: 1.4rem;
        margin-bottom: 20px;
    }

    .clients__title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about__img-wrapper {
        border-radius: 15px;
    }

    .about__container {
        gap: 40px;
    }

    .about {
        padding: 70px 0;
    }

    .about__text {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 20px;
    }

    .stat-item {
        padding: 15px;
        border-radius: 14px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .timeline-content h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .timeline-content h3 svg {
        width: 19px;
        height: 19px;
    }

    .timeline-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .timeline-content {
        padding: 20px;
        border-radius: 18px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .features-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-content {
        padding: 25px;
        border-radius: 20px;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 20px;
    }

    .cta-btns .btn {
        font-size: 13px;
    }

    .cta {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 8px;
    }

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item--wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-hero__title {
        font-size: 27px;
    }

    .growth-item__year {
        font-size: 32px;
    }

    .about-hero__description {
        font-size: clamp(16px, 2vw, 21px);
        line-height: 1.5;
    }

    .story-image {
        margin-bottom: 10px;
    }

    .story-text p {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 20px;
    }

    .story-block {
        margin-bottom: 30px;
    }

    .mv-card__icon svg {
        width: 16px;
        height: 16px;
    }

    .mv-card__icon {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }

    .mv-card__title {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .mv-card__text {
        font-size: 14px;
        line-height: 1.4;
    }

    .mv-card {
        padding: 20px;
        border-radius: 15px;
    }

    /* Contact Page Responsive */
    .contact-hero__title {
        font-size: 28px;
    }

    .contact-detail-item {
        gap: 15px;
    }

    .contact-detail-icon {
        width: 45px;
        height: 45px;
    }

    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-header span {
        font-size: 16px;
    }

    .accordion-content p {
        padding: 0 20px;
        font-size: 14px;
    }

    .map-card {
        padding: 15px 20px;
        border-radius: 15px;
    }

    .project-meta {
        gap: 20px;
    }

    .bento-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-gallery .item-1,
    .bento-gallery .item-2,
    .bento-gallery .item-3,
    .bento-gallery .item-4 {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

    .map-card-icon {
        width: 40px;
        height: 40px;
    }

    .map-card-info h5 {
        font-size: 14px;
    }

    .map-card-info p {
        font-size: 12px;
    }

    .contact-section {
        padding: 65px 0 65px;
    }

    .services-hero__title {
        font-size: 26px;
    }

    .services-hero__description {
        font-size: 14px;
        margin-bottom: 0;
    }

    .service-detail__btn {
        margin: 20px auto 0;
    }

    .work-hero .hero-title {
        font-size: 38px;
    }

    .work-gallery {
        padding: 50px 0;
    }
}

/* 375 */
@media (max-width: 424px) {
    .hero__badge {
        font-size: 10px;
        padding: 6px 15px;
    }

    .bento-visual {
        scale: 0.7;
    }
}

/* 320 */
@media (max-width: 374px) {
    .hero__title {
        font-size: 28px;
    }

    .bento-visual {
        scale: 0.65;
        margin-top: -40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 1;
    }
}

/* 280 */
@media (max-width: 319px) {
    .hero__title {
        font-size: 24px;
    }

    .bento-visual {
        scale: 0.6;
    }
}

/* Force 3 Columns for User Guide and YouTube Shorts tabs */
.work-masonry.force-three-cols {
    display: flex !important;
    flex-wrap: wrap !important;
    columns: unset !important;
    column-count: unset !important;
    column-width: unset !important;
    gap: 24px !important;
}

.work-masonry.force-three-cols .work-item {
    flex: 0 0 calc((100% - 48px) / 3) !important;
    width: calc((100% - 48px) / 3) !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .work-masonry.force-three-cols {
        gap: 15px !important;
    }

    .work-masonry.force-three-cols .work-item {
        flex: 0 0 calc((100% - 15px) / 2) !important;
        width: calc((100% - 15px) / 2) !important;
    }
}

@media (max-width: 524px) {
    .work-masonry.force-three-cols {
        gap: 20px !important;
    }

    .work-masonry.force-three-cols .work-item {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}