:root {
    --primary: #C96A1B;
    --dark-primary: #8A4A14;
    --light-primary: #F2B277;
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --text-color: #FFF3E6;
    --text-muted: #CFC2B8;
    --white: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --glow: 0 0 25px rgba(201, 106, 27, 0.25);
}

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

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

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

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Projects Page Styles */
.projects-page-container {
    padding: 0 20px 100px;
}

.projects-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.back-link-premium:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(-5px);
}

.projects-nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.projects-nav-logo .dot {
    color: var(--primary);
}

.projects-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    margin-bottom: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(201, 106, 27, 0.1) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.projects-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -3px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.5;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .projects-list {
        gap: 60px;
    }
}

/* Projects Gallery (Standalone Page) */
.projects-page-container {
    padding: 80px 0;
}

.projects-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.modern-project-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modern-cover-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

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

.modern-project-card:hover .modern-cover-wrap img {
    transform: scale(1.04);
}

.modern-content {
    padding: 10px 10px 0;
}

.modern-category-tag {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.modern-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.modern-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

.modern-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .modern-links {
        gap: 10px;
    }

    .modern-link-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
        font-size: 0.8rem;
    }
}

.modern-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.modern-link-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.modern-link-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
}

.modern-link-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .projects-modern-grid {
        grid-template-columns: 1fr;
    }

    .modern-content h2 {
        font-size: 1.8rem;
    }
}

.btn-reveal {
    position: relative;
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.4s ease;
}

.btn-reveal:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .showcase-item {
        padding: 80px 0;
    }

    .showcase-item .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showcase-text h2 {
        font-size: 3rem;
    }

    .showcase-image-wrap {
        order: 1 !important;
    }

    .showcase-text {
        order: 2 !important;
    }

    .showcase-image-inner {
        aspect-ratio: 16/9;
    }
}

.meta-block span:first-child {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0.6;
}

.meta-block span:last-child {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.project-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-image-container {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(201, 106, 27, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 106, 27, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.project-item:hover .image-overlay-glow {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 106, 27, 0.2);
}

.link-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

@media (min-width: 1024px) {
    .project-item {
        grid-template-columns: 1fr 1.35fr;
        /* Increased image portion significantly */
        align-items: center;
        gap: 80px;
    }

    .project-item:nth-child(even) .project-content {
        order: 2;
    }

    .project-item:nth-child(even) .project-image-container {
        order: 1;
    }
}

/* Project Indicators */
.project-number {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

.project-bento-card:hover .project-number,
.project-featured-card:hover .project-number,
.project-card-v2:hover .project-number {
    -webkit-text-stroke: 1px rgba(201, 106, 27, 0.15);
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .project-number {
        font-size: 6rem;
        right: 20px;
        top: -10px;
    }

    .project-item {
        gap: 40px;
    }

    .project-links {
        gap: 10px;
    }

    .project-link {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }
}

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

.navbar.scrolled {
    padding: 16px 80px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.btn-nav {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 5px;
    color: var(--primary) !important;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

body {
    overflow: hidden;
    /* Locked for preloader. Managed by JS. */
}

/* Premium Hero Section */
.hero-section-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #0a0a0a;
    /* Darker background */
}

.ambient-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(140px);
    /* More blur */
    opacity: 0.12;
    /* Less opacity */
    animation: moveGlow 25s infinite alternate;
}

.glow-1 {
    background: var(--primary);
    /* Amber */
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.glow-2 {
    background: #ff5e00;
    /* Warm orange */
    bottom: -15%;
    left: -5%;
    animation-delay: -5s;
}

.glow-3 {
    background: #2b1d12;
    /* Deep chocolate/black-brown */
    top: 30%;
    left: 40%;
    width: 35vw;
    height: 35vw;
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1), top 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: none;
    opacity: 0.08;
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0) scale(1.0);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.badge-dot.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

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

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 4rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--light-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.highlight-market {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-premium {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
}

.btn-premium.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(201, 106, 27, 0.4);
}

.btn-premium.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn-premium.primary:hover {
    background: var(--dark-primary);
}

.hero-metrics {
    display: flex;
    gap: 48px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual-premium {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1.2;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.1);
}

.visual-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    transition: var(--transition);
}

.decoration-1 {
    top: 20px;
    right: 20px;
    border: 2px solid var(--primary);
    opacity: 0.3;
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(40px);
}

.floating-badge {
    position: absolute;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 106, 27, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.badge-ux {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.badge-strategy {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-social-v3 {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.hero-social-v3 a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    transition: var(--transition);
}

.hero-social-v3 a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-metrics {
        justify-content: center;
    }

    .hero-visual-premium {
        max-width: 400px;
        margin: 0 auto;
    }

    .badge-ux {
        left: -5%;
    }
}

@media (max-width: 640px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        gap: 24px;
    }
}


/* Sharing Section */
.sharing-section {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sharing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: block;
    transition: var(--transition);
}

.sharing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: linear-gradient(145deg, var(--card-bg), #25201b);
}

.sharing-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-label {
    font-weight: 600;
}

.platform-label.youtube {
    color: #FF0000;
}

.platform-label.linkedin {
    color: #0077b5;
}

.date {
    color: var(--text-muted);
    opacity: 0.7;
}

.sharing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.link-arrow {
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.link-arrow svg {
    transition: transform 0.2s ease;
}

.sharing-card:hover .link-arrow svg {
    transform: translateX(4px);
}


/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .philosophy {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.philosophy-item h3 {
    font-size: 1.2rem;
    color: var(--light-primary);
    margin-bottom: 10px;
}

.philosophy-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.skills-wrapper h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.skill-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    background: rgba(201, 106, 27, 0.1);
}

/* Case Studies (Work) */
/* Interactive Project Showcase (Home Page) */
.projects-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 80px 0;
}

.interactive-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #0a0a0a;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image-static {
    width: 100%;
    height: 100%;
}

.card-image-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-card:hover .card-image-static img {
    transform: scale(1.08);
    filter: brightness(0.4) blur(2px);
}

/* Hover Details Overlay */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.interactive-card:hover .card-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .card-hover-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .card-action-icons {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .icon-btn {
        width: 45px;
        height: 45px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
}

.hover-title-group h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hover-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hover-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hover-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hover-category {
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Hover Action Icons */
.card-action-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    display: flex;
    gap: 20px;
    z-index: 3;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-card:hover .card-action-icons {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.icon-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    color: var(--white);
}

.icon-btn svg {
    width: 24px;
    height: 24px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary);
    color: var(--white);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 59, 1, 0.2);
    gap: 25px;
}

.btn-view-all svg {
    transition: transform 0.4s ease;
}

.btn-view-all:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .projects-grid-container {
        grid-template-columns: 1fr;
    }

    .hover-title-group h3 {
        font-size: 1.8rem;
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        left: 30px;
        right: auto;
        width: 2px;
        height: 100%;
        top: 0;
    }
}

/* Connective line via pseudo-element */
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
    opacity: 0.3;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-color);
    /* To hide line behind content */
    padding: 10px;
}

@media (max-width: 900px) {
    .step {
        width: 100%;
        text-align: left;
        display: flex;
        gap: 25px;
        align-items: flex-start;
        padding: 20px 0;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(201, 106, 27, 0.2);
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 120px 20px 60px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--white), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-container p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.email-btn {
    font-size: 1.5rem;
    margin-bottom: 50px;
    padding: 15px 40px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.social-links a:hover {
    color: var(--primary);
}

.download-link {
    color: var(--light-primary);
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-link:hover {
    opacity: 1;
}

/* Services Section */
.services-section {
    padding-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(201, 106, 27, 0.1);
    background: linear-gradient(145deg, var(--card-bg), #25201b);
}

.view-all-container {
    margin-top: 60px;
    text-align: center;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(201, 106, 27, 0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

/* Removed old back nav styles as they are replaced by .projects-navbar */

/* Media Queries */
@media (max-width: 900px) {
    .navbar {
        padding: 20px 30px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px 0;
        background: var(--white);
        transition: var(--transition);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        gap: 30px;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--white);
    }

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

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

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

    .nav-links.active {
        right: 0;
    }

    .hero-section {
        flex-direction: column-reverse;
        /* Put image on top on mobile, or keep content on top? */
        /* Actually standard behavior for "mobile first" usually wants image visible or content visible. 
           Let's stick to content first. */
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .image-wrapper {
        margin: 40px auto 0;
        max-width: 350px;
    }

    .projects-hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .projects-navbar .container {
        padding: 0 20px;
    }

    .project-item {
        padding: 40px 20px;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-text {
        max-width: 100%;
        font-size: 1rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
    }

    .philosophy-item {
        text-align: center;
    }

    .skills-wrapper {
        text-align: center;
    }

    .skill-tags {
        justify-content: center;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding-bottom: 50px;
}

.reviews-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    /* Fallback for JS disabled */
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo .highlight-text {
    color: var(--primary);
}

/* Slider state when JS is enabled */
.testimonials-grid.slider {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 0;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
}

.testimonials-grid.slider .testimonial-card {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials-grid.slider .testimonial-card.active {
    opacity: 1;
}

.quote-icon {
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 25px;
}

.review-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

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

    .review-text {
        font-size: 1.1rem;
    }
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.reviewer-name {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 4px;
    font-weight: 600;
}

.reviewer-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reviews-controls {
    display: none;
    /* Only show with JS */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Contact Buttons Section */
.contact-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
    /* Fixed width for perfect symmetry */
}

.whatsapp-btn {
    background-color: #075E54;
    /* Darker WhatsApp green */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
}

.whatsapp-btn:hover {
    background-color: #054d44;
    border-color: #054d44;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 94, 84, 0.4);
}

.email-btn {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.email-btn:hover {
    background-color: var(--dark-primary);
    border-color: var(--dark-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 106, 27, 0.4);
}

.contact-btn span {
    white-space: nowrap;
}

/* Services CTA specifically */
.services-cta {
    text-align: center;
    margin-top: 100px;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(18, 18, 18, 0.4));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.services-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .contact-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
        min-width: auto;
        width: 100%;
    }

    .services-cta {
        padding: 60px 20px;
    }

    .services-cta h3 {
        font-size: 1.8rem;
    }

    .footer-brand-v2 .footer-logo {
        font-size: 1.2rem;
    }

    .footer-brand-v2 p {
        font-size: 0.8rem;
    }

    .footer-social-minimal {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Footer - Minimal Premium */
.projects-footer {
    padding: 120px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer-cta-premium {
    text-align: center;
    margin-bottom: 100px;
}

.footer-cta-premium h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.footer-email-link {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.footer-email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.footer-email-link:hover {
    color: var(--white);
}

.footer-email-link:hover::after {
    width: 100%;
    background: var(--white);
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-v2 .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand-v2 .dot {
    color: var(--primary);
}

.footer-brand-v2 p {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-social-minimal a {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.footer-social-minimal a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .footer-cta-premium h2 {
        font-size: 2.2rem;
    }

    .projects-grid-container,
    .projects-modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-grid-container {
        margin: 40px 0;
    }

    .interactive-card {
        border-radius: 24px;
    }

    .card-hover-overlay {
        padding: 30px;
    }

    .hover-title-group h3 {
        font-size: 1.6rem;
    }

    .footer-email-link {
        font-size: 1.2rem;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

/* --- NEW SECTIONS V3 --- */

/* About Section V3 */
.about-section-v3 {
    padding: 120px 0;
    background: #0f0f0f;
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    max-width: 450px;
}

.img-frame {
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-stat-card {
    position: absolute;
    bottom: 30px;
    right: -40px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.floating-stat-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-stat-card div {
    display: flex;
    flex-direction: column;
}

.floating-stat-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.floating-stat-card strong {
    font-size: 1.1rem;
    color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tag-badge {
    background: rgba(201, 106, 27, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    display: inline-block;
}

.about-paragraph {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.about-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.about-mini-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.mini-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.mini-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.mini-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.research-toolkit {
    margin-top: 20px;
}

.toolkit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.toolkit-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.toolkit-tag:hover {
    background: rgba(201, 106, 27, 0.2);
    border-color: var(--primary);
}

/* Process Section V3 */
/* Process Section Premium Refinement */
.process-section-v3 {
    padding: 120px 0;
    background: radial-gradient(circle at 5% 50%, rgba(201, 106, 27, 0.05) 0%, transparent 40%);
}

.process-journey {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
    padding-left: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.journey-line {
    position: absolute;
    left: 121px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(201, 106, 27, 0.4) 10%, 
        rgba(201, 106, 27, 0.4) 90%, 
        transparent
    );
    z-index: 1;
}

.journey-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    z-index: 2;
    transition: var(--transition);
}

.journey-point {
    width: 44px;
    height: 44px;
    background: #0a0a0a;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    box-shadow: 0 0 25px rgba(201, 106, 27, 0.3);
    min-width: 44px;
    z-index: 5;
    transition: var(--transition);
    margin-top: 18px;
}

.journey-item:hover .journey-point {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.journey-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition);
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.journey-item:hover .journey-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-10deg) translateY(-5px);
    border-color: var(--primary);
}

.journey-text h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.journey-text p {
    color: var(--white);
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.process-bullets {
    list-style: none;
    display: grid;
    gap: 12px;
}

.process-bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-bullets li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 4px;
}

@media (max-width: 992px) {
    .process-journey {
        padding-left: 60px;
        gap: 50px;
    }
    
    .journey-line {
        left: 82px;
    }
}

@media (max-width: 600px) {
    .journey-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .journey-line {
        display: none;
    }
    
    .journey-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        min-width: 60px;
    }
    
    .journey-text h3 {
        font-size: 1.6rem;
    }
}

/* Services Section V4 - SaaS Inspired */
.services-section-v4 {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-grid-v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card-v4 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card-v4:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-header-v4 {
    margin-bottom: 30px;
}

.service-icon-v4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card-v4:hover .service-icon-v4 {
    transform: scale(1.1) rotate(-5deg);
}

.service-header-v4 h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-header-v4 p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-bullets-v4 {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: grid;
    gap: 15px;
}

.service-bullets-v4 li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-bullets-v4 li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1rem;
    top: 2px;
}

@media (max-width: 992px) {
    .services-grid-v4 {
        grid-template-columns: 1fr;
    }
    
    .service-card-v4 {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .service-header-v4 h3 {
        font-size: 1.5rem;
    }
    
    .service-header-v4 p {
        font-size: 1rem;
    }
}


/* Work Section V3 Extras */
.work-section-v3 {
    padding: 120px 0;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.research-card {
    background: #1a1a1a;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.research-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 106, 27, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-visual {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.research-card:hover .card-visual img {
    transform: scale(1.1);
}

.research-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-tag {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: 35px;
}

.methods-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.methods-row span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.view-btn {
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.view-btn i {
    transition: transform 0.3s ease;
}

.view-btn:hover {
    color: var(--primary);
}

.view-btn:hover i {
    transform: translateX(5px);
}

.footer-links {
    display: flex;
    gap: 18px;
    font-size: 1.3rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.view-all-container {
    margin-top: 60px;
    text-align: center;
}

/* Responsive fixes for v3 */
@media (max-width: 900px) {
    .research-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        order: -1;
    }

    .tag-badge {
        margin: 0 auto;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .toolkit-tags {
        justify-content: center;
    }
}

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 10001;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.2;
    animation: pulseSphere 2.5s infinite ease-in-out;
}

.preloader-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.preloader-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 40px;
}

.preloader-bar {
    width: 250px;
    height: 2px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

@keyframes pulseSphere {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.35;
    }
}

/* --- FOOTER ACTION BUTTONS --- */
.footer-cta-v3 {
    padding: 80px 0;
}

.footer-action-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.footer-action-btns .btn-premium {
    padding: 18px 45px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 100px;
    min-width: 220px;
    /* Equal width */
    height: 60px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wa-btn {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--white) !important;
}

.wa-btn:hover {
    background: transparent !important;
    color: var(--primary) !important;
    transform: translateY(-5px);
    box-shadow: none !important;
}

.email-btn {
    border: 1px solid var(--primary) !important;
    background: transparent !important;
    color: var(--primary) !important;
}

.email-btn:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    transform: translateY(-5px);
    box-shadow: none !important;
}

@media (max-width: 600px) {
    .footer-action-btns {
        flex-direction: column;
        align-items: center;
    }

    .footer-action-btns .btn-premium {
        width: 100%;
    }
}


/* --- SOCIAL IMPACT CARDS V3 --- */
.sharing-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-impact-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    overflow: hidden;
}

.social-impact-card:hover {
    background: #1a1a1a;
    border-color: var(--primary);
    transform: translateY(-12px);
}

.social-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.social-icon-box.youtube {
    background: rgba(255, 0, 0, 0.08);
    color: #FF0000;
}

.social-icon-box.linkedin {
    background: rgba(0, 119, 181, 0.08);
    color: #0077B5;
}

.social-icon-box.facebook {
    background: rgba(24, 119, 242, 0.08);
    color: #1877F2;
}

.social-content .platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
}

.social-content h3 {
    font-size: 1.6rem;
    margin: 12px 0;
    color: var(--white);
    font-weight: 700;
}

.social-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.card-arrow {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-impact-card:hover .card-arrow {
    color: var(--primary);
    transform: translate(8px, -8px);
}

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

/* --- PREMIUM CTAS & ACTIONS --- */
.footer-action-btns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.premium-btn {
    position: relative;
    padding: 16px 40px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 240px;
}

.premium-btn .btn-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.5s ease;
}

.premium-btn .btn-text {
    font-weight: 700;
    color: var(--white);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.premium-btn:hover {
    background: #222;
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-btn:hover .btn-icon {
    background: var(--white);
    color: var(--primary);
    transform: rotate(360deg);
}

/* Sharing Section V3 - Image/Media focused */
.sharing-card-v3 {
    background: #141414;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: block;
}

.sharing-card-v3:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.7;
}

.sharing-card-v3:hover .card-visual img {
    transform: scale(1.1);
    opacity: 0.9;
}

.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.sharing-card-v3:hover .card-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content .platform {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .footer-action-btns {
        flex-direction: column;
        align-items: center;
    }

    .premium-btn {
        width: 100%;
    }
}

/* --- SERVICES SECTION V3 --- */
.services-section-v3 {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.research-service {
    background: #141414;
    border-radius: 32px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.research-service:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201, 106, 27, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.research-service h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 700;
}

.research-service p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .research-service {
        padding: 35px;
    }
}